after_merge
stringlengths 28
79.6k
| before_merge
stringlengths 20
79.6k
| url
stringlengths 38
71
| full_traceback
stringlengths 43
922k
| traceback_type
stringclasses 555
values |
|---|---|---|---|---|
def convert_form_field_to_uuid(field):
return UUID(description=get_form_field_description(field), required=field.required)
|
def convert_form_field_to_uuid(field):
return UUID(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_int(field):
return Int(description=get_form_field_description(field), required=field.required)
|
def convert_form_field_to_int(field):
return Int(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_boolean(field):
return Boolean(
description=get_form_field_description(field), required=field.required
)
|
def convert_form_field_to_boolean(field):
return Boolean(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_nullboolean(field):
return Boolean(description=get_form_field_description(field))
|
def convert_form_field_to_nullboolean(field):
return Boolean(description=field.help_text)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_float(field):
return Float(description=get_form_field_description(field), required=field.required)
|
def convert_form_field_to_float(field):
return Float(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_string_list(field):
return List(
String, description=get_form_field_description(field), required=field.required
)
|
def convert_form_field_to_string_list(field):
return List(String, description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_date(field):
return Date(description=get_form_field_description(field), required=field.required)
|
def convert_form_field_to_date(field):
return Date(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_datetime(field):
return DateTime(
description=get_form_field_description(field), required=field.required
)
|
def convert_form_field_to_datetime(field):
return DateTime(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def convert_form_field_to_time(field):
return Time(description=get_form_field_description(field), required=field.required)
|
def convert_form_field_to_time(field):
return Time(description=field.help_text, required=field.required)
|
https://github.com/graphql-python/graphene-django/issues/975
|
Traceback (most recent call last):
File "./manage.py", line 21, in <module>
main()
File "./manage.py", line 17, in main
execute_from_command_line(sys.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 401, in execute_from_command_line
utility.execute()
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/__init__.py", line 395, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 328, in run_from_argv
self.execute(*args, **cmd_options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/django/core/management/base.py", line 369, in execute
output = self.handle(*args, **options)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 113, in handle
self.get_schema(schema, out, indent)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 70, in get_schema
self.save_graphql_file(out, schema)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphene_django/management/commands/graphql_schema.py", line 59, in save_graphql_file
outfile.write(print_schema(schema.graphql_schema))
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 39, in print_schema
return print_filtered_schema(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 61, in print_filtered_schema
"\n\n".join(
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 65, in <genexpr>
(print_type(type_) for type_ in types),
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 128, in print_type
return print_object(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 162, in print_object
+ print_fields(type_)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 198, in print_fields
fields = [
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 199, in <listcomp>
print_description(field, " ", not i)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/utilities/print_schema.py", line 282, in print_description
block_string = print_block_string(description, "", prefer_multiple_lines)
File "/home/username/.virtualenvs/project/lib/python3.8/site-packages/graphql/language/block_string.py", line 91, in print_block_string
result += value.replace("\n", "\n" + indentation) if indentation else value
TypeError: can only concatenate str (not "__proxy__") to str
|
TypeError
|
def scan(self, scanned_file, entity, skipped_checks, runner_filter):
(entity_type, entity_name, entity_configuration) = self.extract_entity_details(
entity
)
results = {}
if not isinstance(entity_configuration, dict):
return results
checks = self.get_checks(entity_type)
for check in checks:
skip_info = {}
if skipped_checks:
if check.id in [x["id"] for x in skipped_checks]:
skip_info = [x for x in skipped_checks if x["id"] == check.id][0]
if runner_filter.should_run_check(check.id):
result = self.run_check(
check,
entity_configuration,
entity_name,
entity_type,
scanned_file,
skip_info,
)
results[check] = result
return results
|
def scan(self, scanned_file, entity, skipped_checks, runner_filter):
(entity_type, entity_name, entity_configuration) = self.extract_entity_details(
entity
)
results = {}
checks = self.get_checks(entity_type)
for check in checks:
skip_info = {}
if skipped_checks:
if check.id in [x["id"] for x in skipped_checks]:
skip_info = [x for x in skipped_checks if x["id"] == check.id][0]
if runner_filter.should_run_check(check.id):
result = self.run_check(
check,
entity_configuration,
entity_name,
entity_type,
scanned_file,
skip_info,
)
results[check] = result
return results
|
https://github.com/bridgecrewio/checkov/issues/857
|
Traceback (most recent call last):
File "/Users/robeden/git/third-party/checkov/checkov/common/checks/base_check.py", line 62, in run
raise e
File "/Users/robeden/git/third-party/checkov/checkov/common/checks/base_check.py", line 42, in run
check_result['result'] = self.scan_entity_conf(entity_configuration, entity_type)
File "/Users/robeden/git/third-party/checkov/checkov/terraform/checks/resource/base_resource_check.py", line 16, in scan_entity_conf
self.handle_dynamic_values(conf)
File "/Users/robeden/git/third-party/checkov/checkov/terraform/checks/resource/base_resource_check.py", line 38, in handle_dynamic_values
for dynamic_element in conf.get("dynamic", []):
AttributeError: 'list' object has no attribute 'get'
|
AttributeError
|
def get_resource_tags(resource_type, entity_config):
if not isinstance(entity_config, dict):
return None
if "_" not in resource_type:
return None # probably not a resource block
provider = resource_type[: resource_type.index("_")]
provider_tag_function = provider_tag_mapping.get(provider)
if provider_tag_function:
return provider_tag_function(entity_config)
else:
return None
|
def get_resource_tags(resource_type, entity_config):
if "_" not in resource_type:
return None # probably not a resource block
provider = resource_type[: resource_type.index("_")]
provider_tag_function = provider_tag_mapping.get(provider)
if provider_tag_function:
return provider_tag_function(entity_config)
else:
return None
|
https://github.com/bridgecrewio/checkov/issues/857
|
Traceback (most recent call last):
File "/Users/robeden/git/third-party/checkov/checkov/common/checks/base_check.py", line 62, in run
raise e
File "/Users/robeden/git/third-party/checkov/checkov/common/checks/base_check.py", line 42, in run
check_result['result'] = self.scan_entity_conf(entity_configuration, entity_type)
File "/Users/robeden/git/third-party/checkov/checkov/terraform/checks/resource/base_resource_check.py", line 16, in scan_entity_conf
self.handle_dynamic_values(conf)
File "/Users/robeden/git/third-party/checkov/checkov/terraform/checks/resource/base_resource_check.py", line 38, in handle_dynamic_values
for dynamic_element in conf.get("dynamic", []):
AttributeError: 'list' object has no attribute 'get'
|
AttributeError
|
def scan_resource_conf(self, conf):
"""
Looks for password configuration at google_compute_firewall:
https://www.terraform.io/docs/providers/google/r/compute_firewall.html
:param conf: azure_instance configuration
:return: <CheckResult>
"""
allow_blocks = conf["allow"]
for block in allow_blocks:
if "ports" in block.keys():
if PORT in block["ports"][0]:
if "source_ranges" in conf.keys():
source_ranges = conf["source_ranges"][0]
if "0.0.0.0/0" in source_ranges:
return CheckResult.FAILED
return CheckResult.PASSED
|
def scan_resource_conf(self, conf):
"""
Looks for password configuration at google_compute_firewall:
https://www.terraform.io/docs/providers/google/r/compute_firewall.html
:param conf: azure_instance configuration
:return: <CheckResult>
"""
if PORT in conf["allow"][0]["ports"][0]:
if "source_ranges" in conf.keys():
source_ranges = conf["source_ranges"][0]
if "0.0.0.0/0" in source_ranges:
return CheckResult.FAILED
return CheckResult.PASSED
|
https://github.com/bridgecrewio/checkov/issues/75
|
temikus λ checkov
...
version: 1.0.131
...
λ mkdir test && cd test
λ wget https://gist.githubusercontent.com/Temikus/6be1f3e408d84f609a739718a42e3cf5/raw/971c5834234d32b3ddf4614defd6a641249d935c/checkov_fail.tf
λ checkov -d .
ERROR:checkov.terraform.checks.resource.gcp.GoogleComputeFirewallUnrestrictedIngress3389:Failed to run check Ensure Google compute firewall ingress does not allow unrestricted rdp access for configuration {'description': ['allow Google health checks and network load balancers access'], 'name': ['my-firewall'], 'network': ['default'], 'allow': [{'protocol': ['icmp']}, {'protocol': ['tcp'], 'ports': [['8080', '443']]}], 'source_ranges': [['130.211.0.0/22', '35.191.0.0/16']], 'target_tags': [['my-tag']]}
Traceback (most recent call last):
File "/Users/temikus/.homebrew/bin/checkov", line 5, in <module>
run()
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/main.py", line 37, in run
report = Runner().run(root_folder, external_checks_dir=args.external_checks_dir, files=file)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/runner.py", line 29, in run
self.check_tf_definition(report, root_folder, tf_definitions)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/runner.py", line 52, in check_tf_definition
block_type)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/runner.py", line 66, in run_block
results = registry.scan(entity, scanned_file, skipped_checks)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/checks/utilities/base_registry.py", line 39, in scan
entity_name=entity_name, entity_type=entity, skip_info=skip_info)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/checks/utilities/base_check.py", line 44, in run
raise e
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/checks/utilities/base_check.py", line 33, in run
check_result['result'] = self.scan_entity_conf(entity_configuration)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/checks/resource/base_check.py", line 20, in scan_entity_conf
return self.scan_resource_conf(conf)
File "/Users/temikus/.homebrew/lib/python3.7/site-packages/checkov/terraform/checks/resource/gcp/GoogleComputeFirewallUnrestrictedIngress3389.py", line 22, in scan_resource_conf
if PORT in conf['allow'][0]['ports'][0]:
KeyError: 'ports'
|
KeyError
|
def scan_resource_conf(self, conf):
"""
Looks for configuration at security group ingress rules :
https://www.terraform.io/docs/providers/aws/r/security_group.html
:param conf: aws_security_group configuration
:return: <CheckResult>
"""
if "ingress" in conf.keys():
ingress_conf = conf["ingress"]
for rule in ingress_conf:
if rule["from_port"] == [PORT] and rule["to_port"] == [PORT]:
if "cidr_blocks" in rule.keys():
if (
rule["cidr_blocks"] == [["0.0.0.0/0"]]
and "security_groups" not in rule.keys()
):
return CheckResult.FAILED
return CheckResult.PASSED
|
def scan_resource_conf(self, conf):
"""
Looks for configuration at security group ingress rules :
https://www.terraform.io/docs/providers/aws/r/security_group.html
:param conf: aws_security_group configuration
:return: <CheckResult>
"""
if "ingress" in conf.keys():
ingress_conf = conf["ingress"]
for rule in ingress_conf:
if (
rule["from_port"] == [PORT]
and rule["to_port"] == [PORT]
and rule["cidr_blocks"] == [["0.0.0.0/0"]]
and "self" not in rule.keys()
and "security_groups" not in rule.keys()
):
return CheckResult.FAILED
return CheckResult.PASSED
|
https://github.com/bridgecrewio/checkov/issues/38
|
Traceback (most recent call last):
File "/path/tf-checks/bin/checkov", line 34, in <module>
report = Runner().run(root_folder, external_checks_dir=args.external_checks_dir)
File "/path/tf-checks/lib/python3.7/site-packages/checkov/terraform/runner.py", line 38, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/pathtf-checks/lib/python3.7/site-packages/checkov/terraform/checks/resource/registry.py", line 38, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/path/tf-checks/lib/python3.7/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/path/tf-checks/lib/python3.7/site-packages/checkov/terraform/checks/resource/aws/SecurityGroupUnrestrictedIngress22.py", line 25, in scan_resource_conf
if rule['from_port'] == [PORT] and rule['to_port'] == [PORT] and rule['cidr_blocks'] == [[
KeyError: 'cidr_blocks'
|
KeyError
|
def scan_resource_conf(self, conf):
"""
Looks for configuration at security group ingress rules :
https://www.terraform.io/docs/providers/aws/r/security_group.html
:param conf: aws_security_group configuration
:return: <CheckResult>
"""
if "ingress" in conf.keys():
ingress_conf = conf["ingress"]
for rule in ingress_conf:
if rule["from_port"] == [PORT] and rule["to_port"] == [PORT]:
if "cidr_blocks" in rule.keys():
if (
rule["cidr_blocks"] == [["0.0.0.0/0"]]
and "security_groups" not in rule.keys()
):
return CheckResult.FAILED
return CheckResult.PASSED
|
def scan_resource_conf(self, conf):
"""
Looks for configuration at security group ingress rules :
https://www.terraform.io/docs/providers/aws/r/security_group.html
:param conf: aws_security_group configuration
:return: <CheckResult>
"""
if "ingress" in conf.keys():
ingress_conf = conf["ingress"]
for rule in ingress_conf:
if (
rule["from_port"] == [PORT]
and rule["to_port"] == [PORT]
and rule["cidr_blocks"] == [["0.0.0.0/0"]]
and "self" not in rule.keys()
and "security_groups" not in rule.keys()
):
return CheckResult.FAILED
return CheckResult.PASSED
|
https://github.com/bridgecrewio/checkov/issues/38
|
Traceback (most recent call last):
File "/path/tf-checks/bin/checkov", line 34, in <module>
report = Runner().run(root_folder, external_checks_dir=args.external_checks_dir)
File "/path/tf-checks/lib/python3.7/site-packages/checkov/terraform/runner.py", line 38, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/pathtf-checks/lib/python3.7/site-packages/checkov/terraform/checks/resource/registry.py", line 38, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/path/tf-checks/lib/python3.7/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/path/tf-checks/lib/python3.7/site-packages/checkov/terraform/checks/resource/aws/SecurityGroupUnrestrictedIngress22.py", line 25, in scan_resource_conf
if rule['from_port'] == [PORT] and rule['to_port'] == [PORT] and rule['cidr_blocks'] == [[
KeyError: 'cidr_blocks'
|
KeyError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "max_password_age"
if key in conf.keys():
if conf[key][0] >= 90:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "max_password_age"
if key in conf.keys():
if conf[key] >= 90:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "minimum_password_length"
if key in conf.keys():
if conf[key][0] >= 14:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "minimum_password_length"
if key in conf.keys():
if conf[key] >= 14:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_lowercase_characters"
if key in conf.keys():
if conf[key][0]:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_lowercase_characters"
if key in conf.keys():
if conf[key]:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_numbers"
if key in conf.keys():
if conf[key][0]:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_numbers"
if key in conf.keys():
if conf[key]:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "password_reuse_prevention"
if key in conf.keys():
if conf[key][0] >= 24:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "password_reuse_prevention"
if key in conf.keys():
if conf[key] >= 24:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_symbols"
if key in conf.keys():
if conf[key][0]:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_symbols"
if key in conf.keys():
if conf[key]:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_uppercase_characters"
if key in conf.keys():
if conf[key][0]:
return CheckResult.PASSED
return CheckResult.FAILED
|
def scan_resource_conf(self, conf):
"""
validates iam password policy
https://www.terraform.io/docs/providers/aws/r/iam_account_password_policy.html
:param conf: aws_iam_account_password_policy configuration
:return: <CheckResult>
"""
key = "require_uppercase_characters"
if key in conf.keys():
if conf[key]:
return CheckResult.PASSED
return CheckResult.FAILED
|
https://github.com/bridgecrewio/checkov/issues/28
|
Traceback (most recent call last):
File "/Users/arkadiyt/.pyenv/versions/3.6.0/bin/checkov", line 24, in <module>
report = Runner().run(root_folder)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/runner.py", line 34, in run
results = resource_registry.scan(resource, scanned_file, skipped_checks)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/registry.py", line 34, in scan
resource_name=resource_name, resource_type=resource, skip_info=skip_info)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/base_check.py", line 31, in run
check_result['result'] = self.scan_resource_conf(resource_configuration)
File "/Users/arkadiyt/.pyenv/versions/3.6.0/lib/python3.6/site-packages/checkov/terraform/checks/resource/aws/PasswordPolicyLength.py", line 22, in scan_resource_conf
if conf[key] >= 14:
TypeError: '>=' not supported between instances of 'list' and 'int'
|
TypeError
|
def run(self):
if not self._allow_root:
self._check_for_root()
if self._settings is None:
self._settings = settings()
if not self._settings.getBoolean(["server", "ignoreIncompleteStartup"]):
self._settings.setBoolean(["server", "incompleteStartup"], True)
self._settings.save()
if self._plugin_manager is None:
self._plugin_manager = octoprint.plugin.plugin_manager()
global app
global babel
global printer
global printerProfileManager
global fileManager
global slicingManager
global analysisQueue
global userManager
global permissionManager
global groupManager
global eventManager
global loginManager
global pluginManager
global pluginLifecycleManager
global preemptiveCache
global jsonEncoder
global jsonDecoder
global connectivityChecker
global debug
global safe_mode
from tornado.ioloop import IOLoop
from tornado.web import Application
debug = self._debug
safe_mode = self._safe_mode
if self._v6_only and not octoprint.util.net.HAS_V6:
raise RuntimeError("IPv6 only mode configured but system doesn't support IPv6")
if self._host is None:
host = self._settings.get(["server", "host"])
if host is None:
if octoprint.util.net.HAS_V6:
host = "::"
else:
host = "0.0.0.0"
self._host = host
if ":" in self._host and not octoprint.util.net.HAS_V6:
raise RuntimeError(
"IPv6 host address {!r} configured but system doesn't support IPv6".format(
self._host
)
)
if self._port is None:
self._port = self._settings.getInt(["server", "port"])
if self._port is None:
self._port = 5000
self._logger = logging.getLogger(__name__)
self._setup_heartbeat_logging()
pluginManager = self._plugin_manager
# monkey patch/fix some stuff
util.tornado.fix_json_encode()
util.tornado.fix_websocket_check_origin()
util.flask.fix_flask_jsonify()
util.watchdog.fix_scandir()
self._setup_mimetypes()
additional_translation_folders = []
if not safe_mode:
additional_translation_folders += [self._settings.getBaseFolder("translations")]
util.flask.enable_additional_translations(
additional_folders=additional_translation_folders
)
# setup app
self._setup_app(app)
# setup i18n
self._setup_i18n(app)
if self._settings.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
# start the intermediary server
self._start_intermediary_server()
### IMPORTANT!
###
### Best do not start any subprocesses until the intermediary server shuts down again or they MIGHT inherit the
### open port and prevent us from firing up Tornado later.
###
### The intermediary server's socket should have the CLOSE_EXEC flag (or its equivalent) set where possible, but
### we can only do that if fcntl is available or we are on Windows, so better safe than sorry.
###
### See also issues #2035 and #2090
# then initialize the plugin manager
pluginManager.reload_plugins(startup=True, initialize_implementations=False)
printerProfileManager = PrinterProfileManager()
eventManager = self._event_manager
analysis_queue_factories = dict(
gcode=octoprint.filemanager.analysis.GcodeAnalysisQueue
)
analysis_queue_hooks = pluginManager.get_hooks(
"octoprint.filemanager.analysis.factory"
)
for name, hook in analysis_queue_hooks.items():
try:
additional_factories = hook()
analysis_queue_factories.update(**additional_factories)
except Exception:
self._logger.exception(
"Error while processing analysis queues from {}".format(name),
extra=dict(plugin=name),
)
analysisQueue = octoprint.filemanager.analysis.AnalysisQueue(
analysis_queue_factories
)
slicingManager = octoprint.slicing.SlicingManager(
self._settings.getBaseFolder("slicingProfiles"), printerProfileManager
)
storage_managers = dict()
storage_managers[octoprint.filemanager.FileDestinations.LOCAL] = (
octoprint.filemanager.storage.LocalFileStorage(
self._settings.getBaseFolder("uploads")
)
)
fileManager = octoprint.filemanager.FileManager(
analysisQueue,
slicingManager,
printerProfileManager,
initial_storage_managers=storage_managers,
)
pluginLifecycleManager = LifecycleManager(pluginManager)
preemptiveCache = PreemptiveCache(
os.path.join(
self._settings.getBaseFolder("data"), "preemptive_cache_config.yaml"
)
)
JsonEncoding.add_encoder(users.User, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(groups.Group, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(permissions.OctoPrintPermission, lambda obj: obj.as_dict())
# start regular check if we are connected to the internet
def on_connectivity_change(old_value, new_value):
eventManager.fire(
events.Events.CONNECTIVITY_CHANGED,
payload=dict(old=old_value, new=new_value),
)
connectivityChecker = self._connectivity_checker
def on_settings_update(*args, **kwargs):
# make sure our connectivity checker runs with the latest settings
connectivityEnabled = self._settings.getBoolean(
["server", "onlineCheck", "enabled"]
)
connectivityInterval = self._settings.getInt(
["server", "onlineCheck", "interval"]
)
connectivityHost = self._settings.get(["server", "onlineCheck", "host"])
connectivityPort = self._settings.getInt(["server", "onlineCheck", "port"])
connectivityName = self._settings.get(["server", "onlineCheck", "name"])
if (
connectivityChecker.enabled != connectivityEnabled
or connectivityChecker.interval != connectivityInterval
or connectivityChecker.host != connectivityHost
or connectivityChecker.port != connectivityPort
or connectivityChecker.name != connectivityName
):
connectivityChecker.enabled = connectivityEnabled
connectivityChecker.interval = connectivityInterval
connectivityChecker.host = connectivityHost
connectivityChecker.port = connectivityPort
connectivityChecker.name = connectivityName
connectivityChecker.check_immediately()
eventManager.subscribe(events.Events.SETTINGS_UPDATED, on_settings_update)
components = dict(
plugin_manager=pluginManager,
printer_profile_manager=printerProfileManager,
event_bus=eventManager,
analysis_queue=analysisQueue,
slicing_manager=slicingManager,
file_manager=fileManager,
plugin_lifecycle_manager=pluginLifecycleManager,
preemptive_cache=preemptiveCache,
json_encoder=jsonEncoder,
json_decoder=jsonDecoder,
connectivity_checker=connectivityChecker,
environment_detector=self._environment_detector,
)
# ~~ setup access control
# get additional permissions from plugins
self._setup_plugin_permissions()
# create group manager instance
group_manager_factories = pluginManager.get_hooks("octoprint.access.groups.factory")
for name, factory in group_manager_factories.items():
try:
groupManager = factory(components, self._settings)
if groupManager is not None:
self._logger.debug(
"Created group manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating group manager instance from factory {}".format(
name
)
)
else:
group_manager_name = self._settings.get(["accessControl", "groupManager"])
try:
clazz = octoprint.util.get_class(group_manager_name)
groupManager = clazz()
except AttributeError:
self._logger.exception(
"Could not instantiate group manager {}, "
"falling back to FilebasedGroupManager!".format(group_manager_name)
)
groupManager = octoprint.access.groups.FilebasedGroupManager()
components.update(dict(group_manager=groupManager))
# create user manager instance
user_manager_factories = pluginManager.get_hooks(
"octoprint.users.factory"
) # legacy, set first so that new wins
user_manager_factories.update(
pluginManager.get_hooks("octoprint.access.users.factory")
)
for name, factory in user_manager_factories.items():
try:
userManager = factory(components, self._settings)
if userManager is not None:
self._logger.debug(
"Created user manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating user manager instance from factory {}".format(
name
),
extra=dict(plugin=name),
)
else:
user_manager_name = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(user_manager_name)
userManager = clazz(groupManager)
except Exception:
self._logger.exception(
"Could not instantiate user manager {}, "
"falling back to FilebasedUserManager!".format(user_manager_name)
)
userManager = octoprint.access.users.FilebasedUserManager(groupManager)
finally:
userManager.enabled = self._settings.getBoolean(
["accessControl", "enabled"]
)
components.update(dict(user_manager=userManager))
# create printer instance
printer_factories = pluginManager.get_hooks("octoprint.printer.factory")
for name, factory in printer_factories.items():
try:
printer = factory(components)
if printer is not None:
self._logger.debug(
"Created printer instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating printer instance from factory {}".format(name),
extra=dict(plugin=name),
)
else:
printer = Printer(fileManager, analysisQueue, printerProfileManager)
components.update(dict(printer=printer))
def octoprint_plugin_inject_factory(name, implementation):
"""Factory for injections for all OctoPrintPlugins"""
if not isinstance(implementation, octoprint.plugin.OctoPrintPlugin):
return None
components_copy = dict(components)
if "printer" in components:
import wrapt
import functools
def tagwrap(f):
@functools.wraps(f)
def wrapper(*args, **kwargs):
tags = kwargs.get("tags", set()) | {
"source:plugin",
"plugin:{}".format(name),
}
kwargs["tags"] = tags
return f(*args, **kwargs)
setattr(wrapper, "__tagwrapped__", True)
return wrapper
class TaggedFuncsPrinter(wrapt.ObjectProxy):
def __getattribute__(self, attr):
__wrapped__ = super(TaggedFuncsPrinter, self).__getattribute__(
"__wrapped__"
)
if attr == "__wrapped__":
return __wrapped__
item = getattr(__wrapped__, attr)
if (
callable(item)
and (
"tags" in item.__code__.co_varnames
or "kwargs" in item.__code__.co_varnames
)
and not getattr(item, "__tagwrapped__", False)
):
return tagwrap(item)
else:
return item
components_copy["printer"] = TaggedFuncsPrinter(components["printer"])
props = dict()
props.update(components_copy)
props.update(
dict(data_folder=os.path.join(self._settings.getBaseFolder("data"), name))
)
return props
def settings_plugin_inject_factory(name, implementation):
"""Factory for additional injections/initializations depending on plugin type"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
default_settings_overlay = dict(plugins=dict())
default_settings_overlay["plugins"][name] = (
implementation.get_settings_defaults()
)
self._settings.add_overlay(default_settings_overlay, at_end=True)
plugin_settings = octoprint.plugin.plugin_settings_for_settings_plugin(
name, implementation
)
if plugin_settings is None:
return
return dict(settings=plugin_settings)
def settings_plugin_config_migration_and_cleanup(identifier, implementation):
"""Take care of migrating and cleaning up any old settings"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
settings_version = implementation.get_settings_version()
settings_migrator = implementation.on_settings_migrate
if settings_version is not None and settings_migrator is not None:
stored_version = implementation._settings.get_int(
[octoprint.plugin.SettingsPlugin.config_version_key]
)
if stored_version is None or stored_version < settings_version:
settings_migrator(settings_version, stored_version)
implementation._settings.set_int(
[octoprint.plugin.SettingsPlugin.config_version_key],
settings_version,
force=True,
)
implementation.on_settings_cleanup()
implementation._settings.save()
implementation.on_settings_initialized()
custom_events_hooks = pluginManager.get_hooks(
"octoprint.events.register_custom_events"
)
for name, hook in custom_events_hooks.items():
try:
result = hook()
if isinstance(result, (list, tuple)):
for event in result:
constant, value = octoprint.events.Events.register_event(
event, prefix="plugin_{}_".format(name)
)
self._logger.debug(
'Registered event {} of plugin {} as Events.{} = "{}"'.format(
event, name, constant, value
)
)
except Exception:
self._logger.exception(
"Error while retrieving custom event list from plugin {}".format(name),
extra=dict(plugin=name),
)
pluginManager.implementation_inject_factories = [
octoprint_plugin_inject_factory,
settings_plugin_inject_factory,
]
pluginManager.initialize_implementations()
settingsPlugins = pluginManager.get_implementations(octoprint.plugin.SettingsPlugin)
for implementation in settingsPlugins:
try:
settings_plugin_config_migration_and_cleanup(
implementation._identifier, implementation
)
except Exception:
self._logger.exception(
"Error while trying to migrate settings for "
"plugin {}, ignoring it".format(implementation._identifier),
extra=dict(plugin=implementation._identifier),
)
pluginManager.implementation_post_inits = [
settings_plugin_config_migration_and_cleanup
]
pluginManager.log_all_plugins()
# log environment data now
self._environment_detector.log_detected_environment()
# initialize file manager and register it for changes in the registered plugins
fileManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: fileManager.reload_plugins()
)
# initialize slicing manager and register it for changes in the registered plugins
slicingManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: slicingManager.reload_slicers()
)
# setup jinja2
self._setup_jinja2()
# setup assets
self._setup_assets()
# configure timelapse
octoprint.timelapse.valid_timelapse("test")
octoprint.timelapse.configure_timelapse()
# setup command triggers
events.CommandTrigger(printer)
if self._debug:
events.DebugEventListener()
# setup login manager
self._setup_login_manager()
# register API blueprint
self._setup_blueprints()
## Tornado initialization starts here
ioloop = IOLoop()
ioloop.install()
enable_cors = settings().getBoolean(["api", "allowCrossOrigin"])
self._router = SockJSRouter(
self._create_socket_connection,
"/sockjs",
session_kls=util.sockjs.ThreadSafeSession,
user_settings=dict(
websocket_allow_origin="*" if enable_cors else "",
jsessionid=False,
sockjs_url="../../static/js/lib/sockjs.min.js",
),
)
upload_suffixes = dict(
name=self._settings.get(["server", "uploads", "nameSuffix"]),
path=self._settings.get(["server", "uploads", "pathSuffix"]),
)
def mime_type_guesser(path):
from octoprint.filemanager import get_mime_type
return get_mime_type(path)
def download_name_generator(path):
metadata = fileManager.get_metadata("local", path)
if metadata and "display" in metadata:
return metadata["display"]
download_handler_kwargs = dict(as_attachment=True, allow_client_caching=False)
additional_mime_types = dict(mime_type_guesser=mime_type_guesser)
##~~ Permission validators
access_validators_from_plugins = []
for plugin, hook in pluginManager.get_hooks(
"octoprint.server.http.access_validator"
).items():
try:
access_validators_from_plugins.append(
util.tornado.access_validation_factory(app, hook)
)
except Exception:
self._logger.exception(
"Error while adding tornado access validator from plugin {}".format(
plugin
),
extra=dict(plugin=plugin),
)
access_validator = dict(
access_validation=util.tornado.validation_chain(*access_validators_from_plugins)
)
timelapse_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.TIMELAPSE_LIST
),
] + access_validators_from_plugins
download_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.FILES_DOWNLOAD
),
] + access_validators_from_plugins
log_validators = [
util.tornado.access_validation_factory(
app,
util.flask.permission_validator,
permissions.Permissions.PLUGIN_LOGGING_MANAGE,
),
] + access_validators_from_plugins
camera_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.WEBCAM
),
] + access_validators_from_plugins
timelapse_permission_validator = dict(
access_validation=util.tornado.validation_chain(*timelapse_validators)
)
download_permission_validator = dict(
access_validation=util.tornado.validation_chain(*download_validators)
)
log_permission_validator = dict(
access_validation=util.tornado.validation_chain(*log_validators)
)
camera_permission_validator = dict(
access_validation=util.tornado.validation_chain(*camera_validators)
)
no_hidden_files_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path), status_code=404
)
)
timelapse_path_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path)
and octoprint.timelapse.valid_timelapse(path),
status_code=404,
)
)
def joined_dict(*dicts):
if not len(dicts):
return dict()
joined = dict()
for d in dicts:
joined.update(d)
return joined
util.tornado.RequestlessExceptionLoggingMixin.LOG_REQUEST = debug
util.tornado.CorsSupportMixin.ENABLE_CORS = enable_cors
server_routes = self._router.urls + [
# various downloads
# .mpg and .mp4 timelapses:
(
r"/downloads/timelapse/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("timelapse")),
timelapse_permission_validator,
download_handler_kwargs,
timelapse_path_validator,
),
),
(
r"/downloads/files/local/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("uploads"),
as_attachment=True,
name_generator=download_name_generator,
),
download_permission_validator,
download_handler_kwargs,
no_hidden_files_validator,
additional_mime_types,
),
),
(
r"/downloads/logs/([^/]*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("logs"),
mime_type_guesser=lambda *args, **kwargs: "text/plain",
stream_body=True,
),
download_handler_kwargs,
log_permission_validator,
),
),
# camera snapshot
(
r"/downloads/camera/current",
util.tornado.UrlProxyHandler,
joined_dict(
dict(
url=self._settings.get(["webcam", "snapshot"]), as_attachment=True
),
camera_permission_validator,
),
),
# generated webassets
(
r"/static/webassets/(.*)",
util.tornado.LargeResponseHandler,
dict(
path=os.path.join(
self._settings.getBaseFolder("generated"), "webassets"
),
is_pre_compressed=True,
),
),
# online indicators - text file with "online" as content and a transparent gif
(r"/online.txt", util.tornado.StaticDataHandler, dict(data="online\n")),
(
r"/online.gif",
util.tornado.StaticDataHandler,
dict(
data=bytes(
base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
),
content_type="image/gif",
),
),
# deprecated endpoints
(
r"/api/logs",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs"),
),
(
r"/api/logs/(.*)",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs/{0}"),
),
]
# fetch additional routes from plugins
for name, hook in pluginManager.get_hooks("octoprint.server.http.routes").items():
try:
result = hook(list(server_routes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"server routes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if not isinstance(entry[0], basestring):
continue
if not isinstance(entry[2], dict):
continue
route, handler, kwargs = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding additional route {route} handled by handler {handler} and with additional arguments {kwargs!r}".format(
**locals()
)
)
server_routes.append((route, handler, kwargs))
headers = {
"X-Robots-Tag": "noindex, nofollow, noimageindex",
"X-Content-Type-Options": "nosniff",
}
if not settings().getBoolean(["server", "allowFraming"]):
headers["X-Frame-Options"] = "sameorigin"
removed_headers = ["Server"]
server_routes.append(
(
r".*",
util.tornado.UploadStorageFallbackHandler,
dict(
fallback=util.tornado.WsgiInputContainer(
app.wsgi_app, headers=headers, removed_headers=removed_headers
),
file_prefix="octoprint-file-upload-",
file_suffix=".tmp",
suffixes=upload_suffixes,
),
)
)
transforms = [
util.tornado.GlobalHeaderTransform.for_headers(
"OctoPrintGlobalHeaderTransform",
headers=headers,
removed_headers=removed_headers,
)
]
self._tornado_app = Application(handlers=server_routes, transforms=transforms)
max_body_sizes = [
(
"POST",
r"/api/files/([^/]*)",
self._settings.getInt(["server", "uploads", "maxSize"]),
),
("POST", r"/api/languages", 5 * 1024 * 1024),
]
# allow plugins to extend allowed maximum body sizes
for name, hook in pluginManager.get_hooks("octoprint.server.http.bodysize").items():
try:
result = hook(list(max_body_sizes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"upload sizes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if (
not entry[0]
in util.tornado.UploadStorageFallbackHandler.BODY_METHODS
):
continue
if not isinstance(entry[2], int):
continue
method, route, size = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding maximum body size of {size}B for {method} requests to {route})".format(
**locals()
)
)
max_body_sizes.append((method, route, size))
self._stop_intermediary_server()
# initialize and bind the server
trusted_downstream = self._settings.get(
["server", "reverseProxy", "trustedDownstream"]
)
if not isinstance(trusted_downstream, list):
self._logger.warning(
"server.reverseProxy.trustedDownstream is not a list, skipping"
)
trusted_downstreams = []
server_kwargs = dict(
max_body_sizes=max_body_sizes,
default_max_body_size=self._settings.getInt(["server", "maxSize"]),
xheaders=True,
trusted_downstream=trusted_downstream,
)
if sys.platform == "win32":
# set 10min idle timeout under windows to hopefully make #2916 less likely
server_kwargs.update(dict(idle_connection_timeout=600))
self._server = util.tornado.CustomHTTPServer(self._tornado_app, **server_kwargs)
listening_address = self._host
if self._host == "::" and not self._v6_only:
# special case - tornado only listens on v4 _and_ v6 if we use None as address
listening_address = None
self._server.listen(self._port, address=listening_address)
### From now on it's ok to launch subprocesses again
eventManager.fire(events.Events.STARTUP)
# analysis backlog
fileManager.process_backlog()
# auto connect
if self._settings.getBoolean(["serial", "autoconnect"]):
self._logger.info(
"Autoconnect on startup is configured, trying to connect to the printer..."
)
try:
(port, baudrate) = (
self._settings.get(["serial", "port"]),
self._settings.getInt(["serial", "baudrate"]),
)
printer_profile = printerProfileManager.get_default()
connectionOptions = printer.__class__.get_connection_options()
if port in connectionOptions["ports"] or port == "AUTO" or port is None:
self._logger.info(
"Trying to connect to configured serial port {}".format(port)
)
printer.connect(
port=port,
baudrate=baudrate,
profile=printer_profile["id"]
if "id" in printer_profile
else "_default",
)
else:
self._logger.info(
"Could not find configured serial port {} in the system, cannot automatically connect to a non existing printer. Is it plugged in and booted up yet?"
)
except Exception:
self._logger.exception(
"Something went wrong while attempting to automatically connect to the printer"
)
# start up watchdogs
try:
watched = self._settings.getBaseFolder("watched")
watchdog_handler = util.watchdog.GcodeWatchdogHandler(fileManager, printer)
watchdog_handler.initial_scan(watched)
if self._settings.getBoolean(["feature", "pollWatched"]):
# use less performant polling observer if explicitly configured
observer = PollingObserver()
else:
# use os default
observer = Observer()
observer.schedule(watchdog_handler, watched, recursive=True)
observer.start()
except Exception:
self._logger.exception("Error starting watched folder observer")
# run our startup plugins
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_startup",
args=(self._host, self._port),
sorting_context="StartupPlugin.on_startup",
)
def call_on_startup(name, plugin):
implementation = plugin.get_implementation(octoprint.plugin.StartupPlugin)
if implementation is None:
return
implementation.on_startup(self._host, self._port)
pluginLifecycleManager.add_callback("enabled", call_on_startup)
# prepare our after startup function
def on_after_startup():
if self._host == "::":
if self._v6_only:
# only v6
self._logger.info(
"Listening on http://[::]:{port}".format(port=self._port)
)
else:
# all v4 and v6
self._logger.info(
"Listening on http://0.0.0.0:{port} and http://[::]:{port}".format(
port=self._port
)
)
else:
self._logger.info(
"Listening on http://{}:{}".format(
self._host if not ":" in self._host else "[" + self._host + "]",
self._port,
)
)
if safe_mode and self._settings.getBoolean(["server", "startOnceInSafeMode"]):
self._logger.info(
"Server started successfully in safe mode as requested from config, removing flag"
)
self._settings.setBoolean(["server", "startOnceInSafeMode"], False)
self._settings.save()
# now this is somewhat ugly, but the issue is the following: startup plugins might want to do things for
# which they need the server to be already alive (e.g. for being able to resolve urls, such as favicons
# or service xmls or the like). While they are working though the ioloop would block. Therefore we'll
# create a single use thread in which to perform our after-startup-tasks, start that and hand back
# control to the ioloop
def work():
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_after_startup",
sorting_context="StartupPlugin.on_after_startup",
)
def call_on_after_startup(name, plugin):
implementation = plugin.get_implementation(
octoprint.plugin.StartupPlugin
)
if implementation is None:
return
implementation.on_after_startup()
pluginLifecycleManager.add_callback("enabled", call_on_after_startup)
# if there was a rogue plugin we wouldn't even have made it here, so remove startup triggered safe mode
# flag again...
self._settings.setBoolean(["server", "incompleteStartup"], False)
self._settings.save()
# make a backup of the current config
self._settings.backup(ext="backup")
# when we are through with that we also run our preemptive cache
if settings().getBoolean(["devel", "cache", "preemptive"]):
self._execute_preemptive_flask_caching(preemptiveCache)
import threading
threading.Thread(target=work).start()
ioloop.add_callback(on_after_startup)
# prepare our shutdown function
def on_shutdown():
# will be called on clean system exit and shutdown the watchdog observer and call the on_shutdown methods
# on all registered ShutdownPlugins
self._logger.info("Shutting down...")
observer.stop()
observer.join()
eventManager.fire(events.Events.SHUTDOWN)
self._logger.info("Calling on_shutdown on plugins")
octoprint.plugin.call_plugin(
octoprint.plugin.ShutdownPlugin,
"on_shutdown",
sorting_context="ShutdownPlugin.on_shutdown",
)
# wait for shutdown event to be processed, but maximally for 15s
event_timeout = 15.0
if eventManager.join(timeout=event_timeout):
self._logger.warning(
"Event loop was still busy processing after {}s, shutting down anyhow".format(
event_timeout
)
)
if self._octoprint_daemon is not None:
self._logger.info("Cleaning up daemon pidfile")
self._octoprint_daemon.terminated()
self._logger.info("Goodbye!")
atexit.register(on_shutdown)
def sigterm_handler(*args, **kwargs):
# will stop tornado on SIGTERM, making the program exit cleanly
def shutdown_tornado():
self._logger.debug("Shutting down tornado's IOLoop...")
ioloop.stop()
self._logger.debug("SIGTERM received...")
ioloop.add_callback_from_signal(shutdown_tornado)
signal.signal(signal.SIGTERM, sigterm_handler)
try:
# this is the main loop - as long as tornado is running, OctoPrint is running
ioloop.start()
self._logger.debug("Tornado's IOLoop stopped")
except (KeyboardInterrupt, SystemExit):
pass
except Exception:
self._logger.fatal(
"Now that is embarrassing... Something really really went wrong here. Please report this including the stacktrace below in OctoPrint's bugtracker. Thanks!"
)
self._logger.exception("Stacktrace follows:")
|
def run(self):
if not self._allow_root:
self._check_for_root()
if self._settings is None:
self._settings = settings()
if not self._settings.getBoolean(["server", "ignoreIncompleteStartup"]):
self._settings.setBoolean(["server", "incompleteStartup"], True)
self._settings.save()
if self._plugin_manager is None:
self._plugin_manager = octoprint.plugin.plugin_manager()
global app
global babel
global printer
global printerProfileManager
global fileManager
global slicingManager
global analysisQueue
global userManager
global permissionManager
global groupManager
global eventManager
global loginManager
global pluginManager
global pluginLifecycleManager
global preemptiveCache
global jsonEncoder
global jsonDecoder
global connectivityChecker
global debug
global safe_mode
from tornado.ioloop import IOLoop
from tornado.web import Application
debug = self._debug
safe_mode = self._safe_mode
if self._v6_only and not octoprint.util.net.HAS_V6:
raise RuntimeError("IPv6 only mode configured but system doesn't support IPv6")
if self._host is None:
host = self._settings.get(["server", "host"])
if host is None:
if octoprint.util.net.HAS_V6:
host = "::"
else:
host = "0.0.0.0"
self._host = host
if ":" in self._host and not octoprint.util.net.HAS_V6:
raise RuntimeError(
"IPv6 host address {!r} configured but system doesn't support IPv6".format(
self._host
)
)
if self._port is None:
self._port = self._settings.getInt(["server", "port"])
if self._port is None:
self._port = 5000
self._logger = logging.getLogger(__name__)
self._setup_heartbeat_logging()
pluginManager = self._plugin_manager
# monkey patch/fix some stuff
util.tornado.fix_json_encode()
util.tornado.fix_websocket_check_origin()
util.flask.fix_flask_jsonify()
util.watchdog.fix_scandir()
self._setup_mimetypes()
additional_translation_folders = []
if not safe_mode:
additional_translation_folders += [self._settings.getBaseFolder("translations")]
util.flask.enable_additional_translations(
additional_folders=additional_translation_folders
)
# setup app
self._setup_app(app)
# setup i18n
self._setup_i18n(app)
if self._settings.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
# start the intermediary server
self._start_intermediary_server()
### IMPORTANT!
###
### Best do not start any subprocesses until the intermediary server shuts down again or they MIGHT inherit the
### open port and prevent us from firing up Tornado later.
###
### The intermediary server's socket should have the CLOSE_EXEC flag (or its equivalent) set where possible, but
### we can only do that if fcntl is available or we are on Windows, so better safe than sorry.
###
### See also issues #2035 and #2090
# then initialize the plugin manager
pluginManager.reload_plugins(startup=True, initialize_implementations=False)
printerProfileManager = PrinterProfileManager()
eventManager = self._event_manager
analysis_queue_factories = dict(
gcode=octoprint.filemanager.analysis.GcodeAnalysisQueue
)
analysis_queue_hooks = pluginManager.get_hooks(
"octoprint.filemanager.analysis.factory"
)
for name, hook in analysis_queue_hooks.items():
try:
additional_factories = hook()
analysis_queue_factories.update(**additional_factories)
except Exception:
self._logger.exception(
"Error while processing analysis queues from {}".format(name),
extra=dict(plugin=name),
)
analysisQueue = octoprint.filemanager.analysis.AnalysisQueue(
analysis_queue_factories
)
slicingManager = octoprint.slicing.SlicingManager(
self._settings.getBaseFolder("slicingProfiles"), printerProfileManager
)
storage_managers = dict()
storage_managers[octoprint.filemanager.FileDestinations.LOCAL] = (
octoprint.filemanager.storage.LocalFileStorage(
self._settings.getBaseFolder("uploads")
)
)
fileManager = octoprint.filemanager.FileManager(
analysisQueue,
slicingManager,
printerProfileManager,
initial_storage_managers=storage_managers,
)
pluginLifecycleManager = LifecycleManager(pluginManager)
preemptiveCache = PreemptiveCache(
os.path.join(
self._settings.getBaseFolder("data"), "preemptive_cache_config.yaml"
)
)
JsonEncoding.add_encoder(users.User, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(groups.Group, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(permissions.OctoPrintPermission, lambda obj: obj.as_dict())
# start regular check if we are connected to the internet
def on_connectivity_change(old_value, new_value):
eventManager.fire(
events.Events.CONNECTIVITY_CHANGED,
payload=dict(old=old_value, new=new_value),
)
connectivityChecker = self._connectivity_checker
def on_settings_update(*args, **kwargs):
# make sure our connectivity checker runs with the latest settings
connectivityEnabled = self._settings.getBoolean(
["server", "onlineCheck", "enabled"]
)
connectivityInterval = self._settings.getInt(
["server", "onlineCheck", "interval"]
)
connectivityHost = self._settings.get(["server", "onlineCheck", "host"])
connectivityPort = self._settings.getInt(["server", "onlineCheck", "port"])
connectivityName = self._settings.get(["server", "onlineCheck", "name"])
if (
connectivityChecker.enabled != connectivityEnabled
or connectivityChecker.interval != connectivityInterval
or connectivityChecker.host != connectivityHost
or connectivityChecker.port != connectivityPort
or connectivityChecker.name != connectivityName
):
connectivityChecker.enabled = connectivityEnabled
connectivityChecker.interval = connectivityInterval
connectivityChecker.host = connectivityHost
connectivityChecker.port = connectivityPort
connectivityChecker.name = connectivityName
connectivityChecker.check_immediately()
eventManager.subscribe(events.Events.SETTINGS_UPDATED, on_settings_update)
components = dict(
plugin_manager=pluginManager,
printer_profile_manager=printerProfileManager,
event_bus=eventManager,
analysis_queue=analysisQueue,
slicing_manager=slicingManager,
file_manager=fileManager,
plugin_lifecycle_manager=pluginLifecycleManager,
preemptive_cache=preemptiveCache,
json_encoder=jsonEncoder,
json_decoder=jsonDecoder,
connectivity_checker=connectivityChecker,
environment_detector=self._environment_detector,
)
# ~~ setup access control
# get additional permissions from plugins
self._setup_plugin_permissions()
# create group manager instance
group_manager_factories = pluginManager.get_hooks("octoprint.access.groups.factory")
for name, factory in group_manager_factories.items():
try:
groupManager = factory(components, self._settings)
if groupManager is not None:
self._logger.debug(
"Created group manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating group manager instance from factory {}".format(
name
)
)
else:
group_manager_name = self._settings.get(["accessControl", "groupManager"])
try:
clazz = octoprint.util.get_class(group_manager_name)
groupManager = clazz()
except AttributeError:
self._logger.exception(
"Could not instantiate group manager {}, "
"falling back to FilebasedGroupManager!".format(group_manager_name)
)
groupManager = octoprint.access.groups.FilebasedGroupManager()
components.update(dict(group_manager=groupManager))
# create user manager instance
user_manager_factories = pluginManager.get_hooks(
"octoprint.users.factory"
) # legacy, set first so that new wins
user_manager_factories.update(
pluginManager.get_hooks("octoprint.access.users.factory")
)
for name, factory in user_manager_factories.items():
try:
userManager = factory(components, self._settings)
if userManager is not None:
self._logger.debug(
"Created user manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating user manager instance from factory {}".format(
name
),
extra=dict(plugin=name),
)
else:
user_manager_name = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(user_manager_name)
userManager = clazz(groupManager)
except Exception:
self._logger.exception(
"Could not instantiate user manager {}, "
"falling back to FilebasedUserManager!".format(user_manager_name)
)
userManager = octoprint.access.users.FilebasedUserManager(groupManager)
finally:
userManager.enabled = self._settings.getBoolean(
["accessControl", "enabled"]
)
components.update(dict(user_manager=userManager))
# create printer instance
printer_factories = pluginManager.get_hooks("octoprint.printer.factory")
for name, factory in printer_factories.items():
try:
printer = factory(components)
if printer is not None:
self._logger.debug(
"Created printer instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating printer instance from factory {}".format(name),
extra=dict(plugin=name),
)
else:
printer = Printer(fileManager, analysisQueue, printerProfileManager)
components.update(dict(printer=printer))
def octoprint_plugin_inject_factory(name, implementation):
"""Factory for injections for all OctoPrintPlugins"""
if not isinstance(implementation, octoprint.plugin.OctoPrintPlugin):
return None
components_copy = dict(components)
if "printer" in components:
import wrapt
import functools
def tagwrap(f):
@functools.wraps(f)
def wrapper(*args, **kwargs):
tags = kwargs.get("tags", set()) | {
"source:plugin",
"plugin:{}".format(name),
}
kwargs["tags"] = tags
return f(*args, **kwargs)
setattr(wrapper, "__tagwrapped__", True)
return wrapper
class TaggedFuncsPrinter(wrapt.ObjectProxy):
def __getattribute__(self, attr):
__wrapped__ = super(TaggedFuncsPrinter, self).__getattribute__(
"__wrapped__"
)
if attr == "__wrapped__":
return __wrapped__
item = getattr(__wrapped__, attr)
if (
callable(item)
and (
"tags" in item.__code__.co_varnames
or "kwargs" in item.__code__.co_varnames
)
and not getattr(item, "__tagwrapped__", False)
):
return tagwrap(item)
else:
return item
components_copy["printer"] = TaggedFuncsPrinter(components["printer"])
props = dict()
props.update(components_copy)
props.update(
dict(data_folder=os.path.join(self._settings.getBaseFolder("data"), name))
)
return props
def settings_plugin_inject_factory(name, implementation):
"""Factory for additional injections/initializations depending on plugin type"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
default_settings_overlay = dict(plugins=dict())
default_settings_overlay["plugins"][name] = (
implementation.get_settings_defaults()
)
self._settings.add_overlay(default_settings_overlay, at_end=True)
plugin_settings = octoprint.plugin.plugin_settings_for_settings_plugin(
name, implementation
)
if plugin_settings is None:
return
return dict(settings=plugin_settings)
def settings_plugin_config_migration_and_cleanup(identifier, implementation):
"""Take care of migrating and cleaning up any old settings"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
settings_version = implementation.get_settings_version()
settings_migrator = implementation.on_settings_migrate
if settings_version is not None and settings_migrator is not None:
stored_version = implementation._settings.get_int(
[octoprint.plugin.SettingsPlugin.config_version_key]
)
if stored_version is None or stored_version < settings_version:
settings_migrator(settings_version, stored_version)
implementation._settings.set_int(
[octoprint.plugin.SettingsPlugin.config_version_key],
settings_version,
force=True,
)
implementation.on_settings_cleanup()
implementation._settings.save()
implementation.on_settings_initialized()
custom_events_hooks = pluginManager.get_hooks(
"octoprint.events.register_custom_events"
)
for name, hook in custom_events_hooks.items():
try:
result = hook()
if isinstance(result, (list, tuple)):
for event in result:
constant, value = octoprint.events.Events.register_event(
event, prefix="plugin_{}_".format(name)
)
self._logger.debug(
'Registered event {} of plugin {} as Events.{} = "{}"'.format(
event, name, constant, value
)
)
except Exception:
self._logger.exception(
"Error while retrieving custom event list from plugin {}".format(name),
extra=dict(plugin=name),
)
pluginManager.implementation_inject_factories = [
octoprint_plugin_inject_factory,
settings_plugin_inject_factory,
]
pluginManager.initialize_implementations()
settingsPlugins = pluginManager.get_implementations(octoprint.plugin.SettingsPlugin)
for implementation in settingsPlugins:
try:
settings_plugin_config_migration_and_cleanup(
implementation._identifier, implementation
)
except Exception:
self._logger.exception(
"Error while trying to migrate settings for "
"plugin {}, ignoring it".format(implementation._identifier),
extra=dict(plugin=implementation._identifier),
)
pluginManager.implementation_post_inits = [
settings_plugin_config_migration_and_cleanup
]
pluginManager.log_all_plugins()
# log environment data now
self._environment_detector.log_detected_environment()
# initialize file manager and register it for changes in the registered plugins
fileManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: fileManager.reload_plugins()
)
# initialize slicing manager and register it for changes in the registered plugins
slicingManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: slicingManager.reload_slicers()
)
# setup jinja2
self._setup_jinja2()
# setup assets
self._setup_assets()
# configure timelapse
octoprint.timelapse.valid_timelapse("test")
octoprint.timelapse.configure_timelapse()
# setup command triggers
events.CommandTrigger(printer)
if self._debug:
events.DebugEventListener()
# setup login manager
self._setup_login_manager()
# register API blueprint
self._setup_blueprints()
## Tornado initialization starts here
ioloop = IOLoop()
ioloop.install()
enable_cors = settings().getBoolean(["api", "allowCrossOrigin"])
self._router = SockJSRouter(
self._create_socket_connection,
"/sockjs",
session_kls=util.sockjs.ThreadSafeSession,
user_settings=dict(
websocket_allow_origin="*" if enable_cors else "",
jsessionid=False,
sockjs_url="../../static/js/lib/sockjs.min.js",
),
)
upload_suffixes = dict(
name=self._settings.get(["server", "uploads", "nameSuffix"]),
path=self._settings.get(["server", "uploads", "pathSuffix"]),
)
def mime_type_guesser(path):
from octoprint.filemanager import get_mime_type
return get_mime_type(path)
def download_name_generator(path):
metadata = fileManager.get_metadata("local", path)
if metadata and "display" in metadata:
return metadata["display"]
download_handler_kwargs = dict(as_attachment=True, allow_client_caching=False)
additional_mime_types = dict(mime_type_guesser=mime_type_guesser)
##~~ Permission validators
access_validators_from_plugins = []
for plugin, hook in pluginManager.get_hooks(
"octoprint.server.http.access_validator"
).items():
try:
access_validators_from_plugins.append(
util.tornado.access_validation_factory(app, hook)
)
except Exception:
self._logger.exception(
"Error while adding tornado access validator from plugin {}".format(
plugin
),
extra=dict(plugin=plugin),
)
access_validator = dict(
access_validation=util.tornado.validation_chain(*access_validators_from_plugins)
)
timelapse_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.TIMELAPSE_LIST
),
] + access_validators_from_plugins
download_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.FILES_DOWNLOAD
),
] + access_validators_from_plugins
log_validators = [
util.tornado.access_validation_factory(
app,
util.flask.permission_validator,
permissions.Permissions.PLUGIN_LOGGING_MANAGE,
),
] + access_validators_from_plugins
camera_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.WEBCAM
),
] + access_validators_from_plugins
timelapse_permission_validator = dict(
access_validation=util.tornado.validation_chain(*timelapse_validators)
)
download_permission_validator = dict(
access_validation=util.tornado.validation_chain(*download_validators)
)
log_permission_validator = dict(
access_validation=util.tornado.validation_chain(*log_validators)
)
camera_permission_validator = dict(
access_validation=util.tornado.validation_chain(*camera_validators)
)
no_hidden_files_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path), status_code=404
)
)
timelapse_path_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path)
and octoprint.timelapse.valid_timelapse(path),
status_code=404,
)
)
def joined_dict(*dicts):
if not len(dicts):
return dict()
joined = dict()
for d in dicts:
joined.update(d)
return joined
util.tornado.RequestlessExceptionLoggingMixin.LOG_REQUEST = debug
util.tornado.CorsSupportMixin.ENABLE_CORS = enable_cors
server_routes = self._router.urls + [
# various downloads
# .mpg and .mp4 timelapses:
(
r"/downloads/timelapse/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("timelapse")),
timelapse_permission_validator,
download_handler_kwargs,
timelapse_path_validator,
),
),
(
r"/downloads/files/local/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("uploads"),
as_attachment=True,
name_generator=download_name_generator,
),
download_permission_validator,
download_handler_kwargs,
no_hidden_files_validator,
additional_mime_types,
),
),
(
r"/downloads/logs/([^/]*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("logs"),
mime_type_guesser=lambda *args, **kwargs: "text/plain",
),
download_handler_kwargs,
log_permission_validator,
),
),
# camera snapshot
(
r"/downloads/camera/current",
util.tornado.UrlProxyHandler,
joined_dict(
dict(
url=self._settings.get(["webcam", "snapshot"]), as_attachment=True
),
camera_permission_validator,
),
),
# generated webassets
(
r"/static/webassets/(.*)",
util.tornado.LargeResponseHandler,
dict(
path=os.path.join(
self._settings.getBaseFolder("generated"), "webassets"
),
is_pre_compressed=True,
),
),
# online indicators - text file with "online" as content and a transparent gif
(r"/online.txt", util.tornado.StaticDataHandler, dict(data="online\n")),
(
r"/online.gif",
util.tornado.StaticDataHandler,
dict(
data=bytes(
base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
),
content_type="image/gif",
),
),
# deprecated endpoints
(
r"/api/logs",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs"),
),
(
r"/api/logs/(.*)",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs/{0}"),
),
]
# fetch additional routes from plugins
for name, hook in pluginManager.get_hooks("octoprint.server.http.routes").items():
try:
result = hook(list(server_routes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"server routes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if not isinstance(entry[0], basestring):
continue
if not isinstance(entry[2], dict):
continue
route, handler, kwargs = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding additional route {route} handled by handler {handler} and with additional arguments {kwargs!r}".format(
**locals()
)
)
server_routes.append((route, handler, kwargs))
headers = {
"X-Robots-Tag": "noindex, nofollow, noimageindex",
"X-Content-Type-Options": "nosniff",
}
if not settings().getBoolean(["server", "allowFraming"]):
headers["X-Frame-Options"] = "sameorigin"
removed_headers = ["Server"]
server_routes.append(
(
r".*",
util.tornado.UploadStorageFallbackHandler,
dict(
fallback=util.tornado.WsgiInputContainer(
app.wsgi_app, headers=headers, removed_headers=removed_headers
),
file_prefix="octoprint-file-upload-",
file_suffix=".tmp",
suffixes=upload_suffixes,
),
)
)
transforms = [
util.tornado.GlobalHeaderTransform.for_headers(
"OctoPrintGlobalHeaderTransform",
headers=headers,
removed_headers=removed_headers,
)
]
self._tornado_app = Application(handlers=server_routes, transforms=transforms)
max_body_sizes = [
(
"POST",
r"/api/files/([^/]*)",
self._settings.getInt(["server", "uploads", "maxSize"]),
),
("POST", r"/api/languages", 5 * 1024 * 1024),
]
# allow plugins to extend allowed maximum body sizes
for name, hook in pluginManager.get_hooks("octoprint.server.http.bodysize").items():
try:
result = hook(list(max_body_sizes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"upload sizes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if (
not entry[0]
in util.tornado.UploadStorageFallbackHandler.BODY_METHODS
):
continue
if not isinstance(entry[2], int):
continue
method, route, size = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding maximum body size of {size}B for {method} requests to {route})".format(
**locals()
)
)
max_body_sizes.append((method, route, size))
self._stop_intermediary_server()
# initialize and bind the server
trusted_downstream = self._settings.get(
["server", "reverseProxy", "trustedDownstream"]
)
if not isinstance(trusted_downstream, list):
self._logger.warning(
"server.reverseProxy.trustedDownstream is not a list, skipping"
)
trusted_downstreams = []
server_kwargs = dict(
max_body_sizes=max_body_sizes,
default_max_body_size=self._settings.getInt(["server", "maxSize"]),
xheaders=True,
trusted_downstream=trusted_downstream,
)
if sys.platform == "win32":
# set 10min idle timeout under windows to hopefully make #2916 less likely
server_kwargs.update(dict(idle_connection_timeout=600))
self._server = util.tornado.CustomHTTPServer(self._tornado_app, **server_kwargs)
listening_address = self._host
if self._host == "::" and not self._v6_only:
# special case - tornado only listens on v4 _and_ v6 if we use None as address
listening_address = None
self._server.listen(self._port, address=listening_address)
### From now on it's ok to launch subprocesses again
eventManager.fire(events.Events.STARTUP)
# analysis backlog
fileManager.process_backlog()
# auto connect
if self._settings.getBoolean(["serial", "autoconnect"]):
self._logger.info(
"Autoconnect on startup is configured, trying to connect to the printer..."
)
try:
(port, baudrate) = (
self._settings.get(["serial", "port"]),
self._settings.getInt(["serial", "baudrate"]),
)
printer_profile = printerProfileManager.get_default()
connectionOptions = printer.__class__.get_connection_options()
if port in connectionOptions["ports"] or port == "AUTO" or port is None:
self._logger.info(
"Trying to connect to configured serial port {}".format(port)
)
printer.connect(
port=port,
baudrate=baudrate,
profile=printer_profile["id"]
if "id" in printer_profile
else "_default",
)
else:
self._logger.info(
"Could not find configured serial port {} in the system, cannot automatically connect to a non existing printer. Is it plugged in and booted up yet?"
)
except Exception:
self._logger.exception(
"Something went wrong while attempting to automatically connect to the printer"
)
# start up watchdogs
try:
watched = self._settings.getBaseFolder("watched")
watchdog_handler = util.watchdog.GcodeWatchdogHandler(fileManager, printer)
watchdog_handler.initial_scan(watched)
if self._settings.getBoolean(["feature", "pollWatched"]):
# use less performant polling observer if explicitly configured
observer = PollingObserver()
else:
# use os default
observer = Observer()
observer.schedule(watchdog_handler, watched, recursive=True)
observer.start()
except Exception:
self._logger.exception("Error starting watched folder observer")
# run our startup plugins
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_startup",
args=(self._host, self._port),
sorting_context="StartupPlugin.on_startup",
)
def call_on_startup(name, plugin):
implementation = plugin.get_implementation(octoprint.plugin.StartupPlugin)
if implementation is None:
return
implementation.on_startup(self._host, self._port)
pluginLifecycleManager.add_callback("enabled", call_on_startup)
# prepare our after startup function
def on_after_startup():
if self._host == "::":
if self._v6_only:
# only v6
self._logger.info(
"Listening on http://[::]:{port}".format(port=self._port)
)
else:
# all v4 and v6
self._logger.info(
"Listening on http://0.0.0.0:{port} and http://[::]:{port}".format(
port=self._port
)
)
else:
self._logger.info(
"Listening on http://{}:{}".format(
self._host if not ":" in self._host else "[" + self._host + "]",
self._port,
)
)
if safe_mode and self._settings.getBoolean(["server", "startOnceInSafeMode"]):
self._logger.info(
"Server started successfully in safe mode as requested from config, removing flag"
)
self._settings.setBoolean(["server", "startOnceInSafeMode"], False)
self._settings.save()
# now this is somewhat ugly, but the issue is the following: startup plugins might want to do things for
# which they need the server to be already alive (e.g. for being able to resolve urls, such as favicons
# or service xmls or the like). While they are working though the ioloop would block. Therefore we'll
# create a single use thread in which to perform our after-startup-tasks, start that and hand back
# control to the ioloop
def work():
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_after_startup",
sorting_context="StartupPlugin.on_after_startup",
)
def call_on_after_startup(name, plugin):
implementation = plugin.get_implementation(
octoprint.plugin.StartupPlugin
)
if implementation is None:
return
implementation.on_after_startup()
pluginLifecycleManager.add_callback("enabled", call_on_after_startup)
# if there was a rogue plugin we wouldn't even have made it here, so remove startup triggered safe mode
# flag again...
self._settings.setBoolean(["server", "incompleteStartup"], False)
self._settings.save()
# make a backup of the current config
self._settings.backup(ext="backup")
# when we are through with that we also run our preemptive cache
if settings().getBoolean(["devel", "cache", "preemptive"]):
self._execute_preemptive_flask_caching(preemptiveCache)
import threading
threading.Thread(target=work).start()
ioloop.add_callback(on_after_startup)
# prepare our shutdown function
def on_shutdown():
# will be called on clean system exit and shutdown the watchdog observer and call the on_shutdown methods
# on all registered ShutdownPlugins
self._logger.info("Shutting down...")
observer.stop()
observer.join()
eventManager.fire(events.Events.SHUTDOWN)
self._logger.info("Calling on_shutdown on plugins")
octoprint.plugin.call_plugin(
octoprint.plugin.ShutdownPlugin,
"on_shutdown",
sorting_context="ShutdownPlugin.on_shutdown",
)
# wait for shutdown event to be processed, but maximally for 15s
event_timeout = 15.0
if eventManager.join(timeout=event_timeout):
self._logger.warning(
"Event loop was still busy processing after {}s, shutting down anyhow".format(
event_timeout
)
)
if self._octoprint_daemon is not None:
self._logger.info("Cleaning up daemon pidfile")
self._octoprint_daemon.terminated()
self._logger.info("Goodbye!")
atexit.register(on_shutdown)
def sigterm_handler(*args, **kwargs):
# will stop tornado on SIGTERM, making the program exit cleanly
def shutdown_tornado():
self._logger.debug("Shutting down tornado's IOLoop...")
ioloop.stop()
self._logger.debug("SIGTERM received...")
ioloop.add_callback_from_signal(shutdown_tornado)
signal.signal(signal.SIGTERM, sigterm_handler)
try:
# this is the main loop - as long as tornado is running, OctoPrint is running
ioloop.start()
self._logger.debug("Tornado's IOLoop stopped")
except (KeyboardInterrupt, SystemExit):
pass
except Exception:
self._logger.fatal(
"Now that is embarrassing... Something really really went wrong here. Please report this including the stacktrace below in OctoPrint's bugtracker. Thanks!"
)
self._logger.exception("Stacktrace follows:")
|
https://github.com/OctoPrint/OctoPrint/issues/3731
|
2020-09-14 12:32:33,718 - tornado.application - ERROR - Uncaught exception GET /downloads/logs/octoprint.log (::ffff:73.122.180.167)
Traceback (most recent call last):
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 1592, in _execute
result = yield result
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/gen.py", line 1147, in run
yielded = self.gen.send(value)
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 2528, in get
yield self.flush()
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 1000, in flush
return self.request.connection.write(chunk, callback=callback)
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/http1connection.py", line 451, in write
self._pending_write = self.stream.write(self._format_chunk(chunk))
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/http1connection.py", line 424, in _format_chunk
"Tried to write more data than Content-Length")
tornado.httputil.HTTPOutputError: Tried to write more data than Content-Length
|
tornado.httputil.HTTPOutputError
|
def initialize(
self,
path,
default_filename=None,
as_attachment=False,
allow_client_caching=True,
access_validation=None,
path_validation=None,
etag_generator=None,
name_generator=None,
mime_type_guesser=None,
is_pre_compressed=False,
stream_body=False,
):
tornado.web.StaticFileHandler.initialize(
self, os.path.abspath(path), default_filename
)
self._as_attachment = as_attachment
self._allow_client_caching = allow_client_caching
self._access_validation = access_validation
self._path_validation = path_validation
self._etag_generator = etag_generator
self._name_generator = name_generator
self._mime_type_guesser = mime_type_guesser
self._is_pre_compressed = is_pre_compressed
self._stream_body = stream_body
|
def initialize(
self,
path,
default_filename=None,
as_attachment=False,
allow_client_caching=True,
access_validation=None,
path_validation=None,
etag_generator=None,
name_generator=None,
mime_type_guesser=None,
is_pre_compressed=False,
):
tornado.web.StaticFileHandler.initialize(
self, os.path.abspath(path), default_filename
)
self._as_attachment = as_attachment
self._allow_client_caching = allow_client_caching
self._access_validation = access_validation
self._path_validation = path_validation
self._etag_generator = etag_generator
self._name_generator = name_generator
self._mime_type_guesser = mime_type_guesser
self._is_pre_compressed = is_pre_compressed
|
https://github.com/OctoPrint/OctoPrint/issues/3731
|
2020-09-14 12:32:33,718 - tornado.application - ERROR - Uncaught exception GET /downloads/logs/octoprint.log (::ffff:73.122.180.167)
Traceback (most recent call last):
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 1592, in _execute
result = yield result
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/gen.py", line 1147, in run
yielded = self.gen.send(value)
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 2528, in get
yield self.flush()
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 1000, in flush
return self.request.connection.write(chunk, callback=callback)
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/http1connection.py", line 451, in write
self._pending_write = self.stream.write(self._format_chunk(chunk))
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/http1connection.py", line 424, in _format_chunk
"Tried to write more data than Content-Length")
tornado.httputil.HTTPOutputError: Tried to write more data than Content-Length
|
tornado.httputil.HTTPOutputError
|
def get(self, path, include_body=True):
if self._access_validation is not None:
self._access_validation(self.request)
if self._path_validation is not None:
self._path_validation(path)
if "cookie" in self.request.arguments:
self.set_cookie(self.request.arguments["cookie"][0], "true", path="/")
if self.should_use_precompressed():
if os.path.exists(os.path.join(self.root, path + ".gz")):
self.set_header("Content-Encoding", "gzip")
path = path + ".gz"
else:
logging.getLogger(__name__).warning(
"Precompressed assets expected but {}.gz does not exist "
"in {}, using plain file instead.".format(path, self.root)
)
if self._stream_body:
return self.streamed_get(path, include_body=include_body)
else:
return tornado.web.StaticFileHandler.get(self, path, include_body=include_body)
|
def get(self, path, include_body=True):
if self._access_validation is not None:
self._access_validation(self.request)
if self._path_validation is not None:
self._path_validation(path)
if "cookie" in self.request.arguments:
self.set_cookie(self.request.arguments["cookie"][0], "true", path="/")
if self.should_use_precompressed():
if os.path.exists(os.path.join(self.root, path + ".gz")):
self.set_header("Content-Encoding", "gzip")
path = path + ".gz"
else:
logging.getLogger(__name__).warning(
"Precompressed assets expected but {}.gz does not exist "
"in {}, using plain file instead.".format(path, self.root)
)
return tornado.web.StaticFileHandler.get(self, path, include_body=include_body)
|
https://github.com/OctoPrint/OctoPrint/issues/3731
|
2020-09-14 12:32:33,718 - tornado.application - ERROR - Uncaught exception GET /downloads/logs/octoprint.log (::ffff:73.122.180.167)
Traceback (most recent call last):
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 1592, in _execute
result = yield result
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/gen.py", line 1133, in run
value = future.result()
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/gen.py", line 1147, in run
yielded = self.gen.send(value)
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 2528, in get
yield self.flush()
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/web.py", line 1000, in flush
return self.request.connection.write(chunk, callback=callback)
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/http1connection.py", line 451, in write
self._pending_write = self.stream.write(self._format_chunk(chunk))
File "/home/pi/oprint/lib/python3.7/site-packages/tornado/http1connection.py", line 424, in _format_chunk
"Tried to write more data than Content-Length")
tornado.httputil.HTTPOutputError: Tried to write more data than Content-Length
|
tornado.httputil.HTTPOutputError
|
def send_pack(self, message, binary=False):
if IOLoop.current(False) == self.server.io_loop:
# Running in Main Thread
# Send message
try:
self.write_message(message, binary).add_done_callback(self.send_complete)
except (IOError, WebSocketError):
self.server.io_loop.add_callback(self.on_close)
else:
# Not running in Main Thread so use proper thread to send message
self.server.io_loop.add_callback(lambda: self.send_pack(message, binary))
|
def send_pack(self, message, binary=False):
if IOLoop.current(False) == self.server.io_loop:
# Running in Main Thread
# Send message
try:
self.write_message(message, binary)
except (IOError, WebSocketError):
self.server.io_loop.add_callback(self.on_close)
else:
# Not running in Main Thread so use proper thread to send message
self.server.io_loop.add_callback(lambda: self.send_pack(message, binary))
|
https://github.com/OctoPrint/OctoPrint/issues/3689
|
Aug 13 08:39:01 bananapi2 octoprint[580]: 2020-08-13 08:39:01,742 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
Aug 13 08:39:01 bananapi2 octoprint[580]: 2020-08-13 08:39:01,767 - octoprint.plugins.stats - INFO - Printer Stats - on_event
Aug 13 08:39:03 bananapi2 octoprint[580]: 2020-08-13 08:39:03,279 - octoprint.plugins.stats - INFO - Printer Stats - on_event
Aug 13 08:39:08 bananapi2 octoprint[580]: 2020-08-13 08:39:08,542 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': u'l10n=de', 'path': u'/
', u'_count': 1, u'_timestamp': 1597300748.541694, 'base_url': u'http://bananapi2:5000/'}
Aug 13 08:39:48 bananapi2 octoprint[580]: 2020-08-13 08:39:48,527 - octoprint.server.util.sockjs - INFO - New connection from client: 10.x.x.68
Aug 13 08:39:48 bananapi2 octoprint[580]: 2020-08-13 08:39:48,990 - octoprint.server.util.flask - INFO - Passively logging in user _admin from 10.x.x.68
Aug 13 08:39:49 bananapi2 octoprint[580]: 2020-08-13 08:39:48,998 - octoprint.access.users - INFO - Logged in user: _admin
Aug 13 08:39:57 bananapi2 octoprint[580]: 2020-08-13 08:39:57,700 - octoprint.filemanager.analysis - INFO - Analysis of entry local:smd-60mm-container-lid.gcode finished, needed 68.44s
Aug 13 08:39:58 bananapi2 octoprint[580]: 2020-08-13 08:39:58,113 - octoprint.server.util.sockjs - INFO - User _admin logged in on the socket from client 10.x.x.68
Aug 13 08:50:52 bananapi2 octoprint[580]: 2020-08-13 08:50:52,806 - octoprint.server.heartbeat - INFO - Server heartbeat <3
Aug 13 08:51:43 bananapi2 octoprint[580]: 2020-08-13 08:51:43,630 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 958}
Aug 13 09:05:52 bananapi2 octoprint[580]: 2020-08-13 09:05:52,808 - octoprint.server.heartbeat - INFO - Server heartbeat <3
Aug 13 09:06:43 bananapi2 octoprint[580]: 2020-08-13 09:06:43,596 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1858}
Aug 13 09:20:52 bananapi2 octoprint[580]: 2020-08-13 09:20:52,817 - octoprint.server.heartbeat - INFO - Server heartbeat <3
Aug 13 09:21:43 bananapi2 octoprint[580]: 2020-08-13 09:21:43,716 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 2758}
Aug 13 09:22:14 bananapi2 octoprint[580]: 2020-08-13 09:22:14,870 - tornado.general - WARNING - Write error on <socket._socketobject object at 0xa578b0d8>: [Errno 113] No route to host
Aug 13 09:22:16 bananapi2 octoprint[580]: 2020-08-13 09:22:16,721 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.x.x.68
Aug 13 09:22:19 bananapi2 octoprint[580]: 2020-08-13 09:22:19,914 - tornado.application - ERROR - Future exception was never retrieved: Traceback (most recent call last):
Aug 13 09:22:19 bananapi2 octoprint[580]: File "/home/octoprint/OctoPrint/venv/local/lib/python2.7/site-packages/tornado/gen.py", line 1141, in run
Aug 13 09:22:19 bananapi2 octoprint[580]: yielded = self.gen.throw(*exc_info)
Aug 13 09:22:19 bananapi2 octoprint[580]: File "/home/octoprint/OctoPrint/venv/local/lib/python2.7/site-packages/tornado/websocket.py", line 876, in wrapper
Aug 13 09:22:19 bananapi2 octoprint[580]: raise WebSocketClosedError()
Aug 13 09:22:19 bananapi2 octoprint[580]: WebSocketClosedError
Aug 13 09:22:20 bananapi2 octoprint[580]: 2020-08-13 09:22:20,009 - tornado.application - ERROR - Future exception was never retrieved: Traceback (most recent call last):
Aug 13 09:22:20 bananapi2 octoprint[580]: File "/home/octoprint/OctoPrint/venv/local/lib/python2.7/site-packages/tornado/gen.py", line 1141, in run
Aug 13 09:22:20 bananapi2 octoprint[580]: yielded = self.gen.throw(*exc_info)
Aug 13 09:22:20 bananapi2 octoprint[580]: File "/home/octoprint/OctoPrint/venv/local/lib/python2.7/site-packages/tornado/websocket.py", line 876, in wrapper
Aug 13 09:22:20 bananapi2 octoprint[580]: raise WebSocketClosedError()
Aug 13 09:22:20 bananapi2 octoprint[580]: WebSocketClosedError
|
WebSocketClosedError
|
def _saveSettings(data):
logger = logging.getLogger(__name__)
s = settings()
# NOTE: Remember to adjust the docs of the data model on the Settings API if anything
# is changed, added or removed here
if "folder" in data:
try:
if "uploads" in data["folder"]:
s.setBaseFolder("uploads", data["folder"]["uploads"])
if "timelapse" in data["folder"]:
s.setBaseFolder("timelapse", data["folder"]["timelapse"])
if "timelapseTmp" in data["folder"]:
s.setBaseFolder("timelapse_tmp", data["folder"]["timelapseTmp"])
if "logs" in data["folder"]:
s.setBaseFolder("logs", data["folder"]["logs"])
if "watched" in data["folder"]:
s.setBaseFolder("watched", data["folder"]["watched"])
except IOError:
return make_response("One of the configured folders is invalid", 400)
if "api" in data:
if "allowCrossOrigin" in data["api"]:
s.setBoolean(["api", "allowCrossOrigin"], data["api"]["allowCrossOrigin"])
if "appearance" in data:
if "name" in data["appearance"]:
s.set(["appearance", "name"], data["appearance"]["name"])
if "color" in data["appearance"]:
s.set(["appearance", "color"], data["appearance"]["color"])
if "colorTransparent" in data["appearance"]:
s.setBoolean(
["appearance", "colorTransparent"],
data["appearance"]["colorTransparent"],
)
if "colorIcon" in data["appearance"]:
s.setBoolean(["appearance", "colorIcon"], data["appearance"]["colorIcon"])
if "defaultLanguage" in data["appearance"]:
s.set(
["appearance", "defaultLanguage"], data["appearance"]["defaultLanguage"]
)
if "showFahrenheitAlso" in data["appearance"]:
s.setBoolean(
["appearance", "showFahrenheitAlso"],
data["appearance"]["showFahrenheitAlso"],
)
if "fuzzyTimes" in data["appearance"]:
s.setBoolean(["appearance", "fuzzyTimes"], data["appearance"]["fuzzyTimes"])
if "closeModalsWithClick" in data["appearance"]:
s.setBoolean(
["appearance", "closeModalsWithClick"],
data["appearance"]["closeModalsWithClick"],
)
if "printer" in data:
if "defaultExtrusionLength" in data["printer"]:
s.setInt(
["printerParameters", "defaultExtrusionLength"],
data["printer"]["defaultExtrusionLength"],
)
if "webcam" in data:
if "webcamEnabled" in data["webcam"]:
s.setBoolean(["webcam", "webcamEnabled"], data["webcam"]["webcamEnabled"])
if "timelapseEnabled" in data["webcam"]:
s.setBoolean(
["webcam", "timelapseEnabled"], data["webcam"]["timelapseEnabled"]
)
if "streamUrl" in data["webcam"]:
s.set(["webcam", "stream"], data["webcam"]["streamUrl"])
if "streamRatio" in data["webcam"] and data["webcam"]["streamRatio"] in (
"16:9",
"4:3",
):
s.set(["webcam", "streamRatio"], data["webcam"]["streamRatio"])
if "streamTimeout" in data["webcam"]:
s.setInt(["webcam", "streamTimeout"], data["webcam"]["streamTimeout"])
if "snapshotUrl" in data["webcam"]:
s.set(["webcam", "snapshot"], data["webcam"]["snapshotUrl"])
if "snapshotTimeout" in data["webcam"]:
s.setInt(["webcam", "snapshotTimeout"], data["webcam"]["snapshotTimeout"])
if "snapshotSslValidation" in data["webcam"]:
s.setBoolean(
["webcam", "snapshotSslValidation"],
data["webcam"]["snapshotSslValidation"],
)
if "ffmpegPath" in data["webcam"]:
s.set(["webcam", "ffmpeg"], data["webcam"]["ffmpegPath"])
if "bitrate" in data["webcam"]:
s.set(["webcam", "bitrate"], data["webcam"]["bitrate"])
if "ffmpegThreads" in data["webcam"]:
s.setInt(["webcam", "ffmpegThreads"], data["webcam"]["ffmpegThreads"])
if "ffmpegVideoCodec" in data["webcam"] and data["webcam"][
"ffmpegVideoCodec"
] in ("mpeg2video", "libx264"):
s.set(["webcam", "ffmpegVideoCodec"], data["webcam"]["ffmpegVideoCodec"])
if "watermark" in data["webcam"]:
s.setBoolean(["webcam", "watermark"], data["webcam"]["watermark"])
if "flipH" in data["webcam"]:
s.setBoolean(["webcam", "flipH"], data["webcam"]["flipH"])
if "flipV" in data["webcam"]:
s.setBoolean(["webcam", "flipV"], data["webcam"]["flipV"])
if "rotate90" in data["webcam"]:
s.setBoolean(["webcam", "rotate90"], data["webcam"]["rotate90"])
if "feature" in data:
if "temperatureGraph" in data["feature"]:
s.setBoolean(
["feature", "temperatureGraph"], data["feature"]["temperatureGraph"]
)
if "sdSupport" in data["feature"]:
s.setBoolean(["feature", "sdSupport"], data["feature"]["sdSupport"])
if "keyboardControl" in data["feature"]:
s.setBoolean(
["feature", "keyboardControl"], data["feature"]["keyboardControl"]
)
if "pollWatched" in data["feature"]:
s.setBoolean(["feature", "pollWatched"], data["feature"]["pollWatched"])
if "modelSizeDetection" in data["feature"]:
s.setBoolean(
["feature", "modelSizeDetection"], data["feature"]["modelSizeDetection"]
)
if "printStartConfirmation" in data["feature"]:
s.setBoolean(
["feature", "printStartConfirmation"],
data["feature"]["printStartConfirmation"],
)
if "printCancelConfirmation" in data["feature"]:
s.setBoolean(
["feature", "printCancelConfirmation"],
data["feature"]["printCancelConfirmation"],
)
if "g90InfluencesExtruder" in data["feature"]:
s.setBoolean(
["feature", "g90InfluencesExtruder"],
data["feature"]["g90InfluencesExtruder"],
)
if "autoUppercaseBlacklist" in data["feature"] and isinstance(
data["feature"]["autoUppercaseBlacklist"], (list, tuple)
):
s.set(
["feature", "autoUppercaseBlacklist"],
data["feature"]["autoUppercaseBlacklist"],
)
if "gcodeAnalysis" in data:
if "runAt" in data["gcodeAnalysis"]:
s.set(["gcodeAnalysis", "runAt"], data["gcodeAnalysis"]["runAt"])
if "serial" in data:
if "autoconnect" in data["serial"]:
s.setBoolean(["serial", "autoconnect"], data["serial"]["autoconnect"])
if "port" in data["serial"]:
s.set(["serial", "port"], data["serial"]["port"])
if "baudrate" in data["serial"]:
s.setInt(["serial", "baudrate"], data["serial"]["baudrate"])
if "exclusive" in data["serial"]:
s.setBoolean(["serial", "exclusive"], data["serial"]["exclusive"])
if "timeoutConnection" in data["serial"]:
s.setFloat(
["serial", "timeout", "connection"],
data["serial"]["timeoutConnection"],
min=1.0,
)
if "timeoutDetectionFirst" in data["serial"]:
s.setFloat(
["serial", "timeout", "detectionFirst"],
data["serial"]["timeoutDetectionFirst"],
min=1.0,
)
if "timeoutDetectionConsecutive" in data["serial"]:
s.setFloat(
["serial", "timeout", "detectionConsecutive"],
data["serial"]["timeoutDetectionConsecutive"],
min=1.0,
)
if "timeoutCommunication" in data["serial"]:
s.setFloat(
["serial", "timeout", "communication"],
data["serial"]["timeoutCommunication"],
min=1.0,
)
if "timeoutCommunicationBusy" in data["serial"]:
s.setFloat(
["serial", "timeout", "communicationBusy"],
data["serial"]["timeoutCommunicationBusy"],
min=1.0,
)
if "timeoutTemperature" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperature"],
data["serial"]["timeoutTemperature"],
min=1.0,
)
if "timeoutTemperatureTargetSet" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureTargetSet"],
data["serial"]["timeoutTemperatureTargetSet"],
min=1.0,
)
if "timeoutTemperatureAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureAutoreport"],
data["serial"]["timeoutTemperatureAutoreport"],
min=0.0,
)
if "timeoutSdStatus" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatus"],
data["serial"]["timeoutSdStatus"],
min=1.0,
)
if "timeoutSdStatusAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatusAutoreport"],
data["serial"]["timeoutSdStatusAutoreport"],
min=0.0,
)
if "timeoutBaudrateDetectionPause" in data["serial"]:
s.setFloat(
["serial", "timeout", "baudrateDetectionPause"],
data["serial"]["timeoutBaudrateDetectionPause"],
min=0.0,
)
if "timeoutPositionLogWait" in data["serial"]:
s.setFloat(
["serial", "timeout", "positionLogWait"],
data["serial"]["timeoutPositionLogWait"],
min=1.0,
)
if "additionalPorts" in data["serial"] and isinstance(
data["serial"]["additionalPorts"], (list, tuple)
):
s.set(["serial", "additionalPorts"], data["serial"]["additionalPorts"])
if "additionalBaudrates" in data["serial"] and isinstance(
data["serial"]["additionalBaudrates"], (list, tuple)
):
s.set(
["serial", "additionalBaudrates"], data["serial"]["additionalBaudrates"]
)
if "blacklistedPorts" in data["serial"] and isinstance(
data["serial"]["blacklistedPorts"], (list, tuple)
):
s.set(["serial", "blacklistedPorts"], data["serial"]["blacklistedPorts"])
if "blacklistedBaudrates" in data["serial"] and isinstance(
data["serial"]["blacklistedBaudrates"], (list, tuple)
):
s.set(
["serial", "blacklistedBaudrates"],
data["serial"]["blacklistedBaudrates"],
)
if "longRunningCommands" in data["serial"] and isinstance(
data["serial"]["longRunningCommands"], (list, tuple)
):
s.set(
["serial", "longRunningCommands"], data["serial"]["longRunningCommands"]
)
if "checksumRequiringCommands" in data["serial"] and isinstance(
data["serial"]["checksumRequiringCommands"], (list, tuple)
):
s.set(
["serial", "checksumRequiringCommands"],
data["serial"]["checksumRequiringCommands"],
)
if "blockedCommands" in data["serial"] and isinstance(
data["serial"]["blockedCommands"], (list, tuple)
):
s.set(["serial", "blockedCommands"], data["serial"]["blockedCommands"])
if "pausingCommands" in data["serial"] and isinstance(
data["serial"]["pausingCommands"], (list, tuple)
):
s.set(["serial", "pausingCommands"], data["serial"]["pausingCommands"])
if "emergencyCommands" in data["serial"] and isinstance(
data["serial"]["emergencyCommands"], (list, tuple)
):
s.set(["serial", "emergencyCommands"], data["serial"]["emergencyCommands"])
if "helloCommand" in data["serial"]:
s.set(["serial", "helloCommand"], data["serial"]["helloCommand"])
if "ignoreErrorsFromFirmware" in data["serial"]:
s.setBoolean(
["serial", "ignoreErrorsFromFirmware"],
data["serial"]["ignoreErrorsFromFirmware"],
)
if "disconnectOnErrors" in data["serial"]:
s.setBoolean(
["serial", "disconnectOnErrors"], data["serial"]["disconnectOnErrors"]
)
if "triggerOkForM29" in data["serial"]:
s.setBoolean(
["serial", "triggerOkForM29"], data["serial"]["triggerOkForM29"]
)
if "supportResendsWithoutOk" in data["serial"]:
value = data["serial"]["supportResendsWithoutOk"]
if value in ("always", "detect", "never"):
s.set(["serial", "supportResendsWithoutOk"], value)
if "waitForStart" in data["serial"]:
s.setBoolean(
["serial", "waitForStartOnConnect"], data["serial"]["waitForStart"]
)
if "alwaysSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "alwaysSendChecksum"], data["serial"]["alwaysSendChecksum"]
)
if "neverSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "neverSendChecksum"], data["serial"]["neverSendChecksum"]
)
if "sdRelativePath" in data["serial"]:
s.setBoolean(["serial", "sdRelativePath"], data["serial"]["sdRelativePath"])
if "sdAlwaysAvailable" in data["serial"]:
s.setBoolean(
["serial", "sdAlwaysAvailable"], data["serial"]["sdAlwaysAvailable"]
)
if "swallowOkAfterResend" in data["serial"]:
s.setBoolean(
["serial", "swallowOkAfterResend"],
data["serial"]["swallowOkAfterResend"],
)
if "repetierTargetTemp" in data["serial"]:
s.setBoolean(
["serial", "repetierTargetTemp"], data["serial"]["repetierTargetTemp"]
)
if "externalHeatupDetection" in data["serial"]:
s.setBoolean(
["serial", "externalHeatupDetection"],
data["serial"]["externalHeatupDetection"],
)
if "ignoreIdenticalResends" in data["serial"]:
s.setBoolean(
["serial", "ignoreIdenticalResends"],
data["serial"]["ignoreIdenticalResends"],
)
if "firmwareDetection" in data["serial"]:
s.setBoolean(
["serial", "firmwareDetection"], data["serial"]["firmwareDetection"]
)
if "blockWhileDwelling" in data["serial"]:
s.setBoolean(
["serial", "blockWhileDwelling"], data["serial"]["blockWhileDwelling"]
)
if "useParityWorkaround" in data["serial"]:
value = data["serial"]["useParityWorkaround"]
if value in ("always", "detect", "never"):
s.set(["serial", "useParityWorkaround"], value)
if "sanityCheckTools" in data["serial"]:
s.setBoolean(
["serial", "sanityCheckTools"], data["serial"]["sanityCheckTools"]
)
if "sendM112OnError" in data["serial"]:
s.setBoolean(
["serial", "sendM112OnError"], data["serial"]["sendM112OnError"]
)
if "disableSdPrintingDetection" in data["serial"]:
s.setBoolean(
["serial", "disableSdPrintingDetection"],
data["serial"]["disableSdPrintingDetection"],
)
if "ackMax" in data["serial"]:
s.setInt(["serial", "ackMax"], data["serial"]["ackMax"])
if "logPositionOnPause" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnPause"], data["serial"]["logPositionOnPause"]
)
if "logPositionOnCancel" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnCancel"], data["serial"]["logPositionOnCancel"]
)
if "abortHeatupOnCancel" in data["serial"]:
s.setBoolean(
["serial", "abortHeatupOnCancel"], data["serial"]["abortHeatupOnCancel"]
)
if "maxTimeoutsIdle" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "idle"],
data["serial"]["maxTimeoutsIdle"],
)
if "maxTimeoutsPrinting" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "printing"],
data["serial"]["maxTimeoutsPrinting"],
)
if "maxTimeoutsLong" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "long"],
data["serial"]["maxTimeoutsLong"],
)
if "capAutoreportTemp" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_temp"],
data["serial"]["capAutoreportTemp"],
)
if "capAutoreportSdStatus" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_sdstatus"],
data["serial"]["capAutoreportSdStatus"],
)
if "capBusyProtocol" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "busy_protocol"],
data["serial"]["capBusyProtocol"],
)
if "capEmergencyParser" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "emergency_parser"],
data["serial"]["capEmergencyParser"],
)
oldLog = s.getBoolean(["serial", "log"])
if "log" in data["serial"]:
s.setBoolean(["serial", "log"], data["serial"]["log"])
if oldLog and not s.getBoolean(["serial", "log"]):
# disable debug logging to serial.log
logging.getLogger("SERIAL").debug("Disabling serial logging")
logging.getLogger("SERIAL").setLevel(logging.CRITICAL)
elif not oldLog and s.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
logging.getLogger("SERIAL").debug("Enabling serial logging")
if "temperature" in data:
if "profiles" in data["temperature"]:
result = []
for profile in data["temperature"]["profiles"]:
try:
profile["bed"] = int(profile["bed"])
profile["extruder"] = int(profile["extruder"])
except ValueError:
pass
result.append(profile)
s.set(["temperature", "profiles"], result)
if "cutoff" in data["temperature"]:
try:
cutoff = int(data["temperature"]["cutoff"])
if cutoff > 1:
s.setInt(["temperature", "cutoff"], cutoff)
except ValueError:
pass
if "sendAutomatically" in data["temperature"]:
s.setBoolean(
["temperature", "sendAutomatically"],
data["temperature"]["sendAutomatically"],
)
if "sendAutomaticallyAfter" in data["temperature"]:
s.setInt(
["temperature", "sendAutomaticallyAfter"],
data["temperature"]["sendAutomaticallyAfter"],
min=0,
max=30,
)
if "terminalFilters" in data:
s.set(["terminalFilters"], data["terminalFilters"])
if "system" in data:
if "actions" in data["system"]:
s.set(["system", "actions"], data["system"]["actions"])
if "events" in data["system"]:
s.set(["system", "events"], data["system"]["events"])
if "scripts" in data:
if "gcode" in data["scripts"] and isinstance(data["scripts"]["gcode"], dict):
for name, script in data["scripts"]["gcode"].items():
if name == "snippets":
continue
s.saveScript(
"gcode", name, script.replace("\r\n", "\n").replace("\r", "\n")
)
if "server" in data:
if "commands" in data["server"]:
if "systemShutdownCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemShutdownCommand"],
data["server"]["commands"]["systemShutdownCommand"],
)
if "systemRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemRestartCommand"],
data["server"]["commands"]["systemRestartCommand"],
)
if "serverRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "serverRestartCommand"],
data["server"]["commands"]["serverRestartCommand"],
)
if "diskspace" in data["server"]:
if "warning" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "warning"],
data["server"]["diskspace"]["warning"],
)
if "critical" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "critical"],
data["server"]["diskspace"]["critical"],
)
if "onlineCheck" in data["server"]:
if "enabled" in data["server"]["onlineCheck"]:
s.setBoolean(
["server", "onlineCheck", "enabled"],
data["server"]["onlineCheck"]["enabled"],
)
if "interval" in data["server"]["onlineCheck"]:
try:
interval = int(data["server"]["onlineCheck"]["interval"])
s.setInt(["server", "onlineCheck", "interval"], interval * 60)
except ValueError:
pass
if "host" in data["server"]["onlineCheck"]:
s.set(
["server", "onlineCheck", "host"],
data["server"]["onlineCheck"]["host"],
)
if "port" in data["server"]["onlineCheck"]:
s.setInt(
["server", "onlineCheck", "port"],
data["server"]["onlineCheck"]["port"],
)
if "name" in data["server"]["onlineCheck"]:
s.set(
["server", "onlineCheck", "name"],
data["server"]["onlineCheck"]["name"],
)
if "pluginBlacklist" in data["server"]:
if "enabled" in data["server"]["pluginBlacklist"]:
s.setBoolean(
["server", "pluginBlacklist", "enabled"],
data["server"]["pluginBlacklist"]["enabled"],
)
if "url" in data["server"]["pluginBlacklist"]:
s.set(
["server", "pluginBlacklist", "url"],
data["server"]["pluginBlacklist"]["url"],
)
if "ttl" in data["server"]["pluginBlacklist"]:
try:
ttl = int(data["server"]["pluginBlacklist"]["ttl"])
s.setInt(["server", "pluginBlacklist", "ttl"], ttl * 60)
except ValueError:
pass
if "allowFraming" in data["server"]:
s.setBoolean(["server", "allowFraming"], data["server"]["allowFraming"])
if "plugins" in data:
for plugin in octoprint.plugin.plugin_manager().get_implementations(
octoprint.plugin.SettingsPlugin
):
plugin_id = plugin._identifier
if plugin_id in data["plugins"]:
try:
plugin.on_settings_save(data["plugins"][plugin_id])
except TypeError:
logger.warning(
"Could not save settings for plugin {name} ({version}) since it called super(...)".format(
name=plugin._plugin_name, version=plugin._plugin_version
)
)
logger.warning(
"in a way which has issues due to OctoPrint's dynamic reloading after plugin operations."
)
logger.warning(
"Please contact the plugin's author and ask to update the plugin to use a direct call like"
)
logger.warning(
"octoprint.plugin.SettingsPlugin.on_settings_save(self, data) instead."
)
except Exception:
logger.exception(
"Could not save settings for plugin {name} ({version})".format(
version=plugin._plugin_version, name=plugin._plugin_name
),
extra=dict(plugin=plugin._identifier),
)
s.save(trigger_event=True)
|
def _saveSettings(data):
logger = logging.getLogger(__name__)
s = settings()
# NOTE: Remember to adjust the docs of the data model on the Settings API if anything
# is changed, added or removed here
if "folder" in data:
try:
if "uploads" in data["folder"]:
s.setBaseFolder("uploads", data["folder"]["uploads"])
if "timelapse" in data["folder"]:
s.setBaseFolder("timelapse", data["folder"]["timelapse"])
if "timelapseTmp" in data["folder"]:
s.setBaseFolder("timelapse_tmp", data["folder"]["timelapseTmp"])
if "logs" in data["folder"]:
s.setBaseFolder("logs", data["folder"]["logs"])
if "watched" in data["folder"]:
s.setBaseFolder("watched", data["folder"]["watched"])
except IOError:
return make_response("One of the configured folders is invalid", 400)
if "api" in data:
if "allowCrossOrigin" in data["api"]:
s.setBoolean(["api", "allowCrossOrigin"], data["api"]["allowCrossOrigin"])
if "appearance" in data:
if "name" in data["appearance"]:
s.set(["appearance", "name"], data["appearance"]["name"])
if "color" in data["appearance"]:
s.set(["appearance", "color"], data["appearance"]["color"])
if "colorTransparent" in data["appearance"]:
s.setBoolean(
["appearance", "colorTransparent"],
data["appearance"]["colorTransparent"],
)
if "colorIcon" in data["appearance"]:
s.setBoolean(["appearance", "colorIcon"], data["appearance"]["colorIcon"])
if "defaultLanguage" in data["appearance"]:
s.set(
["appearance", "defaultLanguage"], data["appearance"]["defaultLanguage"]
)
if "showFahrenheitAlso" in data["appearance"]:
s.setBoolean(
["appearance", "showFahrenheitAlso"],
data["appearance"]["showFahrenheitAlso"],
)
if "fuzzyTimes" in data["appearance"]:
s.setBoolean(["appearance", "fuzzyTimes"], data["appearance"]["fuzzyTimes"])
if "closeModalsWithClick" in data["appearance"]:
s.setBoolean(
["appearance", "closeModalsWithClick"],
data["appearance"]["closeModalsWithClick"],
)
if "printer" in data:
if "defaultExtrusionLength" in data["printer"]:
s.setInt(
["printerParameters", "defaultExtrusionLength"],
data["printer"]["defaultExtrusionLength"],
)
if "webcam" in data:
if "webcamEnabled" in data["webcam"]:
s.setBoolean(["webcam", "webcamEnabled"], data["webcam"]["webcamEnabled"])
if "timelapseEnabled" in data["webcam"]:
s.setBoolean(
["webcam", "timelapseEnabled"], data["webcam"]["timelapseEnabled"]
)
if "streamUrl" in data["webcam"]:
s.set(["webcam", "stream"], data["webcam"]["streamUrl"])
if "streamRatio" in data["webcam"] and data["webcam"]["streamRatio"] in (
"16:9",
"4:3",
):
s.set(["webcam", "streamRatio"], data["webcam"]["streamRatio"])
if "streamTimeout" in data["webcam"]:
s.setInt(["webcam", "streamTimeout"], data["webcam"]["streamTimeout"])
if "snapshotUrl" in data["webcam"]:
s.set(["webcam", "snapshot"], data["webcam"]["snapshotUrl"])
if "snapshotTimeout" in data["webcam"]:
s.setInt(["webcam", "snapshotTimeout"], data["webcam"]["snapshotTimeout"])
if "snapshotSslValidation" in data["webcam"]:
s.setBoolean(
["webcam", "snapshotSslValidation"],
data["webcam"]["snapshotSslValidation"],
)
if "ffmpegPath" in data["webcam"]:
s.set(["webcam", "ffmpeg"], data["webcam"]["ffmpegPath"])
if "bitrate" in data["webcam"]:
s.set(["webcam", "bitrate"], data["webcam"]["bitrate"])
if "ffmpegThreads" in data["webcam"]:
s.setInt(["webcam", "ffmpegThreads"], data["webcam"]["ffmpegThreads"])
if "ffmpegVideoCodec" in data["webcam"] and data["webcam"][
"ffmpegVideoCodec"
] in ("mpeg2video", "libx264"):
s.set(["webcam", "ffmpegVideoCodec"], data["webcam"]["ffmpegVideoCodec"])
if "watermark" in data["webcam"]:
s.setBoolean(["webcam", "watermark"], data["webcam"]["watermark"])
if "flipH" in data["webcam"]:
s.setBoolean(["webcam", "flipH"], data["webcam"]["flipH"])
if "flipV" in data["webcam"]:
s.setBoolean(["webcam", "flipV"], data["webcam"]["flipV"])
if "rotate90" in data["webcam"]:
s.setBoolean(["webcam", "rotate90"], data["webcam"]["rotate90"])
if "feature" in data:
if "temperatureGraph" in data["feature"]:
s.setBoolean(
["feature", "temperatureGraph"], data["feature"]["temperatureGraph"]
)
if "sdSupport" in data["feature"]:
s.setBoolean(["feature", "sdSupport"], data["feature"]["sdSupport"])
if "keyboardControl" in data["feature"]:
s.setBoolean(
["feature", "keyboardControl"], data["feature"]["keyboardControl"]
)
if "pollWatched" in data["feature"]:
s.setBoolean(["feature", "pollWatched"], data["feature"]["pollWatched"])
if "modelSizeDetection" in data["feature"]:
s.setBoolean(
["feature", "modelSizeDetection"], data["feature"]["modelSizeDetection"]
)
if "printStartConfirmation" in data["feature"]:
s.setBoolean(
["feature", "printStartConfirmation"],
data["feature"]["printStartConfirmation"],
)
if "printCancelConfirmation" in data["feature"]:
s.setBoolean(
["feature", "printCancelConfirmation"],
data["feature"]["printCancelConfirmation"],
)
if "g90InfluencesExtruder" in data["feature"]:
s.setBoolean(
["feature", "g90InfluencesExtruder"],
data["feature"]["g90InfluencesExtruder"],
)
if "autoUppercaseBlacklist" in data["feature"] and isinstance(
data["feature"]["autoUppercaseBlacklist"], (list, tuple)
):
s.set(
["feature", "autoUppercaseBlacklist"],
data["feature"]["autoUppercaseBlacklist"],
)
if "gcodeAnalysis" in data:
if "runAt" in data["gcodeAnalysis"]:
s.set(["gcodeAnalysis", "runAt"], data["gcodeAnalysis"]["runAt"])
if "serial" in data:
if "autoconnect" in data["serial"]:
s.setBoolean(["serial", "autoconnect"], data["serial"]["autoconnect"])
if "port" in data["serial"]:
s.set(["serial", "port"], data["serial"]["port"])
if "baudrate" in data["serial"]:
s.setInt(["serial", "baudrate"], data["serial"]["baudrate"])
if "exclusive" in data["serial"]:
s.setBoolean(["serial", "exclusive"], data["serial"]["exclusive"])
if "timeoutConnection" in data["serial"]:
s.setFloat(
["serial", "timeout", "connection"],
data["serial"]["timeoutConnection"],
min=1.0,
)
if "timeoutDetectionFirst" in data["serial"]:
s.setFloat(
["serial", "timeout", "detectionFirst"],
data["serial"]["timeoutDetectionFirst"],
min=1.0,
)
if "timeoutDetectionConsecutive" in data["serial"]:
s.setFloat(
["serial", "timeout", "detectionConsecutive"],
data["serial"]["timeoutDetectionConsecutive"],
min=1.0,
)
if "timeoutCommunication" in data["serial"]:
s.setFloat(
["serial", "timeout", "communication"],
data["serial"]["timeoutCommunicationFirst"],
min=1.0,
)
if "timeoutCommunicationBusy" in data["serial"]:
s.setFloat(
["serial", "timeout", "communicationBusy"],
data["serial"]["timeoutCommunicationBusy"],
min=1.0,
)
if "timeoutTemperature" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperature"],
data["serial"]["timeoutTemperature"],
min=1.0,
)
if "timeoutTemperatureTargetSet" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureTargetSet"],
data["serial"]["timeoutTemperatureTargetSet"],
min=1.0,
)
if "timeoutTemperatureAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureAutoreport"],
data["serial"]["timeoutTemperatureAutoreport"],
min=0.0,
)
if "timeoutSdStatus" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatus"],
data["serial"]["timeoutSdStatus"],
min=1.0,
)
if "timeoutSdStatusAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatusAutoreport"],
data["serial"]["timeoutSdStatusAutoreport"],
min=0.0,
)
if "timeoutBaudrateDetectionPause" in data["serial"]:
s.setFloat(
["serial", "timeout", "baudrateDetectionPause"],
data["serial"]["timeoutBaudrateDetectionPause"],
min=0.0,
)
if "timeoutPositionLogWait" in data["serial"]:
s.setFloat(
["serial", "timeout", "positionLogWait"],
data["serial"]["timeoutPositionLogWait"],
min=1.0,
)
if "additionalPorts" in data["serial"] and isinstance(
data["serial"]["additionalPorts"], (list, tuple)
):
s.set(["serial", "additionalPorts"], data["serial"]["additionalPorts"])
if "additionalBaudrates" in data["serial"] and isinstance(
data["serial"]["additionalBaudrates"], (list, tuple)
):
s.set(
["serial", "additionalBaudrates"], data["serial"]["additionalBaudrates"]
)
if "blacklistedPorts" in data["serial"] and isinstance(
data["serial"]["blacklistedPorts"], (list, tuple)
):
s.set(["serial", "blacklistedPorts"], data["serial"]["blacklistedPorts"])
if "blacklistedBaudrates" in data["serial"] and isinstance(
data["serial"]["blacklistedBaudrates"], (list, tuple)
):
s.set(
["serial", "blacklistedBaudrates"],
data["serial"]["blacklistedBaudrates"],
)
if "longRunningCommands" in data["serial"] and isinstance(
data["serial"]["longRunningCommands"], (list, tuple)
):
s.set(
["serial", "longRunningCommands"], data["serial"]["longRunningCommands"]
)
if "checksumRequiringCommands" in data["serial"] and isinstance(
data["serial"]["checksumRequiringCommands"], (list, tuple)
):
s.set(
["serial", "checksumRequiringCommands"],
data["serial"]["checksumRequiringCommands"],
)
if "blockedCommands" in data["serial"] and isinstance(
data["serial"]["blockedCommands"], (list, tuple)
):
s.set(["serial", "blockedCommands"], data["serial"]["blockedCommands"])
if "pausingCommands" in data["serial"] and isinstance(
data["serial"]["pausingCommands"], (list, tuple)
):
s.set(["serial", "pausingCommands"], data["serial"]["pausingCommands"])
if "emergencyCommands" in data["serial"] and isinstance(
data["serial"]["emergencyCommands"], (list, tuple)
):
s.set(["serial", "emergencyCommands"], data["serial"]["emergencyCommands"])
if "helloCommand" in data["serial"]:
s.set(["serial", "helloCommand"], data["serial"]["helloCommand"])
if "ignoreErrorsFromFirmware" in data["serial"]:
s.setBoolean(
["serial", "ignoreErrorsFromFirmware"],
data["serial"]["ignoreErrorsFromFirmware"],
)
if "disconnectOnErrors" in data["serial"]:
s.setBoolean(
["serial", "disconnectOnErrors"], data["serial"]["disconnectOnErrors"]
)
if "triggerOkForM29" in data["serial"]:
s.setBoolean(
["serial", "triggerOkForM29"], data["serial"]["triggerOkForM29"]
)
if "supportResendsWithoutOk" in data["serial"]:
value = data["serial"]["supportResendsWithoutOk"]
if value in ("always", "detect", "never"):
s.set(["serial", "supportResendsWithoutOk"], value)
if "waitForStart" in data["serial"]:
s.setBoolean(
["serial", "waitForStartOnConnect"], data["serial"]["waitForStart"]
)
if "alwaysSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "alwaysSendChecksum"], data["serial"]["alwaysSendChecksum"]
)
if "neverSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "neverSendChecksum"], data["serial"]["neverSendChecksum"]
)
if "sdRelativePath" in data["serial"]:
s.setBoolean(["serial", "sdRelativePath"], data["serial"]["sdRelativePath"])
if "sdAlwaysAvailable" in data["serial"]:
s.setBoolean(
["serial", "sdAlwaysAvailable"], data["serial"]["sdAlwaysAvailable"]
)
if "swallowOkAfterResend" in data["serial"]:
s.setBoolean(
["serial", "swallowOkAfterResend"],
data["serial"]["swallowOkAfterResend"],
)
if "repetierTargetTemp" in data["serial"]:
s.setBoolean(
["serial", "repetierTargetTemp"], data["serial"]["repetierTargetTemp"]
)
if "externalHeatupDetection" in data["serial"]:
s.setBoolean(
["serial", "externalHeatupDetection"],
data["serial"]["externalHeatupDetection"],
)
if "ignoreIdenticalResends" in data["serial"]:
s.setBoolean(
["serial", "ignoreIdenticalResends"],
data["serial"]["ignoreIdenticalResends"],
)
if "firmwareDetection" in data["serial"]:
s.setBoolean(
["serial", "firmwareDetection"], data["serial"]["firmwareDetection"]
)
if "blockWhileDwelling" in data["serial"]:
s.setBoolean(
["serial", "blockWhileDwelling"], data["serial"]["blockWhileDwelling"]
)
if "useParityWorkaround" in data["serial"]:
value = data["serial"]["useParityWorkaround"]
if value in ("always", "detect", "never"):
s.set(["serial", "useParityWorkaround"], value)
if "sanityCheckTools" in data["serial"]:
s.setBoolean(
["serial", "sanityCheckTools"], data["serial"]["sanityCheckTools"]
)
if "sendM112OnError" in data["serial"]:
s.setBoolean(
["serial", "sendM112OnError"], data["serial"]["sendM112OnError"]
)
if "disableSdPrintingDetection" in data["serial"]:
s.setBoolean(
["serial", "disableSdPrintingDetection"],
data["serial"]["disableSdPrintingDetection"],
)
if "ackMax" in data["serial"]:
s.setInt(["serial", "ackMax"], data["serial"]["ackMax"])
if "logPositionOnPause" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnPause"], data["serial"]["logPositionOnPause"]
)
if "logPositionOnCancel" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnCancel"], data["serial"]["logPositionOnCancel"]
)
if "abortHeatupOnCancel" in data["serial"]:
s.setBoolean(
["serial", "abortHeatupOnCancel"], data["serial"]["abortHeatupOnCancel"]
)
if "maxTimeoutsIdle" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "idle"],
data["serial"]["maxTimeoutsIdle"],
)
if "maxTimeoutsPrinting" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "printing"],
data["serial"]["maxTimeoutsPrinting"],
)
if "maxTimeoutsLong" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "long"],
data["serial"]["maxTimeoutsLong"],
)
if "capAutoreportTemp" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_temp"],
data["serial"]["capAutoreportTemp"],
)
if "capAutoreportSdStatus" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_sdstatus"],
data["serial"]["capAutoreportSdStatus"],
)
if "capBusyProtocol" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "busy_protocol"],
data["serial"]["capBusyProtocol"],
)
if "capEmergencyParser" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "emergency_parser"],
data["serial"]["capEmergencyParser"],
)
oldLog = s.getBoolean(["serial", "log"])
if "log" in data["serial"]:
s.setBoolean(["serial", "log"], data["serial"]["log"])
if oldLog and not s.getBoolean(["serial", "log"]):
# disable debug logging to serial.log
logging.getLogger("SERIAL").debug("Disabling serial logging")
logging.getLogger("SERIAL").setLevel(logging.CRITICAL)
elif not oldLog and s.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
logging.getLogger("SERIAL").debug("Enabling serial logging")
if "temperature" in data:
if "profiles" in data["temperature"]:
result = []
for profile in data["temperature"]["profiles"]:
try:
profile["bed"] = int(profile["bed"])
profile["extruder"] = int(profile["extruder"])
except ValueError:
pass
result.append(profile)
s.set(["temperature", "profiles"], result)
if "cutoff" in data["temperature"]:
try:
cutoff = int(data["temperature"]["cutoff"])
if cutoff > 1:
s.setInt(["temperature", "cutoff"], cutoff)
except ValueError:
pass
if "sendAutomatically" in data["temperature"]:
s.setBoolean(
["temperature", "sendAutomatically"],
data["temperature"]["sendAutomatically"],
)
if "sendAutomaticallyAfter" in data["temperature"]:
s.setInt(
["temperature", "sendAutomaticallyAfter"],
data["temperature"]["sendAutomaticallyAfter"],
min=0,
max=30,
)
if "terminalFilters" in data:
s.set(["terminalFilters"], data["terminalFilters"])
if "system" in data:
if "actions" in data["system"]:
s.set(["system", "actions"], data["system"]["actions"])
if "events" in data["system"]:
s.set(["system", "events"], data["system"]["events"])
if "scripts" in data:
if "gcode" in data["scripts"] and isinstance(data["scripts"]["gcode"], dict):
for name, script in data["scripts"]["gcode"].items():
if name == "snippets":
continue
s.saveScript(
"gcode", name, script.replace("\r\n", "\n").replace("\r", "\n")
)
if "server" in data:
if "commands" in data["server"]:
if "systemShutdownCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemShutdownCommand"],
data["server"]["commands"]["systemShutdownCommand"],
)
if "systemRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemRestartCommand"],
data["server"]["commands"]["systemRestartCommand"],
)
if "serverRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "serverRestartCommand"],
data["server"]["commands"]["serverRestartCommand"],
)
if "diskspace" in data["server"]:
if "warning" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "warning"],
data["server"]["diskspace"]["warning"],
)
if "critical" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "critical"],
data["server"]["diskspace"]["critical"],
)
if "onlineCheck" in data["server"]:
if "enabled" in data["server"]["onlineCheck"]:
s.setBoolean(
["server", "onlineCheck", "enabled"],
data["server"]["onlineCheck"]["enabled"],
)
if "interval" in data["server"]["onlineCheck"]:
try:
interval = int(data["server"]["onlineCheck"]["interval"])
s.setInt(["server", "onlineCheck", "interval"], interval * 60)
except ValueError:
pass
if "host" in data["server"]["onlineCheck"]:
s.set(
["server", "onlineCheck", "host"],
data["server"]["onlineCheck"]["host"],
)
if "port" in data["server"]["onlineCheck"]:
s.setInt(
["server", "onlineCheck", "port"],
data["server"]["onlineCheck"]["port"],
)
if "name" in data["server"]["onlineCheck"]:
s.set(
["server", "onlineCheck", "name"],
data["server"]["onlineCheck"]["name"],
)
if "pluginBlacklist" in data["server"]:
if "enabled" in data["server"]["pluginBlacklist"]:
s.setBoolean(
["server", "pluginBlacklist", "enabled"],
data["server"]["pluginBlacklist"]["enabled"],
)
if "url" in data["server"]["pluginBlacklist"]:
s.set(
["server", "pluginBlacklist", "url"],
data["server"]["pluginBlacklist"]["url"],
)
if "ttl" in data["server"]["pluginBlacklist"]:
try:
ttl = int(data["server"]["pluginBlacklist"]["ttl"])
s.setInt(["server", "pluginBlacklist", "ttl"], ttl * 60)
except ValueError:
pass
if "allowFraming" in data["server"]:
s.setBoolean(["server", "allowFraming"], data["server"]["allowFraming"])
if "plugins" in data:
for plugin in octoprint.plugin.plugin_manager().get_implementations(
octoprint.plugin.SettingsPlugin
):
plugin_id = plugin._identifier
if plugin_id in data["plugins"]:
try:
plugin.on_settings_save(data["plugins"][plugin_id])
except TypeError:
logger.warning(
"Could not save settings for plugin {name} ({version}) since it called super(...)".format(
name=plugin._plugin_name, version=plugin._plugin_version
)
)
logger.warning(
"in a way which has issues due to OctoPrint's dynamic reloading after plugin operations."
)
logger.warning(
"Please contact the plugin's author and ask to update the plugin to use a direct call like"
)
logger.warning(
"octoprint.plugin.SettingsPlugin.on_settings_save(self, data) instead."
)
except Exception:
logger.exception(
"Could not save settings for plugin {name} ({version})".format(
version=plugin._plugin_version, name=plugin._plugin_name
),
extra=dict(plugin=plugin._identifier),
)
s.save(trigger_event=True)
|
https://github.com/OctoPrint/OctoPrint/issues/3679
|
2020-08-06 16:30:18,806 - tornado.application - ERROR - Uncaught exception POST /api/settings (127.0.0.1)
HTTPServerRequest(protocol='http', host='localhost:5000', method='POST', uri='/api/settings', version='HTTP/1.1', remote_ip='127.0.0.1')
Traceback (most recent call last):
File "D:\Code\OctoPrint\devenv37\lib\site-packages\tornado\web.py", line 1590, in _execute
result = method(*self.path_args, **self.path_kwargs)
File "D:\Code\OctoPrint\OctoPrint\src\octoprint\server\util\tornado.py", line 533, in _handle_method
self._fallback(self.request, body)
File "D:\Code\OctoPrint\OctoPrint\src\octoprint\server\util\tornado.py", line 646, in __call__
WsgiInputContainer.environ(request, body), start_response)
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 2450, in wsgi_app
response = self.handle_exception(e)
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 1867, in handle_exception
reraise(exc_type, exc_value, tb)
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\_compat.py", line 39, in reraise
raise value
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 2447, in wsgi_app
response = self.full_dispatch_request()
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 1952, in full_dispatch_request
rv = self.handle_user_exception(e)
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 1821, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\_compat.py", line 39, in reraise
raise value
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 1950, in full_dispatch_request
rv = self.dispatch_request()
File "D:\Code\OctoPrint\devenv37\lib\site-packages\flask\app.py", line 1936, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "D:\Code\OctoPrint\OctoPrint\src\octoprint\server\util\flask.py", line 1315, in decorated_view
return func(*args, **kwargs)
File "D:\Code\OctoPrint\OctoPrint\src\octoprint\vendor\flask_principal.py", line 199, in _decorated
rv = f(*args, **kw)
File "D:\Code\OctoPrint\OctoPrint\src\octoprint\server\api\settings.py", line 320, in setSettings
response = _saveSettings(data)
File "D:\Code\OctoPrint\OctoPrint\src\octoprint\server\api\settings.py", line 448, in _saveSettings
if "timeoutCommunication" in data["serial"]: s.setFloat(["serial", "timeout", "communication"], data["serial"]["timeoutCommunicationFirst"], min=1.0)
KeyError: 'timeoutCommunicationFirst'
|
KeyError
|
def run(self):
if not self._allow_root:
self._check_for_root()
if self._settings is None:
self._settings = settings()
if not self._settings.getBoolean(["server", "ignoreIncompleteStartup"]):
self._settings.setBoolean(["server", "incompleteStartup"], True)
self._settings.save()
if self._plugin_manager is None:
self._plugin_manager = octoprint.plugin.plugin_manager()
global app
global babel
global printer
global printerProfileManager
global fileManager
global slicingManager
global analysisQueue
global userManager
global permissionManager
global groupManager
global eventManager
global loginManager
global pluginManager
global pluginLifecycleManager
global preemptiveCache
global jsonEncoder
global jsonDecoder
global connectivityChecker
global debug
global safe_mode
from tornado.ioloop import IOLoop
from tornado.web import Application
debug = self._debug
safe_mode = self._safe_mode
if self._v6_only and not octoprint.util.net.HAS_V6:
raise RuntimeError("IPv6 only mode configured but system doesn't support IPv6")
if self._host is None:
host = self._settings.get(["server", "host"])
if host is None:
if octoprint.util.net.HAS_V6:
host = "::"
else:
host = "0.0.0.0"
self._host = host
if ":" in self._host and not octoprint.util.net.HAS_V6:
raise RuntimeError(
"IPv6 host address {!r} configured but system doesn't support IPv6".format(
self._host
)
)
if self._port is None:
self._port = self._settings.getInt(["server", "port"])
if self._port is None:
self._port = 5000
self._logger = logging.getLogger(__name__)
self._setup_heartbeat_logging()
pluginManager = self._plugin_manager
# monkey patch/fix some stuff
util.tornado.fix_json_encode()
util.tornado.fix_websocket_check_origin()
util.flask.fix_flask_jsonify()
self._setup_mimetypes()
additional_translation_folders = []
if not safe_mode:
additional_translation_folders += [self._settings.getBaseFolder("translations")]
util.flask.enable_additional_translations(
additional_folders=additional_translation_folders
)
# setup app
self._setup_app(app)
# setup i18n
self._setup_i18n(app)
if self._settings.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
# start the intermediary server
self._start_intermediary_server()
### IMPORTANT!
###
### Best do not start any subprocesses until the intermediary server shuts down again or they MIGHT inherit the
### open port and prevent us from firing up Tornado later.
###
### The intermediary server's socket should have the CLOSE_EXEC flag (or its equivalent) set where possible, but
### we can only do that if fcntl is available or we are on Windows, so better safe than sorry.
###
### See also issues #2035 and #2090
# then initialize the plugin manager
pluginManager.reload_plugins(startup=True, initialize_implementations=False)
printerProfileManager = PrinterProfileManager()
eventManager = self._event_manager
analysis_queue_factories = dict(
gcode=octoprint.filemanager.analysis.GcodeAnalysisQueue
)
analysis_queue_hooks = pluginManager.get_hooks(
"octoprint.filemanager.analysis.factory"
)
for name, hook in analysis_queue_hooks.items():
try:
additional_factories = hook()
analysis_queue_factories.update(**additional_factories)
except Exception:
self._logger.exception(
"Error while processing analysis queues from {}".format(name),
extra=dict(plugin=name),
)
analysisQueue = octoprint.filemanager.analysis.AnalysisQueue(
analysis_queue_factories
)
slicingManager = octoprint.slicing.SlicingManager(
self._settings.getBaseFolder("slicingProfiles"), printerProfileManager
)
storage_managers = dict()
storage_managers[octoprint.filemanager.FileDestinations.LOCAL] = (
octoprint.filemanager.storage.LocalFileStorage(
self._settings.getBaseFolder("uploads")
)
)
fileManager = octoprint.filemanager.FileManager(
analysisQueue,
slicingManager,
printerProfileManager,
initial_storage_managers=storage_managers,
)
pluginLifecycleManager = LifecycleManager(pluginManager)
preemptiveCache = PreemptiveCache(
os.path.join(
self._settings.getBaseFolder("data"), "preemptive_cache_config.yaml"
)
)
JsonEncoding.add_encoder(users.User, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(groups.Group, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(permissions.OctoPrintPermission, lambda obj: obj.as_dict())
# start regular check if we are connected to the internet
def on_connectivity_change(old_value, new_value):
eventManager.fire(
events.Events.CONNECTIVITY_CHANGED,
payload=dict(old=old_value, new=new_value),
)
connectivityChecker = self._connectivity_checker
def on_settings_update(*args, **kwargs):
# make sure our connectivity checker runs with the latest settings
connectivityEnabled = self._settings.getBoolean(
["server", "onlineCheck", "enabled"]
)
connectivityInterval = self._settings.getInt(
["server", "onlineCheck", "interval"]
)
connectivityHost = self._settings.get(["server", "onlineCheck", "host"])
connectivityPort = self._settings.getInt(["server", "onlineCheck", "port"])
connectivityName = self._settings.get(["server", "onlineCheck", "name"])
if (
connectivityChecker.enabled != connectivityEnabled
or connectivityChecker.interval != connectivityInterval
or connectivityChecker.host != connectivityHost
or connectivityChecker.port != connectivityPort
or connectivityChecker.name != connectivityName
):
connectivityChecker.enabled = connectivityEnabled
connectivityChecker.interval = connectivityInterval
connectivityChecker.host = connectivityHost
connectivityChecker.port = connectivityPort
connectivityChecker.name = connectivityName
connectivityChecker.check_immediately()
eventManager.subscribe(events.Events.SETTINGS_UPDATED, on_settings_update)
components = dict(
plugin_manager=pluginManager,
printer_profile_manager=printerProfileManager,
event_bus=eventManager,
analysis_queue=analysisQueue,
slicing_manager=slicingManager,
file_manager=fileManager,
plugin_lifecycle_manager=pluginLifecycleManager,
preemptive_cache=preemptiveCache,
json_encoder=jsonEncoder,
json_decoder=jsonDecoder,
connectivity_checker=connectivityChecker,
environment_detector=self._environment_detector,
)
# ~~ setup access control
# get additional permissions from plugins
self._setup_plugin_permissions()
# create group manager instance
group_manager_factories = pluginManager.get_hooks("octoprint.access.groups.factory")
for name, factory in group_manager_factories.items():
try:
groupManager = factory(components, self._settings)
if groupManager is not None:
self._logger.debug(
"Created group manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating group manager instance from factory {}".format(
name
)
)
else:
group_manager_name = self._settings.get(["accessControl", "groupManager"])
try:
clazz = octoprint.util.get_class(group_manager_name)
groupManager = clazz()
except AttributeError:
self._logger.exception(
"Could not instantiate group manager {}, "
"falling back to FilebasedGroupManager!".format(group_manager_name)
)
groupManager = octoprint.access.groups.FilebasedGroupManager()
components.update(dict(group_manager=groupManager))
# create user manager instance
user_manager_factories = pluginManager.get_hooks(
"octoprint.users.factory"
) # legacy, set first so that new wins
user_manager_factories.update(
pluginManager.get_hooks("octoprint.access.users.factory")
)
for name, factory in user_manager_factories.items():
try:
userManager = factory(components, self._settings)
if userManager is not None:
self._logger.debug(
"Created user manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating user manager instance from factory {}".format(
name
),
extra=dict(plugin=name),
)
else:
user_manager_name = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(user_manager_name)
userManager = clazz(groupManager)
except Exception:
self._logger.exception(
"Could not instantiate user manager {}, "
"falling back to FilebasedUserManager!".format(user_manager_name)
)
userManager = octoprint.access.users.FilebasedUserManager(groupManager)
finally:
userManager.enabled = self._settings.getBoolean(
["accessControl", "enabled"]
)
components.update(dict(user_manager=userManager))
# create printer instance
printer_factories = pluginManager.get_hooks("octoprint.printer.factory")
for name, factory in printer_factories.items():
try:
printer = factory(components)
if printer is not None:
self._logger.debug(
"Created printer instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating printer instance from factory {}".format(name),
extra=dict(plugin=name),
)
else:
printer = Printer(fileManager, analysisQueue, printerProfileManager)
components.update(dict(printer=printer))
def octoprint_plugin_inject_factory(name, implementation):
"""Factory for injections for all OctoPrintPlugins"""
if not isinstance(implementation, octoprint.plugin.OctoPrintPlugin):
return None
components_copy = dict(components)
if "printer" in components:
import wrapt
import functools
def tagwrap(f):
@functools.wraps(f)
def wrapper(*args, **kwargs):
tags = kwargs.get("tags", set()) | {
"source:plugin",
"plugin:{}".format(name),
}
kwargs["tags"] = tags
return f(*args, **kwargs)
setattr(wrapper, "__tagwrapped__", True)
return wrapper
class TaggedFuncsPrinter(wrapt.ObjectProxy):
def __getattribute__(self, attr):
__wrapped__ = super(TaggedFuncsPrinter, self).__getattribute__(
"__wrapped__"
)
if attr == "__wrapped__":
return __wrapped__
item = getattr(__wrapped__, attr)
if (
callable(item)
and (
"tags" in item.__code__.co_varnames
or "kwargs" in item.__code__.co_varnames
)
and not getattr(item, "__tagwrapped__", False)
):
return tagwrap(item)
else:
return item
components_copy["printer"] = TaggedFuncsPrinter(components["printer"])
props = dict()
props.update(components_copy)
props.update(
dict(data_folder=os.path.join(self._settings.getBaseFolder("data"), name))
)
return props
def settings_plugin_inject_factory(name, implementation):
"""Factory for additional injections/initializations depending on plugin type"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
default_settings_overlay = dict(plugins=dict())
default_settings_overlay["plugins"][name] = (
implementation.get_settings_defaults()
)
self._settings.add_overlay(default_settings_overlay, at_end=True)
plugin_settings = octoprint.plugin.plugin_settings_for_settings_plugin(
name, implementation
)
if plugin_settings is None:
return
return dict(settings=plugin_settings)
def settings_plugin_config_migration_and_cleanup(identifier, implementation):
"""Take care of migrating and cleaning up any old settings"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
settings_version = implementation.get_settings_version()
settings_migrator = implementation.on_settings_migrate
if settings_version is not None and settings_migrator is not None:
stored_version = implementation._settings.get_int(
[octoprint.plugin.SettingsPlugin.config_version_key]
)
if stored_version is None or stored_version < settings_version:
settings_migrator(settings_version, stored_version)
implementation._settings.set_int(
[octoprint.plugin.SettingsPlugin.config_version_key],
settings_version,
force=True,
)
implementation.on_settings_cleanup()
implementation._settings.save()
implementation.on_settings_initialized()
custom_events_hooks = pluginManager.get_hooks(
"octoprint.events.register_custom_events"
)
for name, hook in custom_events_hooks.items():
try:
result = hook()
if isinstance(result, (list, tuple)):
for event in result:
constant, value = octoprint.events.Events.register_event(
event, prefix="plugin_{}_".format(name)
)
self._logger.debug(
'Registered event {} of plugin {} as Events.{} = "{}"'.format(
event, name, constant, value
)
)
except Exception:
self._logger.exception(
"Error while retrieving custom event list from plugin {}".format(name),
extra=dict(plugin=name),
)
pluginManager.implementation_inject_factories = [
octoprint_plugin_inject_factory,
settings_plugin_inject_factory,
]
pluginManager.initialize_implementations()
settingsPlugins = pluginManager.get_implementations(octoprint.plugin.SettingsPlugin)
for implementation in settingsPlugins:
try:
settings_plugin_config_migration_and_cleanup(
implementation._identifier, implementation
)
except Exception:
self._logger.exception(
"Error while trying to migrate settings for "
"plugin {}, ignoring it".format(implementation._identifier),
extra=dict(plugin=implementation._identifier),
)
pluginManager.implementation_post_inits = [
settings_plugin_config_migration_and_cleanup
]
pluginManager.log_all_plugins()
# log environment data now
self._environment_detector.log_detected_environment()
# initialize file manager and register it for changes in the registered plugins
fileManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: fileManager.reload_plugins()
)
# initialize slicing manager and register it for changes in the registered plugins
slicingManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: slicingManager.reload_slicers()
)
# setup jinja2
self._setup_jinja2()
# setup assets
self._setup_assets()
# configure timelapse
octoprint.timelapse.valid_timelapse("test")
octoprint.timelapse.configure_timelapse()
# setup command triggers
events.CommandTrigger(printer)
if self._debug:
events.DebugEventListener()
# setup login manager
self._setup_login_manager()
# register API blueprint
self._setup_blueprints()
## Tornado initialization starts here
ioloop = IOLoop()
ioloop.install()
enable_cors = settings().getBoolean(["api", "allowCrossOrigin"])
self._router = SockJSRouter(
self._create_socket_connection,
"/sockjs",
session_kls=util.sockjs.ThreadSafeSession,
user_settings=dict(
websocket_allow_origin="*" if enable_cors else "",
jsessionid=False,
sockjs_url="../../static/js/lib/sockjs.min.js",
),
)
upload_suffixes = dict(
name=self._settings.get(["server", "uploads", "nameSuffix"]),
path=self._settings.get(["server", "uploads", "pathSuffix"]),
)
def mime_type_guesser(path):
from octoprint.filemanager import get_mime_type
return get_mime_type(path)
def download_name_generator(path):
metadata = fileManager.get_metadata("local", path)
if metadata and "display" in metadata:
return metadata["display"]
download_handler_kwargs = dict(as_attachment=True, allow_client_caching=False)
additional_mime_types = dict(mime_type_guesser=mime_type_guesser)
##~~ Permission validators
access_validators_from_plugins = []
for plugin, hook in pluginManager.get_hooks(
"octoprint.server.http.access_validator"
).items():
try:
access_validators_from_plugins.append(
util.tornado.access_validation_factory(app, hook)
)
except Exception:
self._logger.exception(
"Error while adding tornado access validator from plugin {}".format(
plugin
),
extra=dict(plugin=plugin),
)
access_validator = dict(
access_validation=util.tornado.validation_chain(*access_validators_from_plugins)
)
timelapse_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.TIMELAPSE_LIST
),
] + access_validators_from_plugins
download_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.FILES_DOWNLOAD
),
] + access_validators_from_plugins
log_validators = [
util.tornado.access_validation_factory(
app,
util.flask.permission_validator,
permissions.Permissions.PLUGIN_LOGGING_MANAGE,
),
] + access_validators_from_plugins
camera_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.WEBCAM
),
] + access_validators_from_plugins
timelapse_permission_validator = dict(
access_validation=util.tornado.validation_chain(*timelapse_validators)
)
download_permission_validator = dict(
access_validation=util.tornado.validation_chain(*download_validators)
)
log_permission_validator = dict(
access_validation=util.tornado.validation_chain(*log_validators)
)
camera_permission_validator = dict(
access_validation=util.tornado.validation_chain(*camera_validators)
)
no_hidden_files_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path), status_code=404
)
)
timelapse_path_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path)
and octoprint.timelapse.valid_timelapse(path),
status_code=404,
)
)
def joined_dict(*dicts):
if not len(dicts):
return dict()
joined = dict()
for d in dicts:
joined.update(d)
return joined
util.tornado.RequestlessExceptionLoggingMixin.LOG_REQUEST = debug
util.tornado.CorsSupportMixin.ENABLE_CORS = enable_cors
server_routes = self._router.urls + [
# various downloads
# .mpg and .mp4 timelapses:
(
r"/downloads/timelapse/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("timelapse")),
timelapse_permission_validator,
download_handler_kwargs,
timelapse_path_validator,
),
),
(
r"/downloads/files/local/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("uploads"),
as_attachment=True,
name_generator=download_name_generator,
),
download_permission_validator,
download_handler_kwargs,
no_hidden_files_validator,
additional_mime_types,
),
),
(
r"/downloads/logs/([^/]*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("logs"),
mime_type_guesser=lambda *args, **kwargs: "text/plain",
),
download_handler_kwargs,
log_permission_validator,
),
),
# camera snapshot
(
r"/downloads/camera/current",
util.tornado.UrlProxyHandler,
joined_dict(
dict(
url=self._settings.get(["webcam", "snapshot"]), as_attachment=True
),
camera_permission_validator,
),
),
# generated webassets
(
r"/static/webassets/(.*)",
util.tornado.LargeResponseHandler,
dict(
path=os.path.join(
self._settings.getBaseFolder("generated"), "webassets"
),
is_pre_compressed=True,
),
),
# online indicators - text file with "online" as content and a transparent gif
(r"/online.txt", util.tornado.StaticDataHandler, dict(data="online\n")),
(
r"/online.gif",
util.tornado.StaticDataHandler,
dict(
data=bytes(
base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
),
content_type="image/gif",
),
),
# deprecated endpoints
(
r"/api/logs",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs"),
),
(
r"/api/logs/(.*)",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs/{0}"),
),
]
# fetch additional routes from plugins
for name, hook in pluginManager.get_hooks("octoprint.server.http.routes").items():
try:
result = hook(list(server_routes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"server routes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if not isinstance(entry[0], basestring):
continue
if not isinstance(entry[2], dict):
continue
route, handler, kwargs = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding additional route {route} handled by handler {handler} and with additional arguments {kwargs!r}".format(
**locals()
)
)
server_routes.append((route, handler, kwargs))
headers = {
"X-Robots-Tag": "noindex, nofollow, noimageindex",
"X-Content-Type-Options": "nosniff",
}
if not settings().getBoolean(["server", "allowFraming"]):
headers["X-Frame-Options"] = "sameorigin"
removed_headers = ["Server"]
server_routes.append(
(
r".*",
util.tornado.UploadStorageFallbackHandler,
dict(
fallback=util.tornado.WsgiInputContainer(
app.wsgi_app, headers=headers, removed_headers=removed_headers
),
file_prefix="octoprint-file-upload-",
file_suffix=".tmp",
suffixes=upload_suffixes,
),
)
)
transforms = [
util.tornado.GlobalHeaderTransform.for_headers(
"OctoPrintGlobalHeaderTransform",
headers=headers,
removed_headers=removed_headers,
)
]
self._tornado_app = Application(handlers=server_routes, transforms=transforms)
max_body_sizes = [
(
"POST",
r"/api/files/([^/]*)",
self._settings.getInt(["server", "uploads", "maxSize"]),
),
("POST", r"/api/languages", 5 * 1024 * 1024),
]
# allow plugins to extend allowed maximum body sizes
for name, hook in pluginManager.get_hooks("octoprint.server.http.bodysize").items():
try:
result = hook(list(max_body_sizes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"upload sizes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if (
not entry[0]
in util.tornado.UploadStorageFallbackHandler.BODY_METHODS
):
continue
if not isinstance(entry[2], int):
continue
method, route, size = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding maximum body size of {size}B for {method} requests to {route})".format(
**locals()
)
)
max_body_sizes.append((method, route, size))
self._stop_intermediary_server()
# initialize and bind the server
trusted_downstream = self._settings.get(
["server", "reverseProxy", "trustedDownstream"]
)
if not isinstance(trusted_downstream, list):
self._logger.warning(
"server.reverseProxy.trustedDownstream is not a list, skipping"
)
trusted_downstreams = []
server_kwargs = dict(
max_body_sizes=max_body_sizes,
default_max_body_size=self._settings.getInt(["server", "maxSize"]),
xheaders=True,
trusted_downstream=trusted_downstream,
)
if sys.platform == "win32":
# set 10min idle timeout under windows to hopefully make #2916 less likely
server_kwargs.update(dict(idle_connection_timeout=600))
self._server = util.tornado.CustomHTTPServer(self._tornado_app, **server_kwargs)
listening_address = self._host
if self._host == "::" and not self._v6_only:
# special case - tornado only listens on v4 _and_ v6 if we use None as address
listening_address = None
self._server.listen(self._port, address=listening_address)
### From now on it's ok to launch subprocesses again
eventManager.fire(events.Events.STARTUP)
# analysis backlog
fileManager.process_backlog()
# auto connect
if self._settings.getBoolean(["serial", "autoconnect"]):
self._logger.info(
"Autoconnect on startup is configured, trying to connect to the printer..."
)
try:
(port, baudrate) = (
self._settings.get(["serial", "port"]),
self._settings.getInt(["serial", "baudrate"]),
)
printer_profile = printerProfileManager.get_default()
connectionOptions = printer.__class__.get_connection_options()
if port in connectionOptions["ports"] or port == "AUTO" or port is None:
self._logger.info(
"Trying to connect to configured serial port {}".format(port)
)
printer.connect(
port=port,
baudrate=baudrate,
profile=printer_profile["id"]
if "id" in printer_profile
else "_default",
)
else:
self._logger.info(
"Could not find configured serial port {} in the system, cannot automatically connect to a non existing printer. Is it plugged in and booted up yet?"
)
except Exception:
self._logger.exception(
"Something went wrong while attempting to automatically connect to the printer"
)
# start up watchdogs
try:
watched = self._settings.getBaseFolder("watched")
watchdog_handler = util.watchdog.GcodeWatchdogHandler(fileManager, printer)
watchdog_handler.initial_scan(watched)
if self._settings.getBoolean(["feature", "pollWatched"]):
# use less performant polling observer if explicitly configured
observer = PollingObserver()
else:
# use os default
observer = Observer()
observer.schedule(watchdog_handler, watched, recursive=True)
observer.start()
except Exception:
self._logger.exception("Error starting watched folder observer")
# run our startup plugins
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_startup",
args=(self._host, self._port),
sorting_context="StartupPlugin.on_startup",
)
def call_on_startup(name, plugin):
implementation = plugin.get_implementation(octoprint.plugin.StartupPlugin)
if implementation is None:
return
implementation.on_startup(self._host, self._port)
pluginLifecycleManager.add_callback("enabled", call_on_startup)
# prepare our after startup function
def on_after_startup():
if self._host == "::":
if self._v6_only:
# only v6
self._logger.info(
"Listening on http://[::]:{port}".format(port=self._port)
)
else:
# all v4 and v6
self._logger.info(
"Listening on http://0.0.0.0:{port} and http://[::]:{port}".format(
port=self._port
)
)
else:
self._logger.info(
"Listening on http://{}:{}".format(
self._host if not ":" in self._host else "[" + self._host + "]",
self._port,
)
)
if safe_mode and self._settings.getBoolean(["server", "startOnceInSafeMode"]):
self._logger.info(
"Server started successfully in safe mode as requested from config, removing flag"
)
self._settings.setBoolean(["server", "startOnceInSafeMode"], False)
self._settings.save()
# now this is somewhat ugly, but the issue is the following: startup plugins might want to do things for
# which they need the server to be already alive (e.g. for being able to resolve urls, such as favicons
# or service xmls or the like). While they are working though the ioloop would block. Therefore we'll
# create a single use thread in which to perform our after-startup-tasks, start that and hand back
# control to the ioloop
def work():
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_after_startup",
sorting_context="StartupPlugin.on_after_startup",
)
def call_on_after_startup(name, plugin):
implementation = plugin.get_implementation(
octoprint.plugin.StartupPlugin
)
if implementation is None:
return
implementation.on_after_startup()
pluginLifecycleManager.add_callback("enabled", call_on_after_startup)
# if there was a rogue plugin we wouldn't even have made it here, so remove startup triggered safe mode
# flag again...
self._settings.setBoolean(["server", "incompleteStartup"], False)
self._settings.save()
# make a backup of the current config
self._settings.backup(ext="backup")
# when we are through with that we also run our preemptive cache
if settings().getBoolean(["devel", "cache", "preemptive"]):
self._execute_preemptive_flask_caching(preemptiveCache)
import threading
threading.Thread(target=work).start()
ioloop.add_callback(on_after_startup)
# prepare our shutdown function
def on_shutdown():
# will be called on clean system exit and shutdown the watchdog observer and call the on_shutdown methods
# on all registered ShutdownPlugins
self._logger.info("Shutting down...")
observer.stop()
observer.join()
eventManager.fire(events.Events.SHUTDOWN)
self._logger.info("Calling on_shutdown on plugins")
octoprint.plugin.call_plugin(
octoprint.plugin.ShutdownPlugin,
"on_shutdown",
sorting_context="ShutdownPlugin.on_shutdown",
)
# wait for shutdown event to be processed, but maximally for 15s
event_timeout = 15.0
if eventManager.join(timeout=event_timeout):
self._logger.warning(
"Event loop was still busy processing after {}s, shutting down anyhow".format(
event_timeout
)
)
if self._octoprint_daemon is not None:
self._logger.info("Cleaning up daemon pidfile")
self._octoprint_daemon.terminated()
self._logger.info("Goodbye!")
atexit.register(on_shutdown)
def sigterm_handler(*args, **kwargs):
# will stop tornado on SIGTERM, making the program exit cleanly
def shutdown_tornado():
self._logger.debug("Shutting down tornado's IOLoop...")
ioloop.stop()
self._logger.debug("SIGTERM received...")
ioloop.add_callback_from_signal(shutdown_tornado)
signal.signal(signal.SIGTERM, sigterm_handler)
try:
# this is the main loop - as long as tornado is running, OctoPrint is running
ioloop.start()
self._logger.debug("Tornado's IOLoop stopped")
except (KeyboardInterrupt, SystemExit):
pass
except Exception:
self._logger.fatal(
"Now that is embarrassing... Something really really went wrong here. Please report this including the stacktrace below in OctoPrint's bugtracker. Thanks!"
)
self._logger.exception("Stacktrace follows:")
|
def run(self):
if not self._allow_root:
self._check_for_root()
if self._settings is None:
self._settings = settings()
if not self._settings.getBoolean(["server", "ignoreIncompleteStartup"]):
self._settings.setBoolean(["server", "incompleteStartup"], True)
self._settings.save()
if self._plugin_manager is None:
self._plugin_manager = octoprint.plugin.plugin_manager()
global app
global babel
global printer
global printerProfileManager
global fileManager
global slicingManager
global analysisQueue
global userManager
global permissionManager
global groupManager
global eventManager
global loginManager
global pluginManager
global pluginLifecycleManager
global preemptiveCache
global jsonEncoder
global jsonDecoder
global connectivityChecker
global debug
global safe_mode
from tornado.ioloop import IOLoop
from tornado.web import Application
debug = self._debug
safe_mode = self._safe_mode
if self._v6_only and not octoprint.util.net.HAS_V6:
raise RuntimeError("IPv6 only mode configured but system doesn't support IPv6")
if self._host is None:
host = self._settings.get(["server", "host"])
if host is None:
if octoprint.util.net.HAS_V6:
host = "::"
else:
host = "0.0.0.0"
self._host = host
if ":" in self._host and not octoprint.util.net.HAS_V6:
raise RuntimeError(
"IPv6 host address {!r} configured but system doesn't support IPv6".format(
self._host
)
)
if self._port is None:
self._port = self._settings.getInt(["server", "port"])
if self._port is None:
self._port = 5000
self._logger = logging.getLogger(__name__)
self._setup_heartbeat_logging()
pluginManager = self._plugin_manager
# monkey patch/fix some stuff
util.tornado.fix_json_encode()
util.tornado.fix_websocket_check_origin()
util.flask.fix_flask_jsonify()
self._setup_mimetypes()
additional_translation_folders = []
if not safe_mode:
additional_translation_folders += [self._settings.getBaseFolder("translations")]
util.flask.enable_additional_translations(
additional_folders=additional_translation_folders
)
# setup app
self._setup_app(app)
# setup i18n
self._setup_i18n(app)
if self._settings.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
# start the intermediary server
self._start_intermediary_server()
### IMPORTANT!
###
### Best do not start any subprocesses until the intermediary server shuts down again or they MIGHT inherit the
### open port and prevent us from firing up Tornado later.
###
### The intermediary server's socket should have the CLOSE_EXEC flag (or its equivalent) set where possible, but
### we can only do that if fcntl is available or we are on Windows, so better safe than sorry.
###
### See also issues #2035 and #2090
# then initialize the plugin manager
pluginManager.reload_plugins(startup=True, initialize_implementations=False)
printerProfileManager = PrinterProfileManager()
eventManager = self._event_manager
analysis_queue_factories = dict(
gcode=octoprint.filemanager.analysis.GcodeAnalysisQueue
)
analysis_queue_hooks = pluginManager.get_hooks(
"octoprint.filemanager.analysis.factory"
)
for name, hook in analysis_queue_hooks.items():
try:
additional_factories = hook()
analysis_queue_factories.update(**additional_factories)
except Exception:
self._logger.exception(
"Error while processing analysis queues from {}".format(name),
extra=dict(plugin=name),
)
analysisQueue = octoprint.filemanager.analysis.AnalysisQueue(
analysis_queue_factories
)
slicingManager = octoprint.slicing.SlicingManager(
self._settings.getBaseFolder("slicingProfiles"), printerProfileManager
)
storage_managers = dict()
storage_managers[octoprint.filemanager.FileDestinations.LOCAL] = (
octoprint.filemanager.storage.LocalFileStorage(
self._settings.getBaseFolder("uploads")
)
)
fileManager = octoprint.filemanager.FileManager(
analysisQueue,
slicingManager,
printerProfileManager,
initial_storage_managers=storage_managers,
)
pluginLifecycleManager = LifecycleManager(pluginManager)
preemptiveCache = PreemptiveCache(
os.path.join(
self._settings.getBaseFolder("data"), "preemptive_cache_config.yaml"
)
)
JsonEncoding.add_encoder(users.User, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(groups.Group, lambda obj: obj.as_dict())
JsonEncoding.add_encoder(permissions.OctoPrintPermission, lambda obj: obj.as_dict())
# start regular check if we are connected to the internet
def on_connectivity_change(old_value, new_value):
eventManager.fire(
events.Events.CONNECTIVITY_CHANGED,
payload=dict(old=old_value, new=new_value),
)
connectivityChecker = self._connectivity_checker
def on_settings_update(*args, **kwargs):
# make sure our connectivity checker runs with the latest settings
connectivityEnabled = self._settings.getBoolean(
["server", "onlineCheck", "enabled"]
)
connectivityInterval = self._settings.getInt(
["server", "onlineCheck", "interval"]
)
connectivityHost = self._settings.get(["server", "onlineCheck", "host"])
connectivityPort = self._settings.getInt(["server", "onlineCheck", "port"])
connectivityName = self._settings.get(["server", "onlineCheck", "name"])
if (
connectivityChecker.enabled != connectivityEnabled
or connectivityChecker.interval != connectivityInterval
or connectivityChecker.host != connectivityHost
or connectivityChecker.port != connectivityPort
or connectivityChecker.name != connectivityName
):
connectivityChecker.enabled = connectivityEnabled
connectivityChecker.interval = connectivityInterval
connectivityChecker.host = connectivityHost
connectivityChecker.port = connectivityPort
connectivityChecker.name = connectivityName
connectivityChecker.check_immediately()
eventManager.subscribe(events.Events.SETTINGS_UPDATED, on_settings_update)
components = dict(
plugin_manager=pluginManager,
printer_profile_manager=printerProfileManager,
event_bus=eventManager,
analysis_queue=analysisQueue,
slicing_manager=slicingManager,
file_manager=fileManager,
plugin_lifecycle_manager=pluginLifecycleManager,
preemptive_cache=preemptiveCache,
json_encoder=jsonEncoder,
json_decoder=jsonDecoder,
connectivity_checker=connectivityChecker,
environment_detector=self._environment_detector,
)
# ~~ setup access control
# get additional permissions from plugins
self._setup_plugin_permissions()
# create group manager instance
group_manager_factories = pluginManager.get_hooks("octoprint.access.groups.factory")
for name, factory in group_manager_factories.items():
try:
groupManager = factory(components, self._settings)
if groupManager is not None:
self._logger.debug(
"Created group manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating group manager instance from factory {}".format(
name
)
)
else:
group_manager_name = self._settings.get(["accessControl", "groupManager"])
try:
clazz = octoprint.util.get_class(group_manager_name)
groupManager = clazz()
except AttributeError:
self._logger.exception(
"Could not instantiate group manager {}, "
"falling back to FilebasedGroupManager!".format(group_manager_name)
)
groupManager = octoprint.access.groups.FilebasedGroupManager()
components.update(dict(group_manager=groupManager))
# create user manager instance
user_manager_factories = pluginManager.get_hooks(
"octoprint.users.factory"
) # legacy, set first so that new wins
user_manager_factories.update(
pluginManager.get_hooks("octoprint.access.users.factory")
)
for name, factory in user_manager_factories.items():
try:
userManager = factory(components, self._settings)
if userManager is not None:
self._logger.debug(
"Created user manager instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating user manager instance from factory {}".format(
name
),
extra=dict(plugin=name),
)
else:
user_manager_name = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(user_manager_name)
userManager = clazz(groupManager)
except Exception:
self._logger.exception(
"Could not instantiate user manager {}, "
"falling back to FilebasedUserManager!".format(user_manager_name)
)
userManager = octoprint.access.users.FilebasedUserManager(groupManager)
finally:
userManager.enabled = self._settings.getBoolean(
["accessControl", "enabled"]
)
components.update(dict(user_manager=userManager))
# create printer instance
printer_factories = pluginManager.get_hooks("octoprint.printer.factory")
for name, factory in printer_factories.items():
try:
printer = factory(components)
if printer is not None:
self._logger.debug(
"Created printer instance from factory {}".format(name)
)
break
except Exception:
self._logger.exception(
"Error while creating printer instance from factory {}".format(name),
extra=dict(plugin=name),
)
else:
printer = Printer(fileManager, analysisQueue, printerProfileManager)
components.update(dict(printer=printer))
def octoprint_plugin_inject_factory(name, implementation):
"""Factory for injections for all OctoPrintPlugins"""
if not isinstance(implementation, octoprint.plugin.OctoPrintPlugin):
return None
components_copy = dict(components)
if "printer" in components:
import wrapt
import functools
def tagwrap(f):
@functools.wraps(f)
def wrapper(*args, **kwargs):
tags = kwargs.get("tags", set()) | {
"source:plugin",
"plugin:{}".format(name),
}
kwargs["tags"] = tags
return f(*args, **kwargs)
setattr(wrapper, "__tagwrapped__", True)
return wrapper
class TaggedFuncsPrinter(wrapt.ObjectProxy):
def __getattribute__(self, attr):
__wrapped__ = super(TaggedFuncsPrinter, self).__getattribute__(
"__wrapped__"
)
if attr == "__wrapped__":
return __wrapped__
item = getattr(__wrapped__, attr)
if (
callable(item)
and (
"tags" in item.__code__.co_varnames
or "kwargs" in item.__code__.co_varnames
)
and not getattr(item, "__tagwrapped__", False)
):
return tagwrap(item)
else:
return item
components_copy["printer"] = TaggedFuncsPrinter(components["printer"])
props = dict()
props.update(components_copy)
props.update(
dict(data_folder=os.path.join(self._settings.getBaseFolder("data"), name))
)
return props
def settings_plugin_inject_factory(name, implementation):
"""Factory for additional injections/initializations depending on plugin type"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
default_settings_overlay = dict(plugins=dict())
default_settings_overlay["plugins"][name] = (
implementation.get_settings_defaults()
)
self._settings.add_overlay(default_settings_overlay, at_end=True)
plugin_settings = octoprint.plugin.plugin_settings_for_settings_plugin(
name, implementation
)
if plugin_settings is None:
return
return dict(settings=plugin_settings)
def settings_plugin_config_migration_and_cleanup(identifier, implementation):
"""Take care of migrating and cleaning up any old settings"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
settings_version = implementation.get_settings_version()
settings_migrator = implementation.on_settings_migrate
if settings_version is not None and settings_migrator is not None:
stored_version = implementation._settings.get_int(
[octoprint.plugin.SettingsPlugin.config_version_key]
)
if stored_version is None or stored_version < settings_version:
settings_migrator(settings_version, stored_version)
implementation._settings.set_int(
[octoprint.plugin.SettingsPlugin.config_version_key],
settings_version,
force=True,
)
implementation.on_settings_cleanup()
implementation._settings.save()
implementation.on_settings_initialized()
custom_events_hooks = pluginManager.get_hooks(
"octoprint.events.register_custom_events"
)
for name, hook in custom_events_hooks.items():
try:
result = hook()
if isinstance(result, (list, tuple)):
for event in result:
constant, value = octoprint.events.Events.register_event(
event, prefix="plugin_{}_".format(name)
)
self._logger.debug(
'Registered event {} of plugin {} as Events.{} = "{}"'.format(
event, name, constant, value
)
)
except Exception:
self._logger.exception(
"Error while retrieving custom event list from plugin {}".format(name),
extra=dict(plugin=name),
)
pluginManager.implementation_inject_factories = [
octoprint_plugin_inject_factory,
settings_plugin_inject_factory,
]
pluginManager.initialize_implementations()
settingsPlugins = pluginManager.get_implementations(octoprint.plugin.SettingsPlugin)
for implementation in settingsPlugins:
try:
settings_plugin_config_migration_and_cleanup(
implementation._identifier, implementation
)
except Exception:
self._logger.exception(
"Error while trying to migrate settings for "
"plugin {}, ignoring it".format(implementation._identifier),
extra=dict(plugin=implementation._identifier),
)
pluginManager.implementation_post_inits = [
settings_plugin_config_migration_and_cleanup
]
pluginManager.log_all_plugins()
# log environment data now
self._environment_detector.log_detected_environment()
# initialize file manager and register it for changes in the registered plugins
fileManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: fileManager.reload_plugins()
)
# initialize slicing manager and register it for changes in the registered plugins
slicingManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: slicingManager.reload_slicers()
)
# setup jinja2
self._setup_jinja2()
# setup assets
self._setup_assets()
# configure timelapse
octoprint.timelapse.valid_timelapse("test")
octoprint.timelapse.configure_timelapse()
# setup command triggers
events.CommandTrigger(printer)
if self._debug:
events.DebugEventListener()
# setup login manager
self._setup_login_manager()
# register API blueprint
self._setup_blueprints()
## Tornado initialization starts here
ioloop = IOLoop()
ioloop.install()
enable_cors = settings().getBoolean(["api", "allowCrossOrigin"])
self._router = SockJSRouter(
self._create_socket_connection,
"/sockjs",
session_kls=util.sockjs.ThreadSafeSession,
user_settings=dict(
websocket_allow_origin="*" if enable_cors else "",
jsessionid=False,
sockjs_url="../../static/js/lib/sockjs.min.js",
),
)
upload_suffixes = dict(
name=self._settings.get(["server", "uploads", "nameSuffix"]),
path=self._settings.get(["server", "uploads", "pathSuffix"]),
)
def mime_type_guesser(path):
from octoprint.filemanager import get_mime_type
return get_mime_type(path)
def download_name_generator(path):
metadata = fileManager.get_metadata("local", path)
if metadata and "display" in metadata:
return metadata["display"]
download_handler_kwargs = dict(as_attachment=True, allow_client_caching=False)
additional_mime_types = dict(mime_type_guesser=mime_type_guesser)
##~~ Permission validators
access_validators_from_plugins = []
for plugin, hook in pluginManager.get_hooks(
"octoprint.server.http.access_validator"
).items():
try:
access_validators_from_plugins.append(
util.tornado.access_validation_factory(app, hook)
)
except Exception:
self._logger.exception(
"Error while adding tornado access validator from plugin {}".format(
plugin
),
extra=dict(plugin=plugin),
)
access_validator = dict(
access_validation=util.tornado.validation_chain(*access_validators_from_plugins)
)
timelapse_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.TIMELAPSE_LIST
),
] + access_validators_from_plugins
download_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.FILES_DOWNLOAD
),
] + access_validators_from_plugins
log_validators = [
util.tornado.access_validation_factory(
app,
util.flask.permission_validator,
permissions.Permissions.PLUGIN_LOGGING_MANAGE,
),
] + access_validators_from_plugins
camera_validators = [
util.tornado.access_validation_factory(
app, util.flask.permission_validator, permissions.Permissions.WEBCAM
),
] + access_validators_from_plugins
timelapse_permission_validator = dict(
access_validation=util.tornado.validation_chain(*timelapse_validators)
)
download_permission_validator = dict(
access_validation=util.tornado.validation_chain(*download_validators)
)
log_permission_validator = dict(
access_validation=util.tornado.validation_chain(*log_validators)
)
camera_permission_validator = dict(
access_validation=util.tornado.validation_chain(*camera_validators)
)
no_hidden_files_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path), status_code=404
)
)
timelapse_path_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path)
and octoprint.timelapse.valid_timelapse(path),
status_code=404,
)
)
def joined_dict(*dicts):
if not len(dicts):
return dict()
joined = dict()
for d in dicts:
joined.update(d)
return joined
util.tornado.RequestlessExceptionLoggingMixin.LOG_REQUEST = debug
util.tornado.CorsSupportMixin.ENABLE_CORS = enable_cors
server_routes = self._router.urls + [
# various downloads
# .mpg and .mp4 timelapses:
(
r"/downloads/timelapse/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("timelapse")),
timelapse_permission_validator,
download_handler_kwargs,
timelapse_path_validator,
),
),
(
r"/downloads/files/local/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("uploads"),
as_attachment=True,
name_generator=download_name_generator,
),
download_permission_validator,
download_handler_kwargs,
no_hidden_files_validator,
additional_mime_types,
),
),
(
r"/downloads/logs/([^/]*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("logs"),
mime_type_guesser=lambda *args, **kwargs: "text/plain",
),
download_handler_kwargs,
log_permission_validator,
),
),
# camera snapshot
(
r"/downloads/camera/current",
util.tornado.UrlProxyHandler,
joined_dict(
dict(
url=self._settings.get(["webcam", "snapshot"]), as_attachment=True
),
camera_permission_validator,
),
),
# generated webassets
(
r"/static/webassets/(.*)",
util.tornado.LargeResponseHandler,
dict(
path=os.path.join(
self._settings.getBaseFolder("generated"), "webassets"
),
is_pre_compressed=True,
),
),
# online indicators - text file with "online" as content and a transparent gif
(r"/online.txt", util.tornado.StaticDataHandler, dict(data="online\n")),
(
r"/online.gif",
util.tornado.StaticDataHandler,
dict(
data=bytes(
base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
),
content_type="image/gif",
),
),
# deprecated endpoints
(
r"/api/logs",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs"),
),
(
r"/api/logs/(.*)",
util.tornado.DeprecatedEndpointHandler,
dict(url="/plugin/logging/logs/{0}"),
),
]
# fetch additional routes from plugins
for name, hook in pluginManager.get_hooks("octoprint.server.http.routes").items():
try:
result = hook(list(server_routes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"server routes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if not isinstance(entry[0], basestring):
continue
if not isinstance(entry[2], dict):
continue
route, handler, kwargs = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding additional route {route} handled by handler {handler} and with additional arguments {kwargs!r}".format(
**locals()
)
)
server_routes.append((route, handler, kwargs))
headers = {
"X-Robots-Tag": "noindex, nofollow, noimageindex",
"X-Content-Type-Options": "nosniff",
}
if not settings().getBoolean(["server", "allowFraming"]):
headers["X-Frame-Options"] = "sameorigin"
removed_headers = ["Server"]
server_routes.append(
(
r".*",
util.tornado.UploadStorageFallbackHandler,
dict(
fallback=util.tornado.WsgiInputContainer(
app.wsgi_app, headers=headers, removed_headers=removed_headers
),
file_prefix="octoprint-file-upload-",
file_suffix=".tmp",
suffixes=upload_suffixes,
),
)
)
transforms = [
util.tornado.GlobalHeaderTransform.for_headers(
"OctoPrintGlobalHeaderTransform",
headers=headers,
removed_headers=removed_headers,
)
]
self._tornado_app = Application(handlers=server_routes, transforms=transforms)
max_body_sizes = [
(
"POST",
r"/api/files/([^/]*)",
self._settings.getInt(["server", "uploads", "maxSize"]),
),
("POST", r"/api/languages", 5 * 1024 * 1024),
]
# allow plugins to extend allowed maximum body sizes
for name, hook in pluginManager.get_hooks("octoprint.server.http.bodysize").items():
try:
result = hook(list(max_body_sizes))
except Exception:
self._logger.exception(
"There was an error while retrieving additional "
"upload sizes from plugin hook {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if (
not entry[0]
in util.tornado.UploadStorageFallbackHandler.BODY_METHODS
):
continue
if not isinstance(entry[2], int):
continue
method, route, size = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding maximum body size of {size}B for {method} requests to {route})".format(
**locals()
)
)
max_body_sizes.append((method, route, size))
self._stop_intermediary_server()
# initialize and bind the server
trusted_downstream = self._settings.get(
["server", "reverseProxy", "trustedDownstream"]
)
if not isinstance(trusted_downstream, list):
self._logger.warning(
"server.reverseProxy.trustedDownstream is not a list, skipping"
)
trusted_downstreams = []
server_kwargs = dict(
max_body_sizes=max_body_sizes,
default_max_body_size=self._settings.getInt(["server", "maxSize"]),
xheaders=True,
trusted_downstream=trusted_downstream,
)
if sys.platform == "win32":
# set 10min idle timeout under windows to hopefully make #2916 less likely
server_kwargs.update(dict(idle_connection_timeout=600))
self._server = util.tornado.CustomHTTPServer(self._tornado_app, **server_kwargs)
listening_address = self._host
if self._host == "::" and not self._v6_only:
# special case - tornado only listens on v4 _and_ v6 if we use None as address
listening_address = None
self._server.listen(self._port, address=listening_address)
### From now on it's ok to launch subprocesses again
eventManager.fire(events.Events.STARTUP)
# analysis backlog
fileManager.process_backlog()
# auto connect
if self._settings.getBoolean(["serial", "autoconnect"]):
self._logger.info(
"Autoconnect on startup is configured, trying to connect to the printer..."
)
try:
(port, baudrate) = (
self._settings.get(["serial", "port"]),
self._settings.getInt(["serial", "baudrate"]),
)
printer_profile = printerProfileManager.get_default()
connectionOptions = printer.__class__.get_connection_options()
if port in connectionOptions["ports"] or port == "AUTO" or port is None:
self._logger.info(
"Trying to connect to configured serial port {}".format(port)
)
printer.connect(
port=port,
baudrate=baudrate,
profile=printer_profile["id"]
if "id" in printer_profile
else "_default",
)
else:
self._logger.info(
"Could not find configured serial port {} in the system, cannot automatically connect to a non existing printer. Is it plugged in and booted up yet?"
)
except Exception:
self._logger.exception(
"Something went wrong while attempting to automatically connect to the printer"
)
# start up watchdogs
watched = self._settings.getBaseFolder("watched")
watchdog_handler = util.watchdog.GcodeWatchdogHandler(fileManager, printer)
watchdog_handler.initial_scan(watched)
if self._settings.getBoolean(["feature", "pollWatched"]):
# use less performant polling observer if explicitly configured
observer = PollingObserver()
else:
# use os default
observer = Observer()
observer.schedule(watchdog_handler, watched, recursive=True)
observer.start()
# run our startup plugins
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_startup",
args=(self._host, self._port),
sorting_context="StartupPlugin.on_startup",
)
def call_on_startup(name, plugin):
implementation = plugin.get_implementation(octoprint.plugin.StartupPlugin)
if implementation is None:
return
implementation.on_startup(self._host, self._port)
pluginLifecycleManager.add_callback("enabled", call_on_startup)
# prepare our after startup function
def on_after_startup():
if self._host == "::":
if self._v6_only:
# only v6
self._logger.info(
"Listening on http://[::]:{port}".format(port=self._port)
)
else:
# all v4 and v6
self._logger.info(
"Listening on http://0.0.0.0:{port} and http://[::]:{port}".format(
port=self._port
)
)
else:
self._logger.info(
"Listening on http://{}:{}".format(
self._host if not ":" in self._host else "[" + self._host + "]",
self._port,
)
)
if safe_mode and self._settings.getBoolean(["server", "startOnceInSafeMode"]):
self._logger.info(
"Server started successfully in safe mode as requested from config, removing flag"
)
self._settings.setBoolean(["server", "startOnceInSafeMode"], False)
self._settings.save()
# now this is somewhat ugly, but the issue is the following: startup plugins might want to do things for
# which they need the server to be already alive (e.g. for being able to resolve urls, such as favicons
# or service xmls or the like). While they are working though the ioloop would block. Therefore we'll
# create a single use thread in which to perform our after-startup-tasks, start that and hand back
# control to the ioloop
def work():
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_after_startup",
sorting_context="StartupPlugin.on_after_startup",
)
def call_on_after_startup(name, plugin):
implementation = plugin.get_implementation(
octoprint.plugin.StartupPlugin
)
if implementation is None:
return
implementation.on_after_startup()
pluginLifecycleManager.add_callback("enabled", call_on_after_startup)
# if there was a rogue plugin we wouldn't even have made it here, so remove startup triggered safe mode
# flag again...
self._settings.setBoolean(["server", "incompleteStartup"], False)
self._settings.save()
# make a backup of the current config
self._settings.backup(ext="backup")
# when we are through with that we also run our preemptive cache
if settings().getBoolean(["devel", "cache", "preemptive"]):
self._execute_preemptive_flask_caching(preemptiveCache)
import threading
threading.Thread(target=work).start()
ioloop.add_callback(on_after_startup)
# prepare our shutdown function
def on_shutdown():
# will be called on clean system exit and shutdown the watchdog observer and call the on_shutdown methods
# on all registered ShutdownPlugins
self._logger.info("Shutting down...")
observer.stop()
observer.join()
eventManager.fire(events.Events.SHUTDOWN)
self._logger.info("Calling on_shutdown on plugins")
octoprint.plugin.call_plugin(
octoprint.plugin.ShutdownPlugin,
"on_shutdown",
sorting_context="ShutdownPlugin.on_shutdown",
)
# wait for shutdown event to be processed, but maximally for 15s
event_timeout = 15.0
if eventManager.join(timeout=event_timeout):
self._logger.warning(
"Event loop was still busy processing after {}s, shutting down anyhow".format(
event_timeout
)
)
if self._octoprint_daemon is not None:
self._logger.info("Cleaning up daemon pidfile")
self._octoprint_daemon.terminated()
self._logger.info("Goodbye!")
atexit.register(on_shutdown)
def sigterm_handler(*args, **kwargs):
# will stop tornado on SIGTERM, making the program exit cleanly
def shutdown_tornado():
self._logger.debug("Shutting down tornado's IOLoop...")
ioloop.stop()
self._logger.debug("SIGTERM received...")
ioloop.add_callback_from_signal(shutdown_tornado)
signal.signal(signal.SIGTERM, sigterm_handler)
try:
# this is the main loop - as long as tornado is running, OctoPrint is running
ioloop.start()
self._logger.debug("Tornado's IOLoop stopped")
except (KeyboardInterrupt, SystemExit):
pass
except Exception:
self._logger.fatal(
"Now that is embarrassing... Something really really went wrong here. Please report this including the stacktrace below in OctoPrint's bugtracker. Thanks!"
)
self._logger.exception("Stacktrace follows:")
|
https://github.com/OctoPrint/OctoPrint/issues/3676
|
pi@octoprint:~ $ cat ~/.octoprint/logs/octoprint.log
2020-08-04 00:21:23,030 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 00:21:23,035 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2020-08-04 00:21:23,036 - octoprint.server - INFO - OctoPrint 1.4.0
2020-08-04 00:21:23,041 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| EEPROM Editor for MPSM (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_MPSelectMini
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Login UI (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/loginui
| Malyan/Monoprice Connection Fix (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_malyan_connection_fix
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| PortLister (0.1.10) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_portlister
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Prusa Leveling Guide (1.0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaLevelingGuide
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2020-08-04 00:21:23,063 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917708800
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2020-08-04 00:21:23,063 - octoprint.server - INFO - ------------------------------------------------------------------------------
2020-08-04 00:36:23,032 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 00:51:23,034 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 01:06:23,035 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 01:21:23,039 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 01:24:36,978 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.30
2020-08-04 01:36:23,041 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 01:51:23,043 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 02:06:23,045 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 02:21:23,048 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 02:36:23,051 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 02:51:23,053 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 03:06:23,055 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 03:21:23,058 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 03:36:23,060 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 03:51:23,062 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 04:06:23,064 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 04:21:23,066 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 04:36:23,069 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 04:51:23,073 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 05:06:23,075 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 05:21:23,078 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 05:36:23,080 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 05:51:23,082 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 06:06:23,084 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 06:21:23,087 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 06:36:23,089 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 06:51:23,092 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 07:06:23,095 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 07:21:23,098 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 07:36:23,100 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 07:51:23,103 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 08:06:23,105 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 08:21:23,106 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 08:36:23,110 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 08:51:23,113 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 09:06:23,115 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 09:21:23,116 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 09:36:23,119 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 09:51:23,122 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 09:52:33,780 - octoprint.util.comm - INFO - Finished in 39429.569 s.
2020-08-04 09:52:33,782 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Finishing"
2020-08-04 09:52:33,788 - octoprint.filemanager.analysis - INFO - Starting analysis of local:MK3_PLA_3D_scanner.gcode
2020-08-04 09:52:33,795 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/MK3_PLA_3D_scanner.gcode
2020-08-04 09:52:33,805 - octoprint.printer.standard.job - INFO - Print job done - origin: local, path: MK3_PLA_3D_scanner.gcode, owner: _api
2020-08-04 09:52:33,854 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2020-08-04 09:54:08,637 - octoprint.filemanager.analysis - INFO - Analysis of entry local:MK3_PLA_3D_scanner.gcode finished, needed 94.85s
2020-08-04 10:03:05,705 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.30
2020-08-04 10:03:05,857 - octoprint.server.util.flask - INFO - Passively logging in user nirvdrum from ::ffff:192.168.13.30
2020-08-04 10:03:05,858 - octoprint.access.users - INFO - Cleaning up user session 0FB7BFDA583845BF81D4C4FF47851B14 for user nirvdrum
2020-08-04 10:03:05,859 - octoprint.access.users - INFO - Logged out user: nirvdrum
2020-08-04 10:03:05,859 - octoprint.access.users - INFO - Logged in user: nirvdrum
2020-08-04 10:03:06,035 - octoprint.server.util.sockjs - INFO - User nirvdrum logged in on the socket from client ::ffff:192.168.13.30
2020-08-04 10:06:23,125 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 10:07:15,116 - octoprint.filemanager.analysis - INFO - Starting analysis of local:MK3_PLA_3D_scanner.gcode
2020-08-04 10:07:15,119 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/MK3_PLA_3D_scanner.gcode
2020-08-04 10:07:15,150 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: MK3_PLA_3D_scanner.gcode, owner: _api, user: _api
2020-08-04 10:07:15,177 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2020-08-04 10:07:15,186 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: MK3_PLA_3D_scanner.gcode, owner: _api, user: _api
2020-08-04 10:07:15,203 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2020-08-04 10:07:15,216 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2020-08-04 10:21:23,127 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 10:36:23,129 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 10:51:23,132 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 10:53:52,992 - octoprint.server.util.sockjs - INFO - New connection from client: fe80::d65:fec9:a521:d32c
2020-08-04 10:53:54,040 - tornado.access - WARNING - 403 GET /api/settings (fe80::d65:fec9:a521:d32c) 150.68ms
2020-08-04 11:03:35,162 - octoprint.server.util.sockjs - INFO - Client connection closed: fe80::d65:fec9:a521:d32c
2020-08-04 11:06:23,135 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 11:10:16,030 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.37
2020-08-04 11:10:16,151 - octoprint.server.util.flask - INFO - Passively logging in user nirvdrum from ::ffff:192.168.13.37
2020-08-04 11:10:16,154 - octoprint.access.users - INFO - Cleaning up user session 0FB7BFDA583845BF81D4C4FF47851B14 for user nirvdrum
2020-08-04 11:10:16,156 - octoprint.server.util.sockjs - INFO - User nirvdrum logged out, logging out on socket
2020-08-04 11:10:16,161 - octoprint.access.users - INFO - Logged out user: nirvdrum
2020-08-04 11:10:16,163 - octoprint.access.users - INFO - Logged in user: nirvdrum
2020-08-04 11:10:16,215 - octoprint.server.util.sockjs - INFO - User nirvdrum logged in on the socket from client ::ffff:192.168.13.37
2020-08-04 11:21:23,136 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 11:25:45,458 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.30
2020-08-04 11:36:23,139 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 11:50:29,621 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.37
2020-08-04 11:51:23,141 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 11:51:35,350 - octoprint.server.util.sockjs - INFO - New connection from client: fe80::d65:fec9:a521:d32c
2020-08-04 11:51:36,338 - tornado.access - WARNING - 403 GET /api/settings (fe80::d65:fec9:a521:d32c) 132.14ms
2020-08-04 12:01:38,056 - octoprint.server.util.sockjs - INFO - Client connection closed: fe80::d65:fec9:a521:d32c
2020-08-04 12:06:23,144 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 12:21:23,148 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 12:36:23,150 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 12:51:23,153 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 13:06:23,154 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 13:14:39,925 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 90466, current line = 90482
| Last lines in terminal:
| Recv: ok
| Send: N90481 G1 X47.881 Y163.292 E0.08192*91
| Recv: echo:enqueing "G1 E-1.000 F2700"
| Recv: echo:enqueing "G1 Z15.600 F800.000"
| Recv: echo:enqueing "CRASH_DETECTEDY"
| Recv: tmc2130_home_enter(axes_mask=0x01)
| Recv: echo:busy: processing
| Recv: 0 step=30 mscnt= 483
| Recv: tmc2130_goto_step 0 45 2 1000
| Recv: tmc2130_home_exit tmc2130_sg_homing_axes_mask=0x01
| Recv: tmc2130_home_enter(axes_mask=0x02)
| Recv: echo:busy: processing
| Recv: echo:busy: processing
| Recv: 0 step=49 mscnt= 799
| Recv: tmc2130_goto_step 1 33 2 1000
| Recv: tmc2130_home_exit tmc2130_sg_homing_axes_mask=0x02
| Recv: echo:enqueing "CRASH_RECOVER"
| Recv: echo:busy: processing
| Recv: echo:busy: processing
| Recv: Resend: 90466
2020-08-04 13:21:23,157 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 13:36:23,161 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 13:51:23,163 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 14:06:23,166 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 14:21:23,168 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 14:36:23,170 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 14:51:23,173 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 15:06:23,176 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 15:21:23,178 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 15:36:23,180 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 15:51:23,182 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 16:00:11,538 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.19
2020-08-04 16:00:12,609 - tornado.access - WARNING - 403 GET /api/settings (::ffff:192.168.13.19) 128.82ms
2020-08-04 16:06:23,186 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 16:10:38,802 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.19
2020-08-04 16:21:23,190 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 16:36:23,192 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 16:51:23,196 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 17:06:23,200 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 17:21:23,201 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 17:34:10,627 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:34:20,625 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:34:30,637 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:34:34,676 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:34,708 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('169.254.55.4', 61106), not sending a M-SEARCH reply
2020-08-04 17:34:34,815 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:34,852 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:34,880 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:37,692 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:37,720 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('169.254.55.4', 61106), not sending a M-SEARCH reply
2020-08-04 17:34:37,728 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:38,333 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:38,362 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:40,648 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:34:40,700 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:40,728 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('169.254.55.4', 61106), not sending a M-SEARCH reply
2020-08-04 17:34:40,734 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.30', 61110), not sending a M-SEARCH reply
2020-08-04 17:34:41,296 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 18248), not sending a M-SEARCH reply
2020-08-04 17:34:41,302 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 18248), not sending a M-SEARCH reply
2020-08-04 17:34:50,675 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:34:51,594 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 15431), not sending a M-SEARCH reply
2020-08-04 17:34:51,601 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 15431), not sending a M-SEARCH reply
2020-08-04 17:35:00,650 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:35:10,661 - octoprint.plugins.discovery - WARNING - Can't determine address to user for client ('192.168.13.202', 38609), not sending a M-SEARCH reply
2020-08-04 17:36:23,204 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 17:51:23,207 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 18:06:23,209 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 18:21:23,211 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 18:36:23,212 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 18:51:23,214 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 19:06:23,217 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 19:21:23,219 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 19:36:23,222 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 19:51:23,226 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 20:06:23,228 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 20:21:23,231 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 20:36:23,234 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 20:51:23,238 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 21:06:17,671 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.37
2020-08-04 21:06:17,813 - octoprint.server.util.flask - INFO - Passively logging in user nirvdrum from ::ffff:192.168.13.37
2020-08-04 21:06:17,815 - octoprint.access.users - INFO - Cleaning up user session 0FB7BFDA583845BF81D4C4FF47851B14 for user nirvdrum
2020-08-04 21:06:17,817 - octoprint.access.users - INFO - Logged out user: nirvdrum
2020-08-04 21:06:17,818 - octoprint.access.users - INFO - Logged in user: nirvdrum
2020-08-04 21:06:23,239 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 21:06:23,249 - octoprint.server.util.sockjs - INFO - User nirvdrum logged in on the socket from client ::ffff:192.168.13.37
2020-08-04 21:06:24,606 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2020-08-04 21:21:23,243 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 21:36:23,248 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 21:51:23,249 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 22:04:03,698 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.37
2020-08-04 22:06:23,252 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 22:10:31,689 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.30
2020-08-04 22:10:31,826 - octoprint.server.util.flask - INFO - Passively logging in user nirvdrum from ::ffff:192.168.13.30
2020-08-04 22:10:31,827 - octoprint.access.users - INFO - Cleaning up user session 0FB7BFDA583845BF81D4C4FF47851B14 for user nirvdrum
2020-08-04 22:10:31,828 - octoprint.access.users - INFO - Logged out user: nirvdrum
2020-08-04 22:10:31,830 - octoprint.access.users - INFO - Logged in user: nirvdrum
2020-08-04 22:10:31,908 - octoprint.server.util.sockjs - INFO - User nirvdrum logged in on the socket from client ::ffff:192.168.13.30
2020-08-04 22:21:23,254 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 22:32:04,979 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.30
2020-08-04 22:36:23,256 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 22:51:23,257 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 22:59:36,485 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.30
2020-08-04 22:59:36,619 - octoprint.server.util.flask - INFO - Passively logging in user nirvdrum from ::ffff:192.168.13.30
2020-08-04 22:59:36,621 - octoprint.access.users - INFO - Cleaning up user session 0FB7BFDA583845BF81D4C4FF47851B14 for user nirvdrum
2020-08-04 22:59:36,623 - octoprint.access.users - INFO - Logged out user: nirvdrum
2020-08-04 22:59:36,625 - octoprint.access.users - INFO - Logged in user: nirvdrum
2020-08-04 22:59:36,693 - octoprint.server.util.sockjs - INFO - User nirvdrum logged in on the socket from client ::ffff:192.168.13.30
2020-08-04 23:02:23,034 - octoprint.util.comm - INFO - Finished in 46507.859 s.
2020-08-04 23:02:23,038 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Finishing"
2020-08-04 23:02:23,051 - octoprint.filemanager.analysis - INFO - Starting analysis of local:MK3_PLA_3D_scanner.gcode
2020-08-04 23:02:23,056 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/MK3_PLA_3D_scanner.gcode
2020-08-04 23:02:23,068 - octoprint.printer.standard.job - INFO - Print job done - origin: local, path: MK3_PLA_3D_scanner.gcode, owner: _api
2020-08-04 23:02:23,220 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2020-08-04 23:04:18,840 - octoprint.filemanager.analysis - INFO - Analysis of entry local:MK3_PLA_3D_scanner.gcode finished, needed 115.79s
2020-08-04 23:06:23,259 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 23:21:12,994 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.13.30
2020-08-04 23:21:23,260 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2020-08-04 23:30:32,565 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.13.30
2020-08-04 23:30:32,745 - octoprint.server.util.flask - INFO - Passively logging in user nirvdrum from ::ffff:192.168.13.30
2020-08-04 23:30:32,746 - octoprint.access.users - INFO - Cleaning up user session 0FB7BFDA583845BF81D4C4FF47851B14 for user nirvdrum
2020-08-04 23:30:32,748 - octoprint.access.users - INFO - Logged out user: nirvdrum
2020-08-04 23:30:32,749 - octoprint.access.users - INFO - Logged in user: nirvdrum
2020-08-04 23:30:33,409 - octoprint.server.util.sockjs - INFO - User nirvdrum logged in on the socket from client ::ffff:192.168.13.30
2020-08-04 23:30:34,426 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2020-08-04 23:30:35,300 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2020-08-04 23:30:40,937 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.4.1...
2020-08-04 23:32:32,113 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.4.1 successful!
2020-08-04 23:32:32,247 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2020-08-04 23:32:32,252 - octoprint.plugins.softwareupdate - INFO - Restarting...
2020-08-04 23:32:32,922 - octoprint.server - INFO - Shutting down...
2020-08-04 23:32:33,227 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2020-08-04 23:32:33,231 - octoprint.events - INFO - Event loop shut down
2020-08-04 23:32:33,248 - octoprint.server - INFO - Goodbye!
2020-08-04 23:32:35,399 - octoprint.startup - INFO - ******************************************************************************
2020-08-04 23:32:35,401 - octoprint.startup - INFO - Starting OctoPrint 1.4.1
2020-08-04 23:32:35,402 - octoprint.startup - INFO - ******************************************************************************
2020-08-04 23:32:36,071 - octoprint.util.connectivity.connectivity_checker - INFO - Connectivity state is currently: online
2020-08-04 23:32:36,071 - octoprint.util.connectivity.connectivity_checker - INFO - Connecting to 1.1.1.1:53 is working
2020-08-04 23:32:36,073 - octoprint.util.connectivity.connectivity_checker - INFO - Resolving octoprint.org is working
2020-08-04 23:32:36,548 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2020-08-04 23:32:36,604 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2020-08-04 23:32:37,909 - octoprint.plugin.core - INFO - Found 22 plugin(s) providing 22 mixin implementations, 39 hook handlers
2020-08-04 23:32:38,230 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2020-08-04 23:32:38,257 - octoprint.server - INFO - Intermediary server started
2020-08-04 23:32:38,258 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2020-08-04 23:32:38,392 - octoprint.plugin.core - INFO - Found 22 plugin(s) providing 22 mixin implementations, 39 hook handlers
2020-08-04 23:32:38,427 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2020-08-04 23:32:39,009 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2020-08-04 23:32:39,014 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_SHOW (needs: u"Need(method='role', value=u'plugin_action_command_notification_show')")
2020-08-04 23:32:39,015 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_CLEAR (needs: u"Need(method='role', value=u'plugin_action_command_notification_clear')")
2020-08-04 23:32:39,017 - octoprint.server - INFO - Added new permission from plugin action_command_prompt: PLUGIN_ACTION_COMMAND_PROMPT_INTERACT (needs: u"Need(method='role', value=u'plugin_action_command_prompt_interact')")
2020-08-04 23:32:39,019 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_READ (needs: u"Need(method='role', value=u'plugin_announcements_read')")
2020-08-04 23:32:39,020 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_MANAGE (needs: u"Need(method='role', value=u'plugin_announcements_manage'), Need(method='role', value=u'plugin_announcements_read')")
2020-08-04 23:32:39,022 - octoprint.server - INFO - Added new permission from plugin appkeys: PLUGIN_APPKEYS_ADMIN (needs: u"Need(method='role', value=u'plugin_appkeys_admin')")
2020-08-04 23:32:39,024 - octoprint.server - INFO - Added new permission from plugin backup: PLUGIN_BACKUP_ACCESS (needs: u"Need(method='role', value=u'plugin_backup_access')")
2020-08-04 23:32:39,025 - octoprint.server - INFO - Added new permission from plugin firmware_check: PLUGIN_FIRMWARE_CHECK_DISPLAY (needs: u"Need(method='role', value=u'plugin_firmware_check_display')")
2020-08-04 23:32:39,028 - octoprint.server - INFO - Added new permission from plugin logging: PLUGIN_LOGGING_MANAGE (needs: u"Need(method='role', value=u'plugin_logging_manage')")
2020-08-04 23:32:39,029 - octoprint.server - INFO - Added new permission from plugin pi_support: PLUGIN_PI_SUPPORT_STATUS (needs: u"Need(method='role', value=u'plugin_pi_support_check')")
2020-08-04 23:32:39,031 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_MANAGE (needs: u"Need(method='role', value=u'plugin_pluginmanager_manage')")
2020-08-04 23:32:39,033 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_INSTALL (needs: u"Need(method='role', value=u'plugin_pluginmanager_install'), Need(method='role', value=u'plugin_pluginmanager_manage')")
2020-08-04 23:32:39,035 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_CHECK (needs: u"Need(method='role', value=u'plugin_softwareupdate_check')")
2020-08-04 23:32:39,037 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_UPDATE (needs: u"Need(method='role', value=u'plugin_softwareupdate_update')")
2020-08-04 23:32:39,144 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2020-08-04 23:32:40,265 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2020-08-04 23:32:41,365 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2020-08-04 23:32:41,367 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2020-08-04 23:32:41,368 - octoprint.util.pip - INFO - ==> pip ok -> yes
2020-08-04 23:32:41,372 - octoprint.plugin.core - INFO - Initialized 22 plugin implementation(s)
2020-08-04 23:32:41,779 - octoprint.plugin.core - INFO - 22 plugin(s) registered with the system:
| Action Command Notification Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_notification
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| EEPROM Editor for MPSM (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_MPSelectMini
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| File Check (2020.7.6) (bundled) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_file_check
| Firmware Check (2020.6.22) (bundled) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmware_check
| GCode Viewer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/gcodeviewer
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Login UI (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/loginui
| Malyan/Monoprice Connection Fix (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_malyan_connection_fix
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| PortLister (0.1.10) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_portlister
| Prusa Leveling Guide (1.0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaLevelingGuide
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2020-08-04 23:32:41,797 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917708800
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2020-08-04 23:32:41,809 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2020-08-04 23:32:41,835 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2020-08-04 23:32:43,030 - octoprint.server - INFO - Shutting down intermediary server...
2020-08-04 23:32:43,298 - octoprint.server - INFO - Intermediary server shut down
2020-08-04 23:32:43,301 - octoprint.events - INFO - Processing startup event, this is our first event
2020-08-04 23:32:43,304 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2020-08-04 23:32:43,306 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2020-08-04 23:32:43,308 - octoprint.server - INFO - Autoconnect on startup is configured, trying to connect to the printer...
2020-08-04 23:32:43,361 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2020-08-04 23:32:43,383 - octoprint.server - INFO - Trying to connect to configured serial port None
2020-08-04 23:32:43,436 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial connection"
2020-08-04 23:32:43,449 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2020-08-04 23:32:43,466 - octoprint.util.comm - INFO - Serial detection: Performing autodetection with 7 port/baudrate candidates: /dev/ttyACM0@115200, /dev/ttyACM0@250000, /dev/ttyACM0@230400, /dev/ttyACM0@57600, /dev/ttyACM0@38400, /dev/ttyACM0@19200, /dev/ttyACM0@9600
2020-08-04 23:32:43,467 - octoprint.util.comm - INFO - Serial detection: Trying port /dev/ttyACM0, baudrate 115200
2020-08-04 23:32:43,472 - octoprint.util.comm - INFO - Serial detection: Handshake attempt #1 with timeout 2.0s
2020-08-04 23:32:43,476 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2020-08-04 23:32:43,485 - octoprint.cli.server - ERROR - Uncaught exception
Traceback (most recent call last):
File "/home/pi/oprint/bin/octoprint", line 8, in <module>
sys.exit(main())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/__init__.py", line 629, in main
octo(args=args, prog_name="octoprint", auto_envvar_prefix="OCTOPRINT")
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 829, in __call__
return self.main(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/decorators.py", line 21, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 207, in serve_command
ignore_blacklist)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 119, in run_server
octoprint_server.run()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 832, in run
observer.start()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/observers/api.py", line 260, in start
emitter.start()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/utils/__init__.py", line 110, in start
self.on_thread_start()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/observers/polling.py", line 81, in on_thread_start
self._snapshot = self._take_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/observers/polling.py", line 78, in <lambda>
self.watch.path, self.watch.is_recursive, stat=stat, listdir=listdir)
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/utils/dirsnapshot.py", line 257, in __init__
for p, st in self.walk(path):
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/utils/dirsnapshot.py", line 265, in walk
for entry in self.listdir(root)]
AttributeError: 'unicode' object has no attribute 'name'
2020-08-04 23:42:44,141 - octoprint.startup - INFO - ******************************************************************************
2020-08-04 23:42:44,146 - octoprint.startup - INFO - Starting OctoPrint 1.4.1
2020-08-04 23:42:44,148 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2020-08-04 23:42:44,150 - octoprint.startup - INFO - Reason for safe mode: problem during last startup
2020-08-04 23:42:44,153 - octoprint.startup - INFO - ******************************************************************************
2020-08-04 23:42:45,493 - octoprint.util.connectivity.connectivity_checker - INFO - Connectivity state is currently: online
2020-08-04 23:42:45,495 - octoprint.util.connectivity.connectivity_checker - INFO - Connecting to 1.1.1.1:53 is working
2020-08-04 23:42:45,496 - octoprint.util.connectivity.connectivity_checker - INFO - Resolving octoprint.org is working
2020-08-04 23:42:45,513 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2020-08-04 23:42:45,624 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2020-08-04 23:42:48,855 - octoprint.plugin.core - INFO - Found 22 plugin(s) providing 18 mixin implementations, 32 hook handlers
2020-08-04 23:42:48,983 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2020-08-04 23:42:49,030 - octoprint.server - INFO - Intermediary server started
2020-08-04 23:42:49,030 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2020-08-04 23:42:49,253 - octoprint.plugin.core - INFO - Found 22 plugin(s) providing 18 mixin implementations, 32 hook handlers
2020-08-04 23:42:49,289 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2020-08-04 23:42:49,876 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2020-08-04 23:42:49,880 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_SHOW (needs: u"Need(method='role', value=u'plugin_action_command_notification_show')")
2020-08-04 23:42:49,881 - octoprint.server - INFO - Added new permission from plugin action_command_notification: PLUGIN_ACTION_COMMAND_NOTIFICATION_CLEAR (needs: u"Need(method='role', value=u'plugin_action_command_notification_clear')")
2020-08-04 23:42:49,883 - octoprint.server - INFO - Added new permission from plugin action_command_prompt: PLUGIN_ACTION_COMMAND_PROMPT_INTERACT (needs: u"Need(method='role', value=u'plugin_action_command_prompt_interact')")
2020-08-04 23:42:49,885 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_READ (needs: u"Need(method='role', value=u'plugin_announcements_read')")
2020-08-04 23:42:49,887 - octoprint.server - INFO - Added new permission from plugin announcements: PLUGIN_ANNOUNCEMENTS_MANAGE (needs: u"Need(method='role', value=u'plugin_announcements_manage'), Need(method='role', value=u'plugin_announcements_read')")
2020-08-04 23:42:49,888 - octoprint.server - INFO - Added new permission from plugin appkeys: PLUGIN_APPKEYS_ADMIN (needs: u"Need(method='role', value=u'plugin_appkeys_admin')")
2020-08-04 23:42:49,890 - octoprint.server - INFO - Added new permission from plugin backup: PLUGIN_BACKUP_ACCESS (needs: u"Need(method='role', value=u'plugin_backup_access')")
2020-08-04 23:42:49,891 - octoprint.server - INFO - Added new permission from plugin firmware_check: PLUGIN_FIRMWARE_CHECK_DISPLAY (needs: u"Need(method='role', value=u'plugin_firmware_check_display')")
2020-08-04 23:42:49,893 - octoprint.server - INFO - Added new permission from plugin logging: PLUGIN_LOGGING_MANAGE (needs: u"Need(method='role', value=u'plugin_logging_manage')")
2020-08-04 23:42:49,895 - octoprint.server - INFO - Added new permission from plugin pi_support: PLUGIN_PI_SUPPORT_STATUS (needs: u"Need(method='role', value=u'plugin_pi_support_check')")
2020-08-04 23:42:49,897 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_MANAGE (needs: u"Need(method='role', value=u'plugin_pluginmanager_manage')")
2020-08-04 23:42:49,898 - octoprint.server - INFO - Added new permission from plugin pluginmanager: PLUGIN_PLUGINMANAGER_INSTALL (needs: u"Need(method='role', value=u'plugin_pluginmanager_install'), Need(method='role', value=u'plugin_pluginmanager_manage')")
2020-08-04 23:42:49,899 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_CHECK (needs: u"Need(method='role', value=u'plugin_softwareupdate_check')")
2020-08-04 23:42:49,901 - octoprint.server - INFO - Added new permission from plugin softwareupdate: PLUGIN_SOFTWAREUPDATE_UPDATE (needs: u"Need(method='role', value=u'plugin_softwareupdate_update')")
2020-08-04 23:42:50,016 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2020-08-04 23:42:51,266 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2020-08-04 23:42:52,357 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2020-08-04 23:42:52,359 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2020-08-04 23:42:52,361 - octoprint.util.pip - INFO - ==> pip ok -> yes
2020-08-04 23:42:52,368 - octoprint.plugin.core - INFO - Initialized 18 plugin implementation(s)
2020-08-04 23:42:52,383 - octoprint.plugin.core - INFO - 22 plugin(s) registered with the system:
| Action Command Notification Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_notification
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| !EEPROM Editor for MPSM (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_MPSelectMini
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| File Check (2020.7.6) (bundled) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_file_check
| Firmware Check (2020.6.22) (bundled) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmware_check
| GCode Viewer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/gcodeviewer
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Login UI (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/loginui
| !Malyan/Monoprice Connection Fix (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_malyan_connection_fix
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| !PortLister (0.1.10) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_portlister
| !Prusa Leveling Guide (1.0.8) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaLevelingGuide
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2020-08-04 23:42:52,402 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917708800
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2020-08-04 23:42:52,412 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2020-08-04 23:42:52,415 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2020-08-04 23:42:53,610 - octoprint.server - INFO - Shutting down intermediary server...
2020-08-04 23:42:54,085 - octoprint.server - INFO - Intermediary server shut down
2020-08-04 23:42:54,091 - octoprint.events - INFO - Processing startup event, this is our first event
2020-08-04 23:42:54,093 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2020-08-04 23:42:54,099 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2020-08-04 23:42:54,101 - octoprint.server - INFO - Autoconnect on startup is configured, trying to connect to the printer...
2020-08-04 23:42:54,196 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2020-08-04 23:42:54,218 - octoprint.server - INFO - Trying to connect to configured serial port None
2020-08-04 23:42:54,272 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial connection"
2020-08-04 23:42:54,288 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2020-08-04 23:42:54,301 - octoprint.util.comm - INFO - Serial detection: Performing autodetection with 7 port/baudrate candidates: /dev/ttyACM0@115200, /dev/ttyACM0@250000, /dev/ttyACM0@230400, /dev/ttyACM0@57600, /dev/ttyACM0@38400, /dev/ttyACM0@19200, /dev/ttyACM0@9600
2020-08-04 23:42:54,302 - octoprint.util.comm - INFO - Serial detection: Trying port /dev/ttyACM0, baudrate 115200
2020-08-04 23:42:54,305 - octoprint.util.comm - INFO - Connecting to port /dev/ttyACM0, baudrate 115200
2020-08-04 23:42:54,313 - octoprint.util.comm - INFO - Serial detection: Handshake attempt #1 with timeout 2.0s
2020-08-04 23:42:54,318 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2020-08-04 23:42:54,320 - octoprint.cli.server - ERROR - Uncaught exception
Traceback (most recent call last):
File "/home/pi/oprint/bin/octoprint", line 8, in <module>
sys.exit(main())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/__init__.py", line 629, in main
octo(args=args, prog_name="octoprint", auto_envvar_prefix="OCTOPRINT")
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 829, in __call__
return self.main(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 782, in main
rv = self.invoke(ctx)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 1259, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 1066, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 610, in invoke
return callback(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/decorators.py", line 21, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 207, in serve_command
ignore_blacklist)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 119, in run_server
octoprint_server.run()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 832, in run
observer.start()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/observers/api.py", line 260, in start
emitter.start()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/utils/__init__.py", line 110, in start
self.on_thread_start()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/observers/polling.py", line 81, in on_thread_start
self._snapshot = self._take_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/observers/polling.py", line 78, in <lambda>
self.watch.path, self.watch.is_recursive, stat=stat, listdir=listdir)
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/utils/dirsnapshot.py", line 257, in __init__
for p, st in self.walk(path):
File "/home/pi/oprint/local/lib/python2.7/site-packages/watchdog/utils/dirsnapshot.py", line 265, in walk
for entry in self.listdir(root)]
AttributeError: 'unicode' object has no attribute 'name'
|
AttributeError
|
def _create_lastmodified(path, recursive):
path = path[len("/api/files") :]
if path.startswith("/"):
path = path[1:]
if path == "":
# all storages involved
lms = [0]
for storage in fileManager.registered_storages:
try:
lms.append(fileManager.last_modified(storage, recursive=recursive))
except Exception:
logging.getLogger(__name__).exception(
"There was an error retrieving the last modified data from storage {}".format(
storage
)
)
lms.append(None)
if any(filter(lambda x: x is None, lms)):
# we return None if ANY of the involved storages returned None
return None
# if we reach this point, we return the maximum of all dates
return max(lms)
else:
storage, path_in_storage = path.split("/", 1)
try:
return fileManager.last_modified(
storage, path=path_in_storage, recursive=recursive
)
except Exception:
logging.getLogger(__name__).exception(
"There was an error retrieving the last modified data from storage {} and path {}".format(
storage, path_in_storage
)
)
return None
|
def _create_lastmodified(path, recursive):
if path.endswith("/files"):
# all storages involved
lms = [0]
for storage in fileManager.registered_storages:
try:
lms.append(fileManager.last_modified(storage, recursive=recursive))
except Exception:
logging.getLogger(__name__).exception(
"There was an error retrieving the last modified data from storage {}".format(
storage
)
)
lms.append(None)
if any(filter(lambda x: x is None, lms)):
# we return None if ANY of the involved storages returned None
return None
# if we reach this point, we return the maximum of all dates
return max(lms)
elif path.endswith("/files/local"):
# only local storage involved
try:
return fileManager.last_modified(
FileDestinations.LOCAL, recursive=recursive
)
except Exception:
logging.getLogger(__name__).exception(
"There was an error retrieving the last modified data from storage {}".format(
FileDestinations.LOCAL
)
)
return None
else:
return None
|
https://github.com/OctoPrint/OctoPrint/issues/3422
|
2019-09-26 01:24:44,258 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:24:44,259 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:24:44,260 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:24:44,325 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:24:45,286 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:24:45,367 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:24:45,406 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:24:45,406 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:24:45,469 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:24:45,470 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-09-26 01:24:45,525 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:24:45,526 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:24:46,225 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:24:46,779 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:24:46,780 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:24:46,781 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:24:46,784 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:24:46,844 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:24:46,860 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:24:46,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:24:46,871 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:24:47,414 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:24:47,451 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:24:47,453 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:24:47,454 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:24:47,456 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:24:47,457 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:24:47,459 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:24:47,459 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:24:47,468 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:24:47,475 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:24:47,478 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-09-26 01:24:47,502 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:24:48,106 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:24:48,108 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:24:48,108 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:24:57,563 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:24:57,563 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20716d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20716d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:24:58,131 - octoprint.plugins.softwareupdate - WARNING - Could not check octoprint for updates due to a network error
2019-09-26 01:24:58,138 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-09-26 01:25:07,594 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c65b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c65b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:07,599 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:17,622 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:27,644 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071ed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071ed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:37,667 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16edef0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16edef0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:02,074 - octoprint.server - INFO - Shutting down...
2019-09-26 01:26:02,477 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:26:02,479 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:26:02,483 - octoprint.server - INFO - Goodbye!
2019-09-26 01:26:15,421 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:26:15,422 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:26:15,423 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:26:15,903 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:26:16,883 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:26:16,977 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:26:17,001 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:26:17,002 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:26:17,067 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:26:17,085 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:26:17,086 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:26:17,108 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:26:17,791 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:26:18,348 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:26:18,349 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:26:18,349 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:26:18,352 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:26:18,358 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:26:18,370 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:26:18,377 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:26:18,378 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:26:18,803 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:26:19,006 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:26:19,007 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:26:19,009 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:26:19,010 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:26:19,011 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:26:19,012 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:26:19,013 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:26:19,023 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:26:19,079 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:26:19,099 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:26:19,133 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5110>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5110>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,136 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,147 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f49d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f49d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,153 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16bfdf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16bfdf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,159 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4770>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4770>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,165 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f45d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f45d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,171 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4130>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4130>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,761 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:26:19,762 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:26:19,762 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:30:07,782 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=de', 'path': u'/', '_count': 1, '_timestamp': 1569457807.782871, 'base_url': u'http://169.254.230.48/'}
2019-09-26 01:30:13,485 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:169.254.230.50
2019-09-26 01:30:30,261 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:169.254.230.50
2019-09-26 01:30:40,434 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc310>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc310>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:30:50,457 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc450>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc450>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:00,480 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb39b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb39b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:10,502 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xad1051d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xad1051d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:20,527 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb3b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb3b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:20,564 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:31:20,578 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:169.254.230.50) 26.57ms
2019-09-26 01:31:20,920 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:169.254.230.50
2019-09-26 01:32:01,210 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:169.254.230.50
2019-09-26 01:38:22,458 - octoprint.server - INFO - Shutting down...
2019-09-26 01:38:23,190 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:38:23,193 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:38:23,206 - octoprint.server - INFO - Goodbye!
2019-09-26 01:38:38,791 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:38,792 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:38:38,792 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,184 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:38:39,185 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:38:39,233 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,227 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,332 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:38:40,355 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:38:40,355 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,419 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,437 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:38:40,438 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:38:40,462 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:38:41,139 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:41,683 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:38:41,685 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:41,685 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:41,688 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:38:41,693 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:38:41,705 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:38:41,713 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:38:41,726 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:38:42,167 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:38:42,359 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:38:42,361 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:38:42,362 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:38:42,363 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:38:42,365 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:38:42,366 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:38:42,367 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:38:42,376 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:38:42,383 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:38:42,402 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:38:42,430 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe5ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe5ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,432 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe59f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe59f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,442 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f83750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f83750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,443 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff14f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff14f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,451 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff1810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff1810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,463 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb332bf90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb332bf90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,469 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb297bf30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb297bf30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:43,049 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:43,050 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:43,050 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:43,137 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:38:48,352 - octoprint.server.preemptive_cache - INFO - ... done in 5.21s
2019-09-26 01:39:28,915 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:39:32,798 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:38:39,206 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,207 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:38:39,208 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,605 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:38:39,606 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:38:39,719 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,711 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,818 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:38:40,841 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:38:40,842 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,906 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,924 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:38:40,925 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:38:40,949 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:38:41,645 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:42,201 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:38:42,202 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:42,203 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:42,206 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:38:42,213 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:38:42,226 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:38:42,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:38:42,243 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:38:42,713 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:38:42,852 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:38:42,853 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:38:42,854 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:38:42,855 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:38:42,858 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:38:42,858 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:38:42,861 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:38:42,869 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:38:42,876 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:38:42,896 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:38:42,926 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,931 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,938 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,939 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f705d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f705d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,945 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15cae70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15cae70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,953 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15caa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15caa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,961 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f70670>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f70670>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:43,499 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:43,500 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:43,500 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:43,560 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:38:48,856 - octoprint.server.preemptive_cache - INFO - ... done in 5.30s
2019-09-26 01:48:03,465 - octoprint.server - INFO - Shutting down...
2019-09-26 01:48:03,978 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:48:03,980 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:48:03,994 - octoprint.server - INFO - Goodbye!
2019-09-26 01:48:10,353 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,355 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:10,356 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,751 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,752 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,826 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,856 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,962 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,985 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,986 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:12,049 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:12,067 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:12,069 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:12,093 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,841 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:13,394 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:13,396 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:13,396 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:13,399 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:13,404 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:13,416 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:13,424 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:13,436 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,959 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,991 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,993 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,994 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,995 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,997 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,997 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,999 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:14,007 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:14,014 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:14,034 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:14,064 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,065 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,073 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,082 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1850>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1850>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,088 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,093 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,099 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,630 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,631 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,632 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,709 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:19,958 - octoprint.server.preemptive_cache - INFO - ... done in 5.25s
2019-09-26 01:48:57,992 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:49:05,427 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:48:09,968 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:09,970 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:09,972 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,358 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,359 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,406 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,380 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,488 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,512 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,512 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,579 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,598 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:11,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:11,624 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,343 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:12,893 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:12,894 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:12,894 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:12,898 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:12,903 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:12,915 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:12,920 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:12,932 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,366 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,515 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,516 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,517 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,519 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,521 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,522 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,523 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:13,531 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:13,539 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:13,558 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:13,586 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5bf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5bf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,587 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,600 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168c710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168c710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,609 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1b70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1b70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,614 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,619 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,625 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5590>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5590>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,155 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,156 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,156 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,220 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:19,574 - octoprint.server.preemptive_cache - INFO - ... done in 5.35s
2019-09-26 01:48:33,702 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:39,904 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:39,958 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:39,975 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=de', 'path': u'/', '_count': 1, '_timestamp': 1569458919.975235, 'base_url': u'http://10.55.100.109/'}
2019-09-26 01:48:42,263 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:48:42,980 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:43,102 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:49:13,822 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2190>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2190>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:49:43,912 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bfd0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bfd0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:50:13,981 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab6f44f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab6f44f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:50:44,067 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bf10>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bf10>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:51:14,134 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2db0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2db0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:51:14,155 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:51:14,167 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 19.84ms
2019-09-26 01:51:14,276 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:51:14,400 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:51:14,405 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:51:16,009 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:51:16,079 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:51:18,401 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:51:18,409 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 16.69ms
2019-09-26 01:51:18,453 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:48:10,031 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,033 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:10,035 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,423 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,423 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,471 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,443 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,546 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,569 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,570 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,633 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,651 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:11,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:11,675 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,370 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:12,922 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:12,924 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:12,924 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:12,927 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:12,932 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:12,944 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:12,949 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:12,961 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,399 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,572 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,574 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,574 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,576 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,578 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,579 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,581 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:13,589 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:13,595 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:13,614 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:13,643 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,645 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,660 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e46b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e46b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,662 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4410>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4410>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,674 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,680 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4c70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4c70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,686 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4e30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4e30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,262 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,263 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,263 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,328 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 01:48:19,589 - octoprint.server.preemptive_cache - INFO - ... done in 5.26s
2019-09-26 01:48:19,589 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:21,823 - octoprint.server.preemptive_cache - INFO - ... done in 2.23s
2019-09-26 01:48:43,244 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:43,619 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:43,649 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:44,296 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:48:44,300 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.62ms
2019-09-26 01:48:44,341 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:48:53,579 - tornado.access - WARNING - 400 POST /api/plugin/appkeys (::ffff:10.55.102.11) 16.72ms
2019-09-26 02:03:11,548 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:04:37,449 - tornado.access - WARNING - 400 GET /api/files (::ffff:10.55.102.11) 7.42ms
2019-09-26 02:18:11,551 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:33:11,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:37:44,801 - tornado.access - WARNING - 404 GET /api/files/?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 7.78ms
2019-09-26 02:37:49,736 - tornado.access - WARNING - 404 GET /api/files/root?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.97ms
2019-09-26 02:44:14,198 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 16.91ms
2019-09-26 02:44:19,390 - tornado.access - WARNING - 404 GET /api/files/?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.29ms
2019-09-26 02:48:11,555 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:50:27,056 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 02:50:27,058 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 02:50:50,036 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.98s
2019-09-26 02:50:51,041 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test/griff.gcode
2019-09-26 02:50:51,042 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test/griff.gcode
2019-09-26 02:51:13,960 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test/griff.gcode finished, needed 22.92s
2019-09-26 02:51:14,967 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/Test4/Test5/griff.gcode
2019-09-26 02:51:14,969 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/Test4/Test5/griff.gcode
2019-09-26 02:51:37,923 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/Test4/Test5/griff.gcode finished, needed 22.96s
2019-09-26 02:51:38,928 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/Test4/griff.gcode
2019-09-26 02:51:38,932 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/Test4/griff.gcode
2019-09-26 02:52:01,316 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/Test4/griff.gcode finished, needed 22.39s
2019-09-26 02:52:02,322 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 02:52:02,323 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 02:52:24,875 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.55s
2019-09-26 02:53:59,858 - octoprint - ERROR - Exception on /api/files/local/Test4/Test234 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 02:53:59,862 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 19.89ms
2019-09-26 02:54:03,374 - tornado.access - WARNING - 404 GET /api/files/local/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.15ms
2019-09-26 03:03:11,556 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:18:11,558 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:28:36,205 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 03:28:36,397 - octoprint.server - INFO - Shutting down...
2019-09-26 03:28:37,136 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 03:28:37,141 - octoprint.events - INFO - Event loop shut down
2019-09-26 03:28:37,155 - octoprint.server - INFO - Goodbye!
2019-09-26 03:28:38,260 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:28:38,262 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 03:28:38,262 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:06,990 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:06,991 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 03:17:06,994 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:07,382 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 03:17:07,382 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 03:17:07,430 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 03:17:08,404 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 03:17:08,507 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 03:17:08,530 - octoprint.server - INFO - Intermediary server started
2019-09-26 03:17:08,531 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 03:17:08,594 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 03:17:08,612 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 03:17:08,873 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 03:17:08,896 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 03:17:09,559 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 03:17:10,109 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 03:17:10,110 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 03:17:10,111 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 03:17:10,114 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 03:17:10,119 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 03:17:10,131 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 03:17:10,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 03:17:10,148 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 03:17:10,533 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 03:17:11,034 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 03:17:11,038 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 03:17:11,039 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 03:17:11,042 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 03:17:11,049 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 03:17:11,053 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 03:17:11,061 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 03:17:11,073 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 03:17:11,090 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 03:17:11,143 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 03:17:11,201 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb3265570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb3265570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,218 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f5570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f5570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,238 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a630>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a630>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,246 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a8b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a8b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,250 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168af10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168af10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,258 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16ddd90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16ddd90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,264 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa610>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa610>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,819 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 03:17:11,820 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 03:17:11,821 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 03:17:11,890 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 03:17:17,252 - octoprint.server.preemptive_cache - INFO - ... done in 5.36s
2019-09-26 03:17:17,252 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 03:17:19,268 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 03:17:19,402 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:19,642 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 03:17:19,908 - octoprint.server.preemptive_cache - INFO - ... done in 2.66s
2019-09-26 03:17:54,309 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:54,394 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 03:17:54,925 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 03:17:54,954 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:55,590 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 03:17:55,594 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.22ms
2019-09-26 03:17:55,636 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 03:20:08,256 - tornado.access - WARNING - 404 GET /api/files/local/test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.47ms
2019-09-26 03:32:08,509 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:47:08,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:56:49,908 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:49,912 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.97ms
2019-09-26 03:56:50,649 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:50,653 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.80ms
2019-09-26 03:56:51,097 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:51,100 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.22ms
2019-09-26 03:58:38,979 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:38,983 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.49ms
2019-09-26 03:58:39,778 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:39,782 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.89ms
2019-09-26 03:58:40,517 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:40,521 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.66ms
2019-09-26 03:58:42,306 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,310 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.31ms
2019-09-26 03:58:42,675 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,678 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.83ms
2019-09-26 03:58:42,967 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,971 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.26ms
2019-09-26 03:58:46,713 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:46,717 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.49ms
2019-09-26 04:02:08,513 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:17:08,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:32:08,516 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:47:08,519 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:02:08,521 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:17:08,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:32:08,527 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:47:08,530 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:50:31,194 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 05:50:31,226 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2019-09-26 06:02:08,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:17:08,534 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:32:08,537 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:47:08,541 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:02:08,544 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:17:08,547 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:32:08,549 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:47:08,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:00:31,985 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 08:00:32,074 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 08:00:35,450 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 08:00:35,578 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 08:00:37,973 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 08:00:37,983 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.94ms
2019-09-26 08:01:08,230 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab14a4d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab14a4d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:01:38,305 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb16dd6f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb16dd6f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:02:08,366 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa5b0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa5b0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:02:08,556 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:02:38,436 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1a8490>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1a8490>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:03:08,495 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1506d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1506d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:03:08,600 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 08:17:08,557 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:21:03,956 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 08:17:06,882 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 08:17:06,884 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 08:17:06,884 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 08:17:07,275 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 08:17:07,275 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 08:17:07,323 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 08:17:08,295 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 08:17:08,398 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 08:17:08,421 - octoprint.server - INFO - Intermediary server started
2019-09-26 08:17:08,422 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 08:17:08,484 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 08:17:08,502 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 08:17:08,764 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 08:17:08,787 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 08:17:09,451 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 08:17:10,001 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 08:17:10,002 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 08:17:10,003 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 08:17:10,006 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 08:17:10,011 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 08:17:10,023 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 08:17:10,028 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 08:17:10,040 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 08:17:10,424 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 08:17:10,926 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 08:17:10,929 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 08:17:10,930 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 08:17:10,934 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 08:17:10,941 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 08:17:10,946 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 08:17:10,947 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 08:17:10,965 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 08:17:10,982 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 08:17:11,026 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 08:17:11,061 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,074 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,075 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,085 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4fcd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4fcd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,087 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4f530>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4f530>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,094 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,102 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,664 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 08:17:11,665 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 08:17:11,666 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 08:17:11,730 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 08:17:17,115 - octoprint.server.preemptive_cache - INFO - ... done in 5.39s
2019-09-26 08:17:17,115 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 08:17:19,526 - octoprint.server.preemptive_cache - INFO - ... done in 2.41s
2019-09-26 08:32:08,400 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:47:08,402 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:02:08,405 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:17:08,406 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:31:37,863 - tornado.access - WARNING - 404 GET /api/files/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.92ms
2019-09-26 09:32:08,409 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:47:08,410 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:54:14,631 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.39ms
2019-09-26 09:54:15,179 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.51ms
2019-09-26 09:54:15,824 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.84ms
2019-09-26 09:54:16,632 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.65ms
2019-09-26 09:54:20,507 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.25ms
2019-09-26 10:02:08,412 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:17:08,415 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:25:36,500 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:25:40,277 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:40,327 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:40,443 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 10:25:41,883 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:25:41,943 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:42,547 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 10:25:42,552 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.81ms
2019-09-26 10:25:42,649 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 10:30:06,994 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:30:07,098 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 10:30:07,506 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:30:07,535 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:30:09,138 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 10:30:09,143 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.51ms
2019-09-26 10:30:09,180 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 10:32:08,416 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:47:08,417 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:02:08,419 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:17:08,421 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:32:08,422 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:47:08,423 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:57:00,981 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 11:57:00,986 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 11:57:24,216 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 23.24s
2019-09-26 12:02:08,425 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:17:08,426 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:32:08,429 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:33:54,246 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.66ms
2019-09-26 12:34:23,167 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.34ms
2019-09-26 12:34:54,944 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.20ms
2019-09-26 12:35:19,987 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.07ms
2019-09-26 12:37:10,829 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.39ms
2019-09-26 12:38:06,973 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.70ms
2019-09-26 12:38:15,039 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.14ms
2019-09-26 12:40:01,905 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:01,999 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:40:02,355 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:40:02,386 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:02,961 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:40:02,965 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.88ms
2019-09-26 12:40:03,003 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:40:51,762 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.68ms
2019-09-26 12:40:58,917 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.14ms
2019-09-26 12:40:59,559 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.28ms
2019-09-26 12:41:00,039 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.35ms
2019-09-26 12:41:39,524 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:39,617 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:41:39,980 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:41:40,013 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:40,603 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:41:40,612 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.13ms
2019-09-26 12:41:40,670 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:07,003 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,005 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,005 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,396 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,397 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,445 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,417 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,520 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,543 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,544 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,607 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,625 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,890 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,913 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,577 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,128 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,129 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,130 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,133 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,139 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,150 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,156 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,167 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,551 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:11,047 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:11,050 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:11,051 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,055 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,059 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,065 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,075 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,087 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,104 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,148 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,204 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6a710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6a710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,227 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6afd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6afd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,233 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,254 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15e08d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15e08d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,257 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,272 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,288 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,807 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,809 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,809 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,873 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,125 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:16,746 - tornado.access - WARNING - 404 GET /static/webassets/packed_client.js?68a8d0b0 (::ffff:10.55.102.11) 7.37ms
2019-09-26 12:17:16,750 - tornado.access - WARNING - 404 GET /static/webassets/packed_core.js?b00f909b (::ffff:10.55.102.11) 2.21ms
2019-09-26 12:17:17,129 - tornado.access - WARNING - 404 GET /static/webassets/packed_core.js?b00f909b (::ffff:10.55.102.11) 1.54ms
2019-09-26 12:17:17,404 - octoprint.server.preemptive_cache - INFO - ... done in 5.53s
2019-09-26 12:17:17,405 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,639 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,766 - octoprint.server.preemptive_cache - INFO - ... done in 2.36s
2019-09-26 12:17:20,468 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:20,533 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:21,105 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:21,109 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.66ms
2019-09-26 12:17:21,182 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:21,223 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:21,230 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:17:21,469 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:21,497 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:22,028 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:22,038 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.70ms
2019-09-26 12:17:22,080 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:51,314 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:51,316 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:17:54,153 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:54,214 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:17:54,476 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:54,508 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:55,304 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:55,309 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.27ms
2019-09-26 12:17:55,345 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:18:14,178 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.86s
2019-09-26 12:32:08,522 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:47:08,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:51:57,126 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:51:57,127 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:52:09,029 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:52:09,031 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:52:31,278 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.25s
2019-09-26 12:54:01,314 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:54:01,317 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:54:24,075 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.76s
2019-09-26 12:57:37,949 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 16.06ms
2019-09-26 12:57:47,821 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.59ms
2019-09-26 12:58:16,846 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:58:16,943 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:58:17,332 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:58:17,363 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:58:17,944 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:58:17,948 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.13ms
2019-09-26 12:58:17,990 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:02:08,526 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:02:14,025 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.05ms
2019-09-26 13:02:14,570 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.60ms
2019-09-26 13:02:16,920 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:02:17,099 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:02:17,264 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:02:17,454 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.88ms
2019-09-26 13:02:17,631 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.29ms
2019-09-26 13:02:17,806 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:02:17,980 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.64ms
2019-09-26 13:02:18,376 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.24ms
2019-09-26 13:02:18,395 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:02:18,490 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.40ms
2019-09-26 13:02:21,040 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:04:23,960 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.39ms
2019-09-26 13:04:25,509 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:04:29,153 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:06:11,345 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:06:29,025 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 13:06:29,197 - octoprint.server - INFO - Shutting down...
2019-09-26 13:06:29,734 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 13:06:29,736 - octoprint.events - INFO - Event loop shut down
2019-09-26 13:06:29,742 - octoprint.server - INFO - Goodbye!
2019-09-26 13:06:30,850 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:06:30,851 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:06:30,852 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,077 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,078 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,081 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,527 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,528 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,575 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,549 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,658 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,681 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,681 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,745 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,763 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:09,013 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:09,036 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,699 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,249 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,250 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,251 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,254 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,260 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,271 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,277 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,671 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,684 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,685 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,686 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:10,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:10,690 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:10,691 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:10,695 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:10,700 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:10,707 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:10,728 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:10,756 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206ba70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206ba70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,762 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20760b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20760b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,769 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2076230>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2076230>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,775 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d11f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d11f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,779 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d12b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d12b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,788 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206bd30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206bd30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,793 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2046f30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2046f30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,302 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,304 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,389 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,858 - octoprint.server.preemptive_cache - INFO - ... done in 5.47s
2019-09-26 12:17:16,859 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,162 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 12:17:30,604 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:30,732 - tornado.access - WARNING - 404 GET /favicon.ico (::ffff:10.55.102.11) 7.29ms
2019-09-26 12:17:31,139 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:31,169 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:31,849 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:31,855 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.23ms
2019-09-26 12:17:31,897 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:18:56,317 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:18:56,328 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:19:18,939 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.62s
2019-09-26 12:17:06,952 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:06,953 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:06,955 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,342 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,342 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,390 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,361 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,465 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,488 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,488 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,557 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,575 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,835 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,857 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,522 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,072 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,073 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,073 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,077 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,082 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,094 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,099 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,110 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,503 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,992 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,995 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,999 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,002 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,008 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,011 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,020 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,031 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,046 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,096 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,153 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,158 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,186 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1692730>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1692730>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,197 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,202 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,204 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,210 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,755 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,756 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,757 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,823 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:17,077 - octoprint.server.preemptive_cache - INFO - ... done in 5.25s
2019-09-26 12:17:17,077 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:18,175 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,522 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:19,624 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,986 - octoprint.server.preemptive_cache - INFO - ... done in 2.91s
2019-09-26 12:17:20,315 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:20,319 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.64ms
2019-09-26 12:17:20,374 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:29,426 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:29,427 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:17:40,269 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:40,273 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:18:02,727 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.46s
2019-09-26 12:18:03,733 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:18:03,735 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:18:26,302 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.57s
2019-09-26 12:21:42,588 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 12:21:42,763 - octoprint.server - INFO - Shutting down...
2019-09-26 12:21:43,124 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 12:21:43,127 - octoprint.events - INFO - Event loop shut down
2019-09-26 12:21:43,132 - octoprint.server - INFO - Goodbye!
2019-09-26 12:21:44,301 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:21:44,302 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:21:44,303 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:23:07,734 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:23:07,736 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:23:07,736 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,008 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,009 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,009 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,398 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,399 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,447 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,423 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,529 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,552 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,553 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,617 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,895 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,918 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,584 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,132 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,133 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,134 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,137 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,142 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,154 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,159 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,171 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,577 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:11,065 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:11,067 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:11,068 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,069 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,071 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,073 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,078 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,082 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,089 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,113 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,142 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb42f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb42f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,148 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2e70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2e70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,155 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a190>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a190>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,156 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,164 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4ac90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4ac90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,172 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,178 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,720 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,721 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,721 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,792 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:17,239 - octoprint.server.preemptive_cache - INFO - ... done in 5.45s
2019-09-26 12:17:17,239 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,602 - octoprint.server.preemptive_cache - INFO - ... done in 2.36s
2019-09-26 12:17:22,763 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:23,492 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:23,524 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:24,128 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:24,133 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.44ms
2019-09-26 12:17:24,198 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:26,998 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:17:27,003 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:17:28,016 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:17:28,023 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:17:28,040 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:17:28,070 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:17:28,075 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:17:28,077 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:17:28,082 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:19:01,938 - tornado.access - WARNING - 404 GET /api/files/local/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.66ms
2019-09-26 12:20:47,310 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.05ms
2019-09-26 12:20:47,871 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.42ms
2019-09-26 12:20:52,582 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.11ms
2019-09-26 12:25:12,163 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.74ms
2019-09-26 12:28:30,999 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.48ms
2019-09-26 12:28:31,637 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.27ms
2019-09-26 12:28:32,086 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.71ms
2019-09-26 12:32:08,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:36:20,816 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.09ms
2019-09-26 12:41:07,494 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:07,610 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:41:07,634 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:41:07,658 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:41:07,661 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:41:08,070 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:41:08,156 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.76ms
2019-09-26 12:41:08,675 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:08,682 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:41:08,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:08,731 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:41:08,737 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:41:08,741 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:41:08,746 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:41:15,605 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.71ms
2019-09-26 12:41:34,715 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.81ms
2019-09-26 12:41:45,893 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.71ms
2019-09-26 12:42:42,014 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:42:42,114 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:42:42,118 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:42:42,156 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:42:42,159 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:42:42,289 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:42:42,601 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.67ms
2019-09-26 12:42:43,174 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:43,181 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:42:43,193 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:43,233 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:42:43,239 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:42:43,243 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:42:43,247 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:47:08,532 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:48:13,209 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:48:13,308 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:48:13,309 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:48:13,357 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:48:13,359 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:48:13,365 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:48:13,543 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.23ms
2019-09-26 12:48:14,373 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:14,383 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:48:14,393 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:14,435 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:48:14,443 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:48:14,447 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:48:14,452 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:48:42,917 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:48:43,023 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:48:43,024 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:48:43,123 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:48:43,129 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:48:43,366 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:48:43,683 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.79ms
2019-09-26 12:48:44,140 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:44,150 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:48:44,167 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:44,212 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:48:44,219 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:48:44,223 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:48:44,228 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:50:17,929 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:50:18,151 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:50:18,152 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:50:18,154 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:50:18,196 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:50:18,199 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:50:18,995 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.55ms
2019-09-26 12:50:19,214 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:50:19,222 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:50:19,235 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:50:19,288 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:50:19,297 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:50:19,301 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:50:19,308 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:54:18,776 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:18,903 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:18,907 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:54:18,994 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:54:18,998 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:19,254 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:54:19,624 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.48ms
2019-09-26 12:54:20,013 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:20,023 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:20,034 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:20,093 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:54:20,145 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:54:20,178 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:54:20,203 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 13:02:08,534 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:17:07,029 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,031 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,031 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,429 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,430 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,478 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,452 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,556 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,579 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,580 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,643 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,661 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,905 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,928 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,591 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,143 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,144 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,145 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,148 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,153 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,165 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,172 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,185 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,571 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,582 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,583 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,584 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:10,586 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:10,588 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:10,590 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:10,591 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:10,599 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:10,606 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:10,625 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:10,654 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2a30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2a30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,660 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,665 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,673 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,682 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,689 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6bd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6bd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,690 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,226 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,227 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,228 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,294 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,694 - octoprint.server.preemptive_cache - INFO - ... done in 5.40s
2019-09-26 12:17:16,694 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:18,991 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 12:17:20,450 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 12:17:20,475 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.43ms
2019-09-26 12:17:20,512 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:20,538 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:20,558 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:20,583 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:17:20,614 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:17:20,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.11ms
2019-09-26 12:17:20,654 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.76ms
2019-09-26 12:17:34,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 12:17:34,272 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:34,323 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:17:34,339 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.55ms
2019-09-26 12:17:34,355 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:34,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:17:34,376 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:34,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.88ms
2019-09-26 12:17:34,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.41ms
2019-09-26 12:17:34,427 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.67ms
2019-09-26 12:17:34,441 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 12:17:34,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.31ms
2019-09-26 12:17:34,469 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:17:34,483 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:34,496 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.02ms
2019-09-26 12:17:34,510 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:17:34,524 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.92ms
2019-09-26 12:17:34,537 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:34,551 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,565 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:17:34,579 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 12:17:34,593 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 12:17:34,607 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:17:34,622 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.95ms
2019-09-26 12:17:34,651 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.72ms
2019-09-26 12:17:34,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:17:34,679 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.21ms
2019-09-26 12:17:34,693 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:34,707 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.02ms
2019-09-26 12:17:34,740 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.59ms
2019-09-26 12:17:34,754 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.60ms
2019-09-26 12:17:34,769 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.55ms
2019-09-26 12:17:34,782 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:17:34,796 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:34,814 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:17:34,828 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,898 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 60.64ms
2019-09-26 12:17:34,912 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:17:35,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.53ms
2019-09-26 12:17:36,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:17:37,249 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 12:17:38,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:39,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:17:40,248 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:17:41,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:17:42,265 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:17:43,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 12:17:44,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:17:45,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:17:46,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:47,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 12:17:48,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:49,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:17:50,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:17:51,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:17:52,248 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:17:53,270 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 12:17:54,255 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 12:17:55,255 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 12:17:56,252 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 12:17:57,236 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.52ms
2019-09-26 12:17:58,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:17:59,239 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:18:00,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:18:01,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 12:18:02,245 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:18:03,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:18:04,265 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:18:05,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 12:18:06,241 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 12:18:07,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:18:08,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:09,239 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:10,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 12:18:10,657 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 12:18:11,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:12,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 12:18:13,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:18:14,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:18:15,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:18:16,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:18:17,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:19:01,158 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:19:01,288 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:19:01,322 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:19:01,324 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:19:01,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 12:19:02,331 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:02,335 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:19:02,341 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:02,342 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:19:03,664 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:03,664 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 0, line history has 0 entries.
2019-09-26 12:19:03,667 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 1
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: tmc2130_init(), mode=NORMAL
| Recv: tmc2130_set_wave 0 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 1 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD card ok
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Printer requested line 1 but no sufficient history is available, can't resend
| Send: N0 M110 N0*125
2019-09-26 12:19:04,570 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:26:31,758 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:26:41,910 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:26:41,978 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:26:42,084 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:26:42,100 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:26:42,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:26:42,146 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:26:42,160 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 12:26:42,173 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,187 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:26:42,217 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.41ms
2019-09-26 12:26:42,245 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.56ms
2019-09-26 12:26:42,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,329 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:26:42,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.51ms
2019-09-26 12:26:43,112 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:43,118 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:26:43,130 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:43,132 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:26:43,153 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:45,038 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:28:18,139 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.15ms
2019-09-26 12:28:25,210 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.75ms
2019-09-26 12:28:38,173 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.70ms
2019-09-26 12:28:51,499 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:28:51,517 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:28:51,523 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:06,545 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 12:29:06,551 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:06,555 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Cancelling"
2019-09-26 12:29:06,559 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 12:29:06,573 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 12:29:09,860 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:09,864 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:29:11,969 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Printing"
2019-09-26 12:29:11,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: Unknown M code: $1 M108
| Changing monitoring state from "Cancelling" to "Printing"
| Recv: ok
| Send: N2 M105*37
| Send: N3 M84*28
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:29:12,034 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2019-09-26 12:29:24,621 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:24,635 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:29:24,642 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:24,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:24,662 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:30:29,604 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 12:30:29,610 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:30:29,617 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 12:30:29,623 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 12:30:29,633 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 12:30:32,873 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:30:32,875 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:30:34,991 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M84*29
| Recv: Unknown M code: $1 M108
| Recv: ok
| Send: N3 M104 T0 S0*34
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:30:35,040 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 12:32:08,558 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:34:24,371 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:34:24,489 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:34:24,562 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:34:24,613 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:34:24,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:34:25,048 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 12:34:25,630 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:25,635 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:34:25,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:25,650 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:34:25,659 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:30,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:56,478 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:34:56,607 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:34:56,674 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:34:56,708 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:34:56,716 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:34:57,034 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:34:57,727 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:57,734 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:34:57,746 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:57,751 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:34:57,755 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:35:03,088 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:34,599 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:36:34,766 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:36:34,837 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:36:34,853 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:36:34,855 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:36:35,501 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:36:35,868 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:35,872 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:36:35,883 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:35,885 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:36:35,893 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:39,131 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:36:39,132 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:45,882 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M105*38
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok T:58.3 /0.0 B:33.1 /0.0 T0:58.3 /0.0 @:0 B@:0 P:30.9 A:33.5
| Send: N2 M105*37
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:37:44,290 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:37:44,421 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:37:44,500 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:37:44,569 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:37:44,593 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:37:44,962 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:37:45,617 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:45,622 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:37:45,634 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:45,637 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:37:45,645 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:50,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:18,099 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:39:18,201 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:39:18,232 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:39:18,266 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.79ms
2019-09-26 12:39:18,277 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:39:18,286 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:39:19,158 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:39:19,296 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:19,302 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:39:19,315 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:19,319 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:39:19,331 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:24,652 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:14,775 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:14,910 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:40:14,939 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:40:14,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.87ms
2019-09-26 12:40:14,988 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:40:14,991 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:40:15,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 12:40:16,006 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:16,013 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:40:16,026 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:40:16,027 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:21,360 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:21,363 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:03,460 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:03,597 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:41:03,671 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:41:03,693 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:41:03,695 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:41:03,902 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:41:04,710 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:04,730 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:41:04,745 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:04,749 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:41:04,763 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:06,435 - tornado.access - WARNING - 403 POST /api/files/local/griff.gcode (::ffff:10.55.102.11) 6.68ms
2019-09-26 12:41:10,067 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:14,598 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:42:14,744 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:42:14,773 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:42:14,799 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:42:14,808 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:42:15,465 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 12:42:15,821 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:15,827 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:42:15,854 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:15,859 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:42:15,866 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:17,241 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:42:17,254 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:42:17,260 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:42:21,175 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:21,177 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:21,181 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:42:23,343 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:42:50,163 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:43:00,314 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 12:43:00,391 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:43:00,512 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:43:00,527 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:43:00,547 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:43:00,561 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.05ms
2019-09-26 12:43:00,575 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:43:00,590 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.18ms
2019-09-26 12:43:00,603 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 12:43:00,616 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.55ms
2019-09-26 12:43:00,630 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:43:00,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:43:00,677 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.61ms
2019-09-26 12:43:00,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.72ms
2019-09-26 12:43:00,720 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.11ms
2019-09-26 12:43:01,469 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:43:01,534 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:01,537 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:43:01,542 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:43:01,543 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:06,892 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:06,894 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:27,531 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:27,631 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:46:27,662 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:46:27,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.43ms
2019-09-26 12:46:27,725 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:46:27,729 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:46:28,629 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.58ms
2019-09-26 12:46:28,738 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:28,744 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:46:28,754 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:28,758 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:46:28,763 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:34,094 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:53,377 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:53,440 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:46:53,812 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:46:53,852 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:54,441 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:46:54,445 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.11ms
2019-09-26 12:46:54,487 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:46:57,422 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:47:08,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:47:24,132 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:47:24,239 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:47:24,319 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:47:24,390 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Connection error, see Terminal tab"
2019-09-26 12:47:24,411 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: None SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2661 (hook default)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2661, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2650, in default
serial_obj.open()
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-09-26 12:47:24,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.64ms
2019-09-26 12:47:25,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 12:47:26,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 12:47:27,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 12:47:28,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 12:47:29,684 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 12:47:30,689 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:47:31,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 12:47:32,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:47:33,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 12:47:34,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 12:47:35,714 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 12:47:36,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 12:47:37,703 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 12:47:38,684 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 12:47:39,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 12:47:40,692 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 12:47:41,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 12:47:42,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 12:47:43,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:47:44,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 12:47:45,687 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 12:47:46,711 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 12:47:47,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 12:47:48,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:47:49,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 12:47:50,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 12:47:51,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 12:47:52,687 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 12:47:53,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 12:47:54,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 12:47:56,299 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 12:47:57,322 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:47:58,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:47:59,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:48:00,307 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 12:48:01,297 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 12:48:02,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.36ms
2019-09-26 12:48:03,316 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 12:48:04,301 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 12:48:05,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:48:06,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 12:48:07,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:08,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:48:09,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:48:10,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 12:48:11,288 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:48:12,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:48:13,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 12:48:14,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 12:48:15,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:48:16,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 12:48:17,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 12:48:18,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 12:48:19,564 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:20,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:21,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 12:48:22,300 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.60ms
2019-09-26 12:48:23,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 12:48:24,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:48:25,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 12:48:26,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 12:48:27,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 12:48:28,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 12:48:29,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:30,320 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 12:48:31,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 12:48:32,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 12:48:33,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:48:34,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 12:48:35,300 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:48:36,313 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:48:37,311 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 12:48:38,315 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:48:39,307 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:48:40,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 12:48:41,329 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 12:48:42,295 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:43,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:48:44,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 12:48:45,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:46,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 12:48:47,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 12:48:48,306 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 12:48:49,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:48:50,302 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 12:48:51,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:48:52,318 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 12:48:52,693 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:49:01,666 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:49:01,775 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:49:01,798 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:49:01,801 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:49:02,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 12:49:02,810 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:02,817 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:49:02,830 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:02,832 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:49:02,840 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:06,074 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:06,076 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:49:12,828 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M105*38
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok T:209.5 /0.0 B:63.6 /0.0 T0:209.5 /0.0 @:0 B@:0 P:32.4 A:36.7
| Send: N2 M105*37
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:51:32,306 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:51:32,421 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:51:32,494 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:51:32,535 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:51:32,546 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:51:32,751 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.06ms
2019-09-26 12:51:33,557 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:33,564 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:51:33,577 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:51:33,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:38,914 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:38,916 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:41,085 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:53:41,155 - tornado.access - WARNING - 403 GET /api/connection (::ffff:10.55.102.11) 11.78ms
2019-09-26 12:53:41,220 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:53:41,252 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:53:41,274 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:53:41,276 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:53:41,604 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.56ms
2019-09-26 12:53:42,286 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:42,292 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:53:42,305 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:42,308 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:53:45,552 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:45,555 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:53:45,559 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:22,067 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:22,257 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:22,285 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:54:22,314 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:54:22,321 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:22,474 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:54:23,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:23,339 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:23,351 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:23,353 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:54:23,360 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:28,685 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:52,988 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:53,190 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:53,218 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:54:53,248 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:54:53,251 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:53,936 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 12:54:54,265 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:54,269 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:54,282 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:54,283 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:54:54,305 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:59,616 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:55:26,742 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:55:26,749 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:55:26,751 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:55:26,754 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:55:26,760 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:55:29,090 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:55:35,710 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 12:56:41,837 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:56:42,040 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 12:56:42,075 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:56:42,103 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:56:42,105 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:56:42,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 12:56:43,116 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:43,123 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:56:43,135 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:43,136 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:56:43,142 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:48,476 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:03,219 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:59:03,430 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:59:03,459 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:59:03,490 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:59:03,491 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:59:03,998 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.59ms
2019-09-26 12:59:04,504 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:04,506 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:59:04,520 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:04,524 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:59:04,530 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:09,863 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:02:08,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:03:38,553 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.25
2019-09-26 13:04:15,371 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:04:15,580 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:04:15,608 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:04:15,621 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.58ms
2019-09-26 13:04:15,644 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:04:15,647 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:04:16,526 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:04:16,656 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:16,663 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:04:16,678 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:16,680 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:04:16,688 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:19,922 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:19,923 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:04:25,998 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:04:26,004 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:04:26,007 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:04:26,011 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:26,017 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:04:28,117 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:04:29,667 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:06:21,358 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:06:27,186 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 13:06:27,270 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:06:27,288 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,304 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.44ms
2019-09-26 13:06:27,321 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,336 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.90ms
2019-09-26 13:06:27,375 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:06:27,378 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:06:27,547 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.08ms
2019-09-26 13:06:28,388 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:28,393 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:06:28,406 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:28,409 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:06:28,428 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:33,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:08:22,950 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:08:24,241 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:08:24,247 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:08:24,260 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:08:24,270 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:08:26,505 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:08:28,587 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:08:36,806 - tornado.access - WARNING - 403 GET /api/settings (::ffff:10.55.102.11) 5.86ms
2019-09-26 13:08:36,840 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:08:37,025 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:08:41,583 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:41,608 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:41,666 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:08:42,037 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:08:42,070 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:42,645 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:08:42,649 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.28ms
2019-09-26 13:08:42,692 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:08:54,567 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Pausing"
2019-09-26 13:09:04,577 - octoprint.printer.standard.job - INFO - Print job paused - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:09:21,277 - octoprint.util.comm - INFO - Changing monitoring state from "Pausing" to "Paused"
2019-09-26 13:12:25,490 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart
2019-09-26 13:12:25,692 - octoprint.server - INFO - Shutting down...
2019-09-26 13:12:26,527 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 13:12:26,532 - octoprint.events - INFO - Event loop shut down
2019-09-26 13:12:26,547 - octoprint.server - INFO - Goodbye!
2019-09-26 13:12:27,687 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:12:27,688 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:12:27,688 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2019-09-26 13:12:27,689 - octoprint.startup - INFO - Reason for safe mode: setting in config.yaml
2019-09-26 13:12:27,689 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:14:37,667 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 13:14:37,669 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 13:14:37,730 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:14:38,422 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:14:38,511 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 13:14:38,524 - octoprint.server - INFO - Intermediary server started
2019-09-26 13:14:38,524 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:14:38,588 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:14:38,603 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 13:14:38,858 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 13:14:38,878 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 13:14:39,435 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:14:39,990 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 13:14:39,992 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:14:39,992 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:14:39,995 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 13:14:40,001 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 13:14:40,010 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 13:14:40,016 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 13:14:40,029 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 13:14:40,387 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 13:14:40,880 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 13:14:40,882 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 13:14:40,883 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 13:14:40,884 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 13:14:40,886 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 13:14:40,889 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 13:14:40,890 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 13:14:40,897 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 13:14:40,903 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 13:14:40,913 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-09-26 13:14:40,925 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 13:14:40,925 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2019-09-26 13:14:41,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:14:41,601 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:14:41,602 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:14:41,603 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:14:41,671 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 13:14:42,345 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.80ms
2019-09-26 13:14:43,347 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.92ms
2019-09-26 13:14:44,579 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 50.33ms
2019-09-26 13:14:45,435 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 28.34ms
2019-09-26 13:14:46,344 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.87ms
2019-09-26 13:14:46,579 - octoprint.server.preemptive_cache - INFO - ... done in 4.91s
2019-09-26 13:14:46,580 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 13:14:47,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 8.44ms
2019-09-26 13:14:48,349 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.19ms
2019-09-26 13:14:48,881 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 13:14:49,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 13:14:50,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:14:51,346 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:14:52,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:14:53,349 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:14:54,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:14:55,348 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:14:56,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:14:57,348 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:14:58,347 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.56ms
2019-09-26 13:14:59,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:15:00,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:15:01,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:15:02,346 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:15:03,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:15:04,316 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:04,427 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.61ms
2019-09-26 13:15:05,049 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:15:05,083 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:05,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 13:15:05,737 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:15:05,741 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.98ms
2019-09-26 13:15:05,775 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:15:06,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:15:07,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:15:08,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.88ms
2019-09-26 13:15:09,344 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.55ms
2019-09-26 13:15:10,343 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:15:11,018 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53c90>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53c90>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:11,033 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb3195af0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb3195af0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:11,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:15:12,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:15:13,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.22ms
2019-09-26 13:15:14,319 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:15:14,420 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:15:14,429 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:15:14,548 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.94ms
2019-09-26 13:15:15,343 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.90ms
2019-09-26 13:15:15,442 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:15,451 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:15:15,464 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:15,468 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:15:15,473 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:20,803 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:41,088 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaae7d690>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaae7d690>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:41,090 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaaec8650>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaaec8650>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:54,481 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:59,682 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:16:00,336 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 13:16:01,078 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.56ms
2019-09-26 13:16:01,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:16:02,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.91ms
2019-09-26 13:16:03,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.55ms
2019-09-26 13:16:05,001 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:16:05,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:16:06,964 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.56ms
2019-09-26 13:16:07,961 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:16:08,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.08ms
2019-09-26 13:16:09,967 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.79ms
2019-09-26 13:16:10,144 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.25
2019-09-26 13:16:10,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:16:11,160 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadf2b10>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadf2b10>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:16:11,965 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.67ms
2019-09-26 13:16:12,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.02ms
2019-09-26 13:16:13,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.89ms
2019-09-26 13:16:14,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.87ms
2019-09-26 13:16:15,996 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:16:16,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.69ms
2019-09-26 13:16:17,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.35ms
2019-09-26 13:16:18,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.78ms
2019-09-26 13:16:19,970 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.87ms
2019-09-26 13:16:20,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.66ms
2019-09-26 13:16:21,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.73ms
2019-09-26 13:16:22,970 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.34ms
2019-09-26 13:16:23,968 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:16:24,964 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.45ms
2019-09-26 13:16:25,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:16:27,009 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:16:27,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:16:28,960 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 13:16:29,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.14ms
2019-09-26 13:16:30,983 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:16:31,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:16:32,968 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.87ms
2019-09-26 13:16:33,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.48ms
2019-09-26 13:16:34,983 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:16:35,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.37ms
2019-09-26 13:16:41,210 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab0e27d0>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab0e27d0>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:16:46,865 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:16:46,961 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.90ms
2019-09-26 13:16:47,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.82ms
2019-09-26 13:16:48,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:16:49,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:16:50,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:16:51,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:16:52,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:16:53,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:16:54,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:16:55,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:16:56,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:16:57,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.95ms
2019-09-26 13:16:58,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:16:59,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:17:00,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.62ms
2019-09-26 13:17:01,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:17:02,876 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:17:03,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.27ms
2019-09-26 13:17:04,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:17:05,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:17:06,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.02ms
2019-09-26 13:17:07,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:17:08,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.96ms
2019-09-26 13:17:09,866 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:17:10,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:17:11,279 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadd4470>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadd4470>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:17:11,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:17:12,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:17:13,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:17:14,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:17:15,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:17:16,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:17:17,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:17:18,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:17:19,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:17:20,884 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:17:21,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.74ms
2019-09-26 13:17:22,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.89ms
2019-09-26 13:17:23,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:17:24,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:17:25,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.19ms
2019-09-26 13:17:26,879 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.88ms
2019-09-26 13:17:27,882 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:17:28,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:17:29,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:17:30,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:17:31,877 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:17:32,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:17:33,881 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.43ms
2019-09-26 13:17:34,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:17:35,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:17:36,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.02ms
2019-09-26 13:17:37,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:17:38,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:17:39,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.19ms
2019-09-26 13:17:40,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:17:41,898 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:17:42,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:17:43,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 13:17:44,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:17:45,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:17:46,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:17:47,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:17:48,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:17:49,877 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:17:50,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:17:51,880 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:17:52,900 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:17:53,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:17:54,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:17:55,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:17:56,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:17:57,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:17:58,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:17:59,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:18:00,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:18:01,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:18:02,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.92ms
2019-09-26 13:18:03,901 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:18:04,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:18:05,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:18:06,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:18:07,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:18:08,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:18:09,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:18:10,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:18:11,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:18:12,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:18:13,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:18:14,947 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:18:15,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:18:16,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:18:25,864 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:18:25,954 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:18:26,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.78ms
2019-09-26 13:18:27,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:18:28,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:18:29,235 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:18:30,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:31,230 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:18:32,321 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:18:33,237 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:18:34,234 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:18:35,232 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:18:36,262 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.52ms
2019-09-26 13:18:44,960 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:18:45,003 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:18:45,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:18:46,657 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.49ms
2019-09-26 13:18:47,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:18:48,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:18:49,640 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:18:50,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:51,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:18:52,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:53,631 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:54,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:18:55,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:56,643 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:57,660 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:18:58,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:18:59,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.83ms
2019-09-26 13:19:00,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:19:01,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:19:02,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:19:03,640 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:19:04,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:19:05,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:19:06,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:19:07,649 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:19:08,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.55ms
2019-09-26 13:19:09,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:19:10,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.97ms
2019-09-26 13:19:11,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:19:12,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:13,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:19:14,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:15,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:19:16,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.82ms
2019-09-26 13:19:17,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:19:18,646 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:19:19,660 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:19:20,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:19:21,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.19ms
2019-09-26 13:19:22,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:19:23,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:19:24,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.17ms
2019-09-26 13:19:25,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:19:26,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:19:27,642 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.23ms
2019-09-26 13:19:28,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:19:29,644 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:19:30,661 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:19:31,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:19:32,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.28ms
2019-09-26 13:19:33,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:19:34,645 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:35,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.25ms
2019-09-26 13:19:36,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:19:37,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:19:38,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.21ms
2019-09-26 13:19:39,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:19:40,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:19:41,672 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:19:42,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:19:43,643 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.75ms
2019-09-26 13:19:44,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:19:45,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:19:46,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.99ms
2019-09-26 13:19:47,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.93ms
2019-09-26 13:19:48,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 13:19:50,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 17.32ms
2019-09-26 13:19:50,571 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 13:19:50,574 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-09-26 13:19:50,577 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:50,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:51,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:19:51,581 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:52,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.10ms
2019-09-26 13:19:53,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:19:54,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:19:54,845 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:19:54,850 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-09-26 13:19:54,858 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:56,690 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:19:56,966 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.3.1 based on Marlin"
2019-09-26 13:19:56,974 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Recv: ok
| Changing monitoring state from "Connecting" to "Operational"
| Send: N0 M110 N0*125
| Send: N1 M115*39
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M21*18
| Recv: FIRMWARE_NAME:Prusa-Firmware 3.3.1 based on Marlin FIRMWARE_URL:https://github.com/prusa3d/Prusa-Firmware PROTOCOL_VERSION:1.0 MACHINE_TYPE:Prusa i3 MK3 EXTRUDER_COUNT:1 UUID:00000000-0000-0000-0000-000000000000
| Recv: ok
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:19:57,902 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:19:57,908 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:19:57,919 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:59,120 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:20:01,303 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:20:08,861 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:21:12,929 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-09-26 13:21:29,418 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Pausing"
2019-09-26 13:21:30,924 - octoprint.util.comm - INFO - Changing monitoring state from "Pausing" to "Cancelling"
2019-09-26 13:21:30,927 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 13:21:30,932 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:21:40,963 - octoprint.printer.standard.job - INFO - Print job paused - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:21:55,717 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 13:21:58,588 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:21:59,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:22:00,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:22:01,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:22:02,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:03,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:04,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:22:05,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:22:06,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:07,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:08,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 13:22:09,416 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:10,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:22:11,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:22:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:22:13,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:22:14,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:22:15,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:22:16,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:17,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:22:18,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:22:19,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:20,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:21,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:22:22,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:22:23,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:23,437 - tornado.access - WARNING - 405 POST /api/printer?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.17ms
2019-09-26 13:22:24,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:25,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:22:26,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 13:22:27,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:28,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:22:29,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:22:30,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:22:30,611 - tornado.access - WARNING - 409 GET /api/printer?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 8.70ms
2019-09-26 13:22:31,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:32,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:22:33,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:22:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:22:35,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:22:36,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:22:37,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.91ms
2019-09-26 13:22:38,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:22:39,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:22:40,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:41,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:42,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:22:43,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:22:44,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:22:45,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:22:46,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:22:47,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:22:48,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:22:49,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:50,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:22:51,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:52,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:22:53,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:22:54,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:22:55,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:22:56,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:22:57,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:58,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:22:59,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:00,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:23:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.31ms
2019-09-26 13:23:02,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:23:03,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:23:04,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:23:05,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:23:06,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:23:07,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:23:08,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:23:09,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:23:10,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:23:11,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:23:12,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:23:13,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:23:14,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:23:15,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:23:16,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:23:17,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:23:18,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:23:19,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:23:20,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:23:21,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:23:22,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:23:23,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:23:24,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:23:25,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:23:26,422 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:23:27,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:28,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:23:29,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:23:30,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:31,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:23:32,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:23:33,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:23:34,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:23:35,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:23:36,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:23:37,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:23:38,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:23:39,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:23:40,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:23:41,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:23:42,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:23:43,398 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:23:44,444 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:45,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:23:46,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:23:47,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:23:48,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:49,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:23:50,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:23:51,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:23:52,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:53,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:23:54,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:23:55,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:23:56,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:23:57,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:23:58,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:23:59,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:24:00,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:24:01,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:24:02,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:24:03,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:24:04,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.18ms
2019-09-26 13:24:05,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:24:06,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:24:07,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:24:08,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:24:09,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:24:10,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:24:11,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:24:12,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:24:13,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:24:14,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.51ms
2019-09-26 13:24:15,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:24:16,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:24:17,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:24:18,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:24:19,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:24:20,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:24:21,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:24:22,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.16ms
2019-09-26 13:24:23,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:24:24,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:24:25,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:24:26,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:24:27,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:24:28,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:24:29,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:24:30,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:24:31,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:24:32,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:24:33,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:24:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:24:35,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:24:36,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:24:37,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:24:38,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:24:39,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:24:40,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:24:41,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.98ms
2019-09-26 13:24:42,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:24:43,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:24:44,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:45,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:24:46,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:24:47,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:48,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:49,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:24:50,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:24:51,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:52,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:53,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:24:54,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:24:55,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:56,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:24:57,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:24:58,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:24:59,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:25:00,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:01,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:03,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:04,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:25:05,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:25:06,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:25:07,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:25:08,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:25:09,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:25:10,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:11,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:25:12,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:13,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:25:14,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:25:15,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:16,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:17,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:25:18,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:25:19,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:25:20,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:21,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:22,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:25:23,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:24,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:25,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:25:26,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:27,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:25:28,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:29,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:25:30,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:25:31,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:25:32,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 13:25:33,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:25:34,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:35,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:25:36,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:25:37,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:25:38,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:25:39,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:40,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:25:41,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:25:42,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:25:43,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:44,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:25:45,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:25:46,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:47,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:48,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:25:49,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:25:50,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:25:51,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:25:52,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:25:53,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:25:54,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:25:55,500 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:25:56,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:57,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:25:58,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:25:59,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:26:00,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:26:01,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:26:02,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:26:03,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:26:04,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:26:05,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:26:06,405 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:26:07,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:26:08,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.90ms
2019-09-26 13:26:09,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:26:10,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:26:11,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:26:12,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:26:13,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:26:14,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:26:15,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:26:16,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:26:17,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:26:18,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:26:19,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:26:20,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:26:21,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:26:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:26:23,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:26:24,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:25,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.28ms
2019-09-26 13:26:26,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:27,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:26:28,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:26:29,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.62ms
2019-09-26 13:26:30,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.20ms
2019-09-26 13:26:31,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:26:32,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:26:33,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:26:34,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:26:35,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:26:36,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:26:37,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:26:38,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:26:39,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:26:40,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:26:41,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:26:42,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:26:43,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:44,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:26:45,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:26:46,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:26:47,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:26:48,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:26:49,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:26:50,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:26:51,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:26:52,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:53,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:26:54,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:26:55,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:26:56,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:26:57,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:26:58,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:26:59,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:27:00,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:27:01,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:27:02,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:27:03,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:27:04,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:27:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:27:06,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:27:07,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:27:08,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:27:09,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:27:10,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:27:11,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:27:12,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:27:13,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:27:14,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:27:15,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:27:16,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:27:17,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:18,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:19,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:27:20,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:21,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:27:22,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:27:23,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:27:24,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:27:25,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:26,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:27,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:28,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:29,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:30,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:27:31,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:27:32,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:27:33,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:27:34,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:27:35,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:27:36,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:27:37,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:27:38,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:27:39,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:27:40,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:41,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:42,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:27:43,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:27:44,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:27:45,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.76ms
2019-09-26 13:27:46,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:27:47,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:27:48,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:27:49,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:50,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:27:51,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:27:52,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:27:53,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:54,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:27:55,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:27:56,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:27:57,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:58,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:59,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:28:00,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:28:01,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:28:02,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:28:03,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:28:04,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:28:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:28:06,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:28:07,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:28:08,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:28:09,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:28:10,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:28:11,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:28:12,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:28:13,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:28:14,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:28:15,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:28:16,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:28:17,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:28:18,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:28:19,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:28:20,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:28:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:28:22,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:28:23,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:28:24,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:25,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:28:26,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:28:27,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:28:28,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:28:29,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:28:30,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:28:31,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:28:32,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:28:33,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:28:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:28:35,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:28:36,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:28:37,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:28:38,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:28:39,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:28:40,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:28:41,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.33ms
2019-09-26 13:28:42,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:28:43,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:44,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:28:45,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:28:46,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.33ms
2019-09-26 13:28:47,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.42ms
2019-09-26 13:28:48,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:28:49,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.00ms
2019-09-26 13:28:50,403 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 13:28:51,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:28:52,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.17ms
2019-09-26 13:28:53,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.86ms
2019-09-26 13:28:54,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.93ms
2019-09-26 13:28:55,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:28:56,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:57,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.65ms
2019-09-26 13:28:58,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:28:59,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:29:00,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:29:01,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:29:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:29:03,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:29:04,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.04ms
2019-09-26 13:29:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:29:06,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.65ms
2019-09-26 13:29:07,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:29:08,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:29:09,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:29:10,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:29:11,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:29:12,406 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:29:13,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:29:14,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:29:15,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:29:16,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:29:17,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:29:18,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:29:19,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:29:20,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:29:21,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:29:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.12ms
2019-09-26 13:29:23,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:29:24,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:29:25,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:29:26,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:29:27,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:29:28,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:29:29,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:29:30,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:29:31,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:29:32,425 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:29:33,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:29:34,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.07ms
2019-09-26 13:29:35,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:29:36,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:29:37,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.29ms
2019-09-26 13:29:38,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:29:38,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:29:39,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:29:40,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:29:41,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 19.29ms
2019-09-26 13:29:42,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:29:43,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.90ms
2019-09-26 13:29:44,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:29:45,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:29:46,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:29:47,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:29:48,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:29:49,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:29:50,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:29:51,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.99ms
2019-09-26 13:29:52,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:29:53,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:29:54,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.48ms
2019-09-26 13:29:55,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:29:56,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.57ms
2019-09-26 13:29:57,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:29:58,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:29:59,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:30:00,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:30:01,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:30:02,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.64ms
2019-09-26 13:30:03,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:30:04,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:30:05,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.04ms
2019-09-26 13:30:06,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:30:07,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:30:08,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:30:09,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:30:10,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:30:11,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:30:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:30:13,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:30:14,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:30:15,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:30:16,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:30:17,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:30:18,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:30:19,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:30:20,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:30:21,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:30:22,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:23,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:30:24,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:25,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:30:26,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:30:27,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:28,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:30:29,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:30:30,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:30:31,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:30:32,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:30:33,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 13:30:34,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:30:35,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:30:36,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:30:37,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 13:30:38,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:30:39,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:30:40,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:41,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:30:42,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:30:43,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:30:44,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:30:45,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:30:46,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:30:47,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:48,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:30:49,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:50,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:30:51,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:30:51,645 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 13:31:01,235 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:31:01,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:31:02,433 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 13:31:03,452 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:31:04,433 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:31:06,122 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 13:31:06,125 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-09-26 13:31:06,135 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:06,137 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:06,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 13:31:07,134 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:07,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:31:08,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:31:08,477 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:31:09,235 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:31:09,429 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:31:10,170 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:31:10,177 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-09-26 13:31:10,183 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:12,291 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.3.1 based on Marlin"
2019-09-26 13:31:12,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Recv: ok
| Changing monitoring state from "Connecting" to "Operational"
| Send: N0 M110 N0*125
| Send: N1 M115*39
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M21*18
| Recv: FIRMWARE_NAME:Prusa-Firmware 3.3.1 based on Marlin FIRMWARE_URL:https://github.com/prusa3d/Prusa-Firmware PROTOCOL_VERSION:1.0 MACHINE_TYPE:Prusa i3 MK3 EXTRUDER_COUNT:1 UUID:00000000-0000-0000-0000-000000000000
| Recv: ok
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:31:33,694 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.25
2019-09-26 13:31:38,562 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:11,515 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:31,581 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:59,678 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:33:28,410 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:34:15,909 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:34:15,914 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:34:15,916 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:34:15,921 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:15,928 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:34:18,181 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:34:45,600 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 13:34:45,606 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:45,611 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 13:34:45,617 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 13:34:45,631 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 13:34:48,881 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:34:48,882 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:50,987 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M84*29
| Recv: Unknown M code: $1 M108
| Recv: ok
| Send: N3 M104 T0 S0*34
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:34:51,020 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 13:41:10,138 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:16,179 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:41:16,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.07ms
2019-09-26 13:41:17,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:41:17,982 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.30ms
2019-09-26 13:41:26,810 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:27,138 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.56ms
2019-09-26 13:41:28,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:41:29,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:41:30,168 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.25ms
2019-09-26 13:41:31,131 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:41:32,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:41:33,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.94ms
2019-09-26 13:41:34,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:41:35,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:41:36,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:41:37,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:41:38,160 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.98ms
2019-09-26 13:41:39,140 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:41:40,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:41:41,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.09ms
2019-09-26 13:41:42,131 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:41:43,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.45ms
2019-09-26 13:41:44,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:41:45,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.98ms
2019-09-26 13:41:46,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:41:47,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:41:56,342 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:57,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.09ms
2019-09-26 13:41:58,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:41:59,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:42:00,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:42:01,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:42:02,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:42:03,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 13:42:04,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.06ms
2019-09-26 13:42:05,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:42:06,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:42:07,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:42:08,142 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:42:09,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:42:10,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:42:11,121 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:42:12,122 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:42:13,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.86ms
2019-09-26 13:42:14,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:42:15,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:16,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:42:17,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:42:18,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:42:19,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:42:20,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:42:21,120 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:22,124 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:42:23,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.77ms
2019-09-26 13:42:31,367 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:42:31,668 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.15ms
2019-09-26 13:42:32,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.60ms
2019-09-26 13:42:33,665 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:42:34,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:42:35,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.42ms
2019-09-26 13:42:36,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:42:37,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.47ms
2019-09-26 13:42:38,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:39,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:42:40,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.81ms
2019-09-26 13:42:41,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:42:42,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.30ms
2019-09-26 13:42:43,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.80ms
2019-09-26 13:42:44,670 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:42:45,668 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:42:46,665 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:42:57,849 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:42:58,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 13:42:59,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:43:00,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:43:02,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.50ms
2019-09-26 13:43:03,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:43:04,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:05,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:43:06,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.67ms
2019-09-26 13:43:07,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:43:08,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.53ms
2019-09-26 13:43:09,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:10,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:43:11,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:12,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.84ms
2019-09-26 13:43:13,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:43:14,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:15,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:43:16,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:43:17,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:43:18,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:43:19,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.68ms
2019-09-26 13:43:20,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:43:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:23,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:43:24,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:25,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:43:26,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:27,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:43:28,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:43:29,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:43:30,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:31,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.31ms
2019-09-26 13:43:32,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:43:33,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:43:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:43:35,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:43:36,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:37,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:43:38,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:43:39,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:43:40,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.31ms
2019-09-26 13:43:41,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:43:42,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:43:43,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:44,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:45,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:43:46,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:43:47,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:43:48,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:43:49,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:43:50,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:43:51,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:52,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:43:53,398 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:43:54,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:43:55,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:43:56,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:43:57,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:43:58,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:43:59,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:44:00,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:44:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:44:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:44:03,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.76ms
2019-09-26 13:44:04,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:44:05,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:44:06,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:44:07,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:44:08,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:44:09,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:44:10,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:44:11,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:44:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:44:13,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:44:14,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:44:15,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:44:16,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:44:17,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:44:18,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:44:19,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:44:20,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:44:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:44:22,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:44:23,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:44:24,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 13:44:25,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:44:26,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:44:27,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:44:28,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:44:29,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:44:30,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.28ms
2019-09-26 13:44:31,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.20ms
2019-09-26 13:44:32,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.80ms
2019-09-26 13:44:33,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:44:34,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.41ms
2019-09-26 13:44:35,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:44:36,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.68ms
2019-09-26 13:44:37,405 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.08ms
2019-09-26 13:44:38,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:44:38,516 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:44:39,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:44:40,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:44:41,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 17.89ms
2019-09-26 13:44:42,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:44:43,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:44:44,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:44:45,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:44:46,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:44:47,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.57ms
2019-09-26 13:44:48,403 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:44:49,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:44:50,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:44:51,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.07ms
2019-09-26 13:44:52,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:44:53,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.96ms
2019-09-26 13:44:54,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.84ms
2019-09-26 13:44:55,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:44:56,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:44:57,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.81ms
2019-09-26 13:44:58,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:44:59,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.98ms
2019-09-26 13:45:00,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.08ms
2019-09-26 13:45:01,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:45:02,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:45:03,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.06ms
2019-09-26 13:45:04,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.90ms
2019-09-26 13:45:05,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:45:06,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:45:07,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.91ms
2019-09-26 13:45:08,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:45:09,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.38ms
2019-09-26 13:45:10,407 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:45:11,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:45:12,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:45:13,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.10ms
2019-09-26 13:45:14,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:45:15,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:45:16,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:47:41,632 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:47:41,943 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.43ms
2019-09-26 13:47:42,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:47:43,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:47:44,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:47:45,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:47:46,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:47:47,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:47:48,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:49,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:50,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:47:51,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:47:52,962 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:47:53,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:54,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:55,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:47:56,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:47:57,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:47:58,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:47:59,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:48:00,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:48:01,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:48:02,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:03,957 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:48:04,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:48:05,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:48:06,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:48:07,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:08,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:48:09,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:48:10,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:48:11,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:12,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:48:13,941 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:48:14,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:48:15,935 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:16,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:48:17,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:48:18,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:19,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:20,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:48:21,934 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:48:22,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:23,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:48:24,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:25,955 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:26,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:48:27,932 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:28,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:29,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:48:30,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:48:31,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:48:32,933 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:48:41,508 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:48:41,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 13:48:42,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:43,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:44,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:48:45,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:46,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:48:47,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:48:48,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:49,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:48:50,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:48:51,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:48:52,917 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:48:53,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:54,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:48:55,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:56,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:48:57,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:58,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:59,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:49:00,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:01,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:49:02,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:49:03,917 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:04,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:49:05,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:06,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:07,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:49:08,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:09,902 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:49:10,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:11,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:12,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:13,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:14,920 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:49:15,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:49:16,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:17,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:49:18,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:19,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:49:20,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:21,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:49:22,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:49:23,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:24,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:25,918 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:49:26,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:49:27,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:28,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:49:29,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:30,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:31,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:32,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:49:33,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:34,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:35,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:36,919 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.53ms
2019-09-26 13:49:37,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:49:38,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:49:39,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:49:40,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:49:41,903 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.91ms
2019-09-26 13:49:42,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:49:43,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.96ms
2019-09-26 13:49:44,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:49:45,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:49:46,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:49:47,918 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:48,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:49:49,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:49:50,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:51,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:52,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:50:02,005 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:02,191 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 13:50:03,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:50:04,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:50:05,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:50:06,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:07,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:08,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:09,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:10,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:11,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:50:12,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:50:13,172 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:14,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:50:15,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:16,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:50:17,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:18,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:50:19,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:50:20,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:50:21,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:50:22,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:50:23,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:50:24,174 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:50:25,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:50:26,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:27,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:28,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:50:29,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:50:30,153 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:50:31,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:32,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:50:33,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:50:34,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:50:35,176 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:50:36,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:50:37,155 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:50:38,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:50:39,154 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:50:40,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:50:41,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:50:42,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:51:02,891 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:51:03,868 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:51:04,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:51:05,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:51:06,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:51:07,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:51:08,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:51:09,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:51:10,849 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:51:12,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:51:13,408 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:51:14,432 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.60ms
2019-09-26 13:51:15,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:51:16,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:51:17,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:51:18,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:51:19,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:51:20,412 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:51:21,412 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.94ms
2019-09-26 13:51:22,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:51:23,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:51:24,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:51:25,439 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.30ms
2019-09-26 13:51:26,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.20ms
2019-09-26 13:51:27,417 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:51:28,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.53ms
2019-09-26 13:51:29,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:51:30,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:51:31,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:51:32,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.23ms
2019-09-26 13:51:33,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:51:33,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.69ms
2019-09-26 13:51:41,549 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:51:42,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.26ms
2019-09-26 13:51:43,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.12ms
2019-09-26 13:51:44,461 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.10ms
2019-09-26 13:51:45,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:51:46,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:51:47,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:51:48,462 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:51:49,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:51:50,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:51:51,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.47ms
2019-09-26 13:51:52,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:51:53,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.45ms
2019-09-26 13:51:54,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.14ms
2019-09-26 13:51:55,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.74ms
2019-09-26 13:51:56,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:51:57,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:51:58,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:51:59,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:52:00,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:52:01,467 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:52:02,463 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.34ms
2019-09-26 13:52:03,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:52:04,483 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.93ms
2019-09-26 13:52:05,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:52:06,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:52:07,507 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:52:08,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:09,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:10,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:52:11,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:52:12,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:13,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:52:14,461 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:15,482 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:52:16,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:52:17,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:52:18,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:52:19,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:52:20,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:21,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:52:22,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:52:23,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:24,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:52:25,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:26,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.04ms
2019-09-26 13:52:27,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.82ms
2019-09-26 13:52:28,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:52:29,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:52:30,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:52:31,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:52:32,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:52:33,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:52:34,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:52:35,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:52:36,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:52:37,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.20ms
2019-09-26 13:52:38,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:52:39,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:52:40,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:52:41,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:52:42,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:52:43,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:52:44,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:45,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:52:46,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:47,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:52:48,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:52:49,465 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:52:50,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:51,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:52:52,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:53,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:52:54,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:55,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:52:56,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:52:57,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:52:58,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:52:59,481 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:53:00,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:53:01,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:02,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:53:03,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:53:04,462 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:53:05,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:53:06,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:53:07,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:08,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:53:09,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:53:10,482 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:53:11,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:53:12,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:13,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:53:14,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:53:15,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:55:33,210 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:55:33,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.09ms
2019-09-26 13:55:34,980 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:55:35,980 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:55:36,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:55:37,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:55:38,971 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.63ms
2019-09-26 13:55:39,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:55:40,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:55:41,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:55:42,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:55:43,997 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:55:45,010 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:55:45,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:55:46,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:55:47,986 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:55:48,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:55:49,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:55:50,979 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:55:51,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:55:52,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:55:53,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:55:54,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:55:56,008 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:55:56,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:55:57,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:55:58,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:55:59,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.77ms
2019-09-26 13:56:00,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:56:01,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:56:02,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:56:03,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:56:04,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:56:06,274 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:56:07,001 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:56:07,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.80ms
2019-09-26 13:56:08,971 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:56:09,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:56:10,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:56:11,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.08ms
2019-09-26 13:56:12,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:56:13,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:56:14,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:56:15,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.48ms
2019-09-26 13:56:16,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:56:18,005 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:56:18,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:56:19,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:56:28,400 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:56:29,404 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:56:30,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:56:31,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:56:32,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:56:33,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.36ms
2019-09-26 13:56:34,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.74ms
2019-09-26 13:56:35,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.13ms
2019-09-26 13:56:36,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:56:37,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:56:38,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:56:39,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:56:40,407 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:56:41,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:56:42,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:56:43,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.77ms
2019-09-26 13:56:44,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:56:45,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:56:46,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:56:47,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:56:59,121 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:56:59,609 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.10ms
2019-09-26 13:57:00,604 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.77ms
2019-09-26 13:57:01,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:57:02,599 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:57:03,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.68ms
2019-09-26 13:57:04,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:57:05,606 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:57:06,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.60ms
2019-09-26 13:57:07,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.61ms
2019-09-26 13:57:08,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:57:09,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:57:10,629 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:57:11,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:57:12,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:57:13,598 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:57:14,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.92ms
2019-09-26 13:57:23,356 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:57:24,004 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.42ms
2019-09-26 13:57:24,993 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.16ms
2019-09-26 13:57:25,357 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:57:25,385 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:57:25,388 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:57:25,989 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.86ms
2019-09-26 13:57:26,398 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:26,405 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:57:26,418 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:26,422 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:57:26,431 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:31,757 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:39,145 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:58:50,210 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:59:38,517 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:59:48,363 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:00:08,191 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:00:24,112 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 14:00:24,119 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 14:00:24,122 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 14:00:24,127 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:00:24,133 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 14:00:26,283 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 14:00:28,610 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 14:01:00,505 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:04:49,404 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 14:04:49,407 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:04:49,409 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 14:04:49,411 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 14:04:49,417 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 14:04:52,661 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:04:52,662 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 14:04:54,785 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M113 S2*96
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok
| Send: N2 M108*40
| Send: N3 M84*28
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 14:04:54,899 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 14:12:42,997 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:17:06,908 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:17:06,909 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:17:06,909 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:17:07,305 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 13:17:07,305 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 13:17:07,354 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:17:08,341 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:17:08,444 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 13:17:08,468 - octoprint.server - INFO - Intermediary server started
2019-09-26 13:17:08,468 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:17:08,532 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:17:08,550 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 13:17:08,799 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 13:17:08,821 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 13:17:09,488 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:17:10,034 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 13:17:10,036 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:17:10,036 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:17:10,039 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 13:17:10,045 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 13:17:10,057 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 13:17:10,065 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 13:17:10,079 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 13:17:10,466 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 13:17:10,470 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 13:17:10,472 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 13:17:10,472 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 13:17:10,474 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 13:17:10,476 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 13:17:10,478 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 13:17:10,479 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 13:17:10,488 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 13:17:10,495 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 13:17:10,516 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 13:17:10,542 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,552 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60f90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60f90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,553 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74b30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74b30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,566 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb31bc570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb31bc570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,571 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,577 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,582 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74950>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74950>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:11,091 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:17:11,092 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:17:11,092 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:17:11,159 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 13:17:16,313 - octoprint.server.preemptive_cache - INFO - ... done in 5.15s
2019-09-26 13:17:16,314 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 13:17:18,627 - octoprint.server.preemptive_cache - INFO - ... done in 2.31s
2019-09-26 13:17:33,945 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:32:00,600 - tornado.access - WARNING - 404 DELETE /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.45ms
2019-09-26 13:32:08,446 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:47:08,447 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:50:23,672 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:23,725 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:23,830 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:50:24,420 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:50:24,450 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:25,097 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:50:25,102 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.43ms
2019-09-26 13:50:25,144 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:51:38,613 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-09-26 14:02:08,450 - octoprint.server.heartbeat - INFO - Server heartbeat <3
|
ConnectionError
|
def _create_etag(path, filter, recursive, lm=None):
if lm is None:
lm = _create_lastmodified(path, recursive)
if lm is None:
return None
hash = hashlib.sha1()
def hash_update(value):
value = value.encode("utf-8")
hash.update(value)
hash_update(str(lm))
hash_update(str(filter))
hash_update(str(recursive))
path = path[len("/api/files") :]
if path.startswith("/"):
path = path[1:]
if "/" in path:
storage, _ = path.split("/", 1)
else:
storage = path
if path == "" or storage == FileDestinations.SDCARD:
# include sd data in etag
hash_update(repr(sorted(printer.get_sd_files(), key=lambda x: sv(x[0]))))
hash_update(_DATA_FORMAT_VERSION) # increment version if we change the API format
return hash.hexdigest()
|
def _create_etag(path, filter, recursive, lm=None):
if lm is None:
lm = _create_lastmodified(path, recursive)
if lm is None:
return None
hash = hashlib.sha1()
def hash_update(value):
value = value.encode("utf-8")
hash.update(value)
hash_update(str(lm))
hash_update(str(filter))
hash_update(str(recursive))
if path.endswith("/files") or path.endswith("/files/sdcard"):
# include sd data in etag
hash_update(repr(sorted(printer.get_sd_files(), key=lambda x: sv(x[0]))))
hash_update(_DATA_FORMAT_VERSION) # increment version if we change the API format
return hash.hexdigest()
|
https://github.com/OctoPrint/OctoPrint/issues/3422
|
2019-09-26 01:24:44,258 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:24:44,259 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:24:44,260 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:24:44,325 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:24:45,286 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:24:45,367 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:24:45,406 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:24:45,406 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:24:45,469 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:24:45,470 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-09-26 01:24:45,525 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:24:45,526 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:24:46,225 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:24:46,779 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:24:46,780 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:24:46,781 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:24:46,784 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:24:46,844 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:24:46,860 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:24:46,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:24:46,871 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:24:47,414 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:24:47,451 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:24:47,453 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:24:47,454 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:24:47,456 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:24:47,457 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:24:47,459 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:24:47,459 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:24:47,468 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:24:47,475 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:24:47,478 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-09-26 01:24:47,502 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:24:48,106 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:24:48,108 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:24:48,108 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:24:57,563 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:24:57,563 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20716d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20716d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:24:58,131 - octoprint.plugins.softwareupdate - WARNING - Could not check octoprint for updates due to a network error
2019-09-26 01:24:58,138 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-09-26 01:25:07,594 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c65b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c65b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:07,599 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:17,622 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:27,644 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071ed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071ed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:37,667 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16edef0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16edef0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:02,074 - octoprint.server - INFO - Shutting down...
2019-09-26 01:26:02,477 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:26:02,479 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:26:02,483 - octoprint.server - INFO - Goodbye!
2019-09-26 01:26:15,421 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:26:15,422 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:26:15,423 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:26:15,903 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:26:16,883 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:26:16,977 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:26:17,001 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:26:17,002 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:26:17,067 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:26:17,085 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:26:17,086 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:26:17,108 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:26:17,791 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:26:18,348 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:26:18,349 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:26:18,349 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:26:18,352 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:26:18,358 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:26:18,370 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:26:18,377 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:26:18,378 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:26:18,803 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:26:19,006 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:26:19,007 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:26:19,009 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:26:19,010 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:26:19,011 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:26:19,012 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:26:19,013 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:26:19,023 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:26:19,079 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:26:19,099 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:26:19,133 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5110>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5110>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,136 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,147 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f49d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f49d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,153 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16bfdf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16bfdf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,159 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4770>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4770>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,165 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f45d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f45d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,171 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4130>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4130>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,761 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:26:19,762 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:26:19,762 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:30:07,782 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=de', 'path': u'/', '_count': 1, '_timestamp': 1569457807.782871, 'base_url': u'http://169.254.230.48/'}
2019-09-26 01:30:13,485 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:169.254.230.50
2019-09-26 01:30:30,261 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:169.254.230.50
2019-09-26 01:30:40,434 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc310>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc310>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:30:50,457 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc450>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc450>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:00,480 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb39b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb39b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:10,502 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xad1051d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xad1051d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:20,527 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb3b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb3b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:20,564 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:31:20,578 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:169.254.230.50) 26.57ms
2019-09-26 01:31:20,920 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:169.254.230.50
2019-09-26 01:32:01,210 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:169.254.230.50
2019-09-26 01:38:22,458 - octoprint.server - INFO - Shutting down...
2019-09-26 01:38:23,190 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:38:23,193 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:38:23,206 - octoprint.server - INFO - Goodbye!
2019-09-26 01:38:38,791 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:38,792 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:38:38,792 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,184 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:38:39,185 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:38:39,233 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,227 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,332 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:38:40,355 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:38:40,355 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,419 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,437 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:38:40,438 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:38:40,462 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:38:41,139 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:41,683 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:38:41,685 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:41,685 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:41,688 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:38:41,693 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:38:41,705 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:38:41,713 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:38:41,726 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:38:42,167 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:38:42,359 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:38:42,361 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:38:42,362 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:38:42,363 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:38:42,365 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:38:42,366 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:38:42,367 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:38:42,376 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:38:42,383 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:38:42,402 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:38:42,430 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe5ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe5ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,432 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe59f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe59f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,442 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f83750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f83750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,443 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff14f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff14f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,451 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff1810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff1810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,463 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb332bf90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb332bf90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,469 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb297bf30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb297bf30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:43,049 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:43,050 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:43,050 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:43,137 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:38:48,352 - octoprint.server.preemptive_cache - INFO - ... done in 5.21s
2019-09-26 01:39:28,915 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:39:32,798 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:38:39,206 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,207 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:38:39,208 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,605 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:38:39,606 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:38:39,719 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,711 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,818 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:38:40,841 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:38:40,842 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,906 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,924 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:38:40,925 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:38:40,949 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:38:41,645 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:42,201 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:38:42,202 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:42,203 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:42,206 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:38:42,213 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:38:42,226 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:38:42,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:38:42,243 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:38:42,713 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:38:42,852 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:38:42,853 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:38:42,854 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:38:42,855 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:38:42,858 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:38:42,858 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:38:42,861 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:38:42,869 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:38:42,876 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:38:42,896 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:38:42,926 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,931 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,938 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,939 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f705d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f705d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,945 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15cae70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15cae70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,953 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15caa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15caa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,961 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f70670>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f70670>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:43,499 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:43,500 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:43,500 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:43,560 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:38:48,856 - octoprint.server.preemptive_cache - INFO - ... done in 5.30s
2019-09-26 01:48:03,465 - octoprint.server - INFO - Shutting down...
2019-09-26 01:48:03,978 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:48:03,980 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:48:03,994 - octoprint.server - INFO - Goodbye!
2019-09-26 01:48:10,353 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,355 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:10,356 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,751 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,752 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,826 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,856 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,962 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,985 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,986 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:12,049 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:12,067 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:12,069 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:12,093 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,841 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:13,394 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:13,396 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:13,396 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:13,399 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:13,404 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:13,416 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:13,424 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:13,436 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,959 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,991 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,993 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,994 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,995 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,997 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,997 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,999 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:14,007 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:14,014 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:14,034 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:14,064 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,065 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,073 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,082 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1850>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1850>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,088 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,093 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,099 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,630 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,631 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,632 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,709 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:19,958 - octoprint.server.preemptive_cache - INFO - ... done in 5.25s
2019-09-26 01:48:57,992 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:49:05,427 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:48:09,968 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:09,970 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:09,972 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,358 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,359 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,406 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,380 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,488 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,512 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,512 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,579 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,598 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:11,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:11,624 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,343 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:12,893 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:12,894 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:12,894 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:12,898 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:12,903 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:12,915 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:12,920 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:12,932 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,366 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,515 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,516 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,517 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,519 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,521 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,522 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,523 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:13,531 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:13,539 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:13,558 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:13,586 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5bf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5bf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,587 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,600 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168c710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168c710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,609 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1b70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1b70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,614 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,619 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,625 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5590>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5590>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,155 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,156 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,156 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,220 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:19,574 - octoprint.server.preemptive_cache - INFO - ... done in 5.35s
2019-09-26 01:48:33,702 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:39,904 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:39,958 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:39,975 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=de', 'path': u'/', '_count': 1, '_timestamp': 1569458919.975235, 'base_url': u'http://10.55.100.109/'}
2019-09-26 01:48:42,263 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:48:42,980 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:43,102 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:49:13,822 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2190>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2190>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:49:43,912 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bfd0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bfd0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:50:13,981 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab6f44f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab6f44f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:50:44,067 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bf10>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bf10>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:51:14,134 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2db0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2db0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:51:14,155 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:51:14,167 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 19.84ms
2019-09-26 01:51:14,276 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:51:14,400 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:51:14,405 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:51:16,009 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:51:16,079 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:51:18,401 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:51:18,409 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 16.69ms
2019-09-26 01:51:18,453 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:48:10,031 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,033 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:10,035 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,423 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,423 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,471 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,443 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,546 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,569 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,570 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,633 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,651 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:11,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:11,675 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,370 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:12,922 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:12,924 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:12,924 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:12,927 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:12,932 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:12,944 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:12,949 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:12,961 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,399 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,572 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,574 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,574 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,576 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,578 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,579 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,581 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:13,589 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:13,595 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:13,614 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:13,643 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,645 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,660 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e46b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e46b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,662 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4410>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4410>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,674 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,680 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4c70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4c70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,686 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4e30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4e30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,262 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,263 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,263 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,328 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 01:48:19,589 - octoprint.server.preemptive_cache - INFO - ... done in 5.26s
2019-09-26 01:48:19,589 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:21,823 - octoprint.server.preemptive_cache - INFO - ... done in 2.23s
2019-09-26 01:48:43,244 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:43,619 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:43,649 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:44,296 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:48:44,300 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.62ms
2019-09-26 01:48:44,341 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:48:53,579 - tornado.access - WARNING - 400 POST /api/plugin/appkeys (::ffff:10.55.102.11) 16.72ms
2019-09-26 02:03:11,548 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:04:37,449 - tornado.access - WARNING - 400 GET /api/files (::ffff:10.55.102.11) 7.42ms
2019-09-26 02:18:11,551 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:33:11,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:37:44,801 - tornado.access - WARNING - 404 GET /api/files/?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 7.78ms
2019-09-26 02:37:49,736 - tornado.access - WARNING - 404 GET /api/files/root?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.97ms
2019-09-26 02:44:14,198 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 16.91ms
2019-09-26 02:44:19,390 - tornado.access - WARNING - 404 GET /api/files/?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.29ms
2019-09-26 02:48:11,555 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:50:27,056 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 02:50:27,058 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 02:50:50,036 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.98s
2019-09-26 02:50:51,041 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test/griff.gcode
2019-09-26 02:50:51,042 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test/griff.gcode
2019-09-26 02:51:13,960 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test/griff.gcode finished, needed 22.92s
2019-09-26 02:51:14,967 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/Test4/Test5/griff.gcode
2019-09-26 02:51:14,969 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/Test4/Test5/griff.gcode
2019-09-26 02:51:37,923 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/Test4/Test5/griff.gcode finished, needed 22.96s
2019-09-26 02:51:38,928 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/Test4/griff.gcode
2019-09-26 02:51:38,932 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/Test4/griff.gcode
2019-09-26 02:52:01,316 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/Test4/griff.gcode finished, needed 22.39s
2019-09-26 02:52:02,322 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 02:52:02,323 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 02:52:24,875 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.55s
2019-09-26 02:53:59,858 - octoprint - ERROR - Exception on /api/files/local/Test4/Test234 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 02:53:59,862 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 19.89ms
2019-09-26 02:54:03,374 - tornado.access - WARNING - 404 GET /api/files/local/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.15ms
2019-09-26 03:03:11,556 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:18:11,558 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:28:36,205 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 03:28:36,397 - octoprint.server - INFO - Shutting down...
2019-09-26 03:28:37,136 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 03:28:37,141 - octoprint.events - INFO - Event loop shut down
2019-09-26 03:28:37,155 - octoprint.server - INFO - Goodbye!
2019-09-26 03:28:38,260 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:28:38,262 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 03:28:38,262 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:06,990 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:06,991 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 03:17:06,994 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:07,382 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 03:17:07,382 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 03:17:07,430 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 03:17:08,404 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 03:17:08,507 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 03:17:08,530 - octoprint.server - INFO - Intermediary server started
2019-09-26 03:17:08,531 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 03:17:08,594 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 03:17:08,612 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 03:17:08,873 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 03:17:08,896 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 03:17:09,559 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 03:17:10,109 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 03:17:10,110 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 03:17:10,111 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 03:17:10,114 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 03:17:10,119 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 03:17:10,131 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 03:17:10,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 03:17:10,148 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 03:17:10,533 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 03:17:11,034 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 03:17:11,038 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 03:17:11,039 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 03:17:11,042 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 03:17:11,049 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 03:17:11,053 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 03:17:11,061 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 03:17:11,073 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 03:17:11,090 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 03:17:11,143 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 03:17:11,201 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb3265570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb3265570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,218 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f5570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f5570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,238 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a630>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a630>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,246 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a8b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a8b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,250 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168af10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168af10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,258 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16ddd90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16ddd90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,264 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa610>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa610>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,819 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 03:17:11,820 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 03:17:11,821 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 03:17:11,890 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 03:17:17,252 - octoprint.server.preemptive_cache - INFO - ... done in 5.36s
2019-09-26 03:17:17,252 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 03:17:19,268 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 03:17:19,402 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:19,642 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 03:17:19,908 - octoprint.server.preemptive_cache - INFO - ... done in 2.66s
2019-09-26 03:17:54,309 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:54,394 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 03:17:54,925 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 03:17:54,954 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:55,590 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 03:17:55,594 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.22ms
2019-09-26 03:17:55,636 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 03:20:08,256 - tornado.access - WARNING - 404 GET /api/files/local/test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.47ms
2019-09-26 03:32:08,509 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:47:08,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:56:49,908 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:49,912 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.97ms
2019-09-26 03:56:50,649 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:50,653 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.80ms
2019-09-26 03:56:51,097 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:51,100 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.22ms
2019-09-26 03:58:38,979 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:38,983 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.49ms
2019-09-26 03:58:39,778 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:39,782 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.89ms
2019-09-26 03:58:40,517 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:40,521 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.66ms
2019-09-26 03:58:42,306 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,310 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.31ms
2019-09-26 03:58:42,675 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,678 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.83ms
2019-09-26 03:58:42,967 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,971 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.26ms
2019-09-26 03:58:46,713 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:46,717 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.49ms
2019-09-26 04:02:08,513 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:17:08,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:32:08,516 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:47:08,519 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:02:08,521 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:17:08,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:32:08,527 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:47:08,530 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:50:31,194 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 05:50:31,226 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2019-09-26 06:02:08,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:17:08,534 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:32:08,537 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:47:08,541 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:02:08,544 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:17:08,547 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:32:08,549 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:47:08,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:00:31,985 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 08:00:32,074 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 08:00:35,450 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 08:00:35,578 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 08:00:37,973 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 08:00:37,983 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.94ms
2019-09-26 08:01:08,230 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab14a4d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab14a4d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:01:38,305 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb16dd6f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb16dd6f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:02:08,366 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa5b0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa5b0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:02:08,556 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:02:38,436 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1a8490>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1a8490>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:03:08,495 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1506d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1506d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:03:08,600 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 08:17:08,557 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:21:03,956 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 08:17:06,882 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 08:17:06,884 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 08:17:06,884 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 08:17:07,275 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 08:17:07,275 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 08:17:07,323 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 08:17:08,295 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 08:17:08,398 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 08:17:08,421 - octoprint.server - INFO - Intermediary server started
2019-09-26 08:17:08,422 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 08:17:08,484 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 08:17:08,502 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 08:17:08,764 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 08:17:08,787 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 08:17:09,451 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 08:17:10,001 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 08:17:10,002 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 08:17:10,003 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 08:17:10,006 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 08:17:10,011 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 08:17:10,023 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 08:17:10,028 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 08:17:10,040 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 08:17:10,424 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 08:17:10,926 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 08:17:10,929 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 08:17:10,930 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 08:17:10,934 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 08:17:10,941 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 08:17:10,946 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 08:17:10,947 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 08:17:10,965 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 08:17:10,982 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 08:17:11,026 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 08:17:11,061 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,074 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,075 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,085 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4fcd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4fcd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,087 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4f530>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4f530>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,094 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,102 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,664 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 08:17:11,665 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 08:17:11,666 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 08:17:11,730 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 08:17:17,115 - octoprint.server.preemptive_cache - INFO - ... done in 5.39s
2019-09-26 08:17:17,115 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 08:17:19,526 - octoprint.server.preemptive_cache - INFO - ... done in 2.41s
2019-09-26 08:32:08,400 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:47:08,402 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:02:08,405 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:17:08,406 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:31:37,863 - tornado.access - WARNING - 404 GET /api/files/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.92ms
2019-09-26 09:32:08,409 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:47:08,410 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:54:14,631 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.39ms
2019-09-26 09:54:15,179 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.51ms
2019-09-26 09:54:15,824 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.84ms
2019-09-26 09:54:16,632 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.65ms
2019-09-26 09:54:20,507 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.25ms
2019-09-26 10:02:08,412 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:17:08,415 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:25:36,500 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:25:40,277 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:40,327 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:40,443 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 10:25:41,883 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:25:41,943 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:42,547 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 10:25:42,552 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.81ms
2019-09-26 10:25:42,649 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 10:30:06,994 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:30:07,098 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 10:30:07,506 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:30:07,535 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:30:09,138 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 10:30:09,143 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.51ms
2019-09-26 10:30:09,180 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 10:32:08,416 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:47:08,417 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:02:08,419 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:17:08,421 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:32:08,422 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:47:08,423 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:57:00,981 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 11:57:00,986 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 11:57:24,216 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 23.24s
2019-09-26 12:02:08,425 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:17:08,426 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:32:08,429 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:33:54,246 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.66ms
2019-09-26 12:34:23,167 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.34ms
2019-09-26 12:34:54,944 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.20ms
2019-09-26 12:35:19,987 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.07ms
2019-09-26 12:37:10,829 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.39ms
2019-09-26 12:38:06,973 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.70ms
2019-09-26 12:38:15,039 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.14ms
2019-09-26 12:40:01,905 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:01,999 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:40:02,355 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:40:02,386 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:02,961 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:40:02,965 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.88ms
2019-09-26 12:40:03,003 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:40:51,762 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.68ms
2019-09-26 12:40:58,917 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.14ms
2019-09-26 12:40:59,559 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.28ms
2019-09-26 12:41:00,039 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.35ms
2019-09-26 12:41:39,524 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:39,617 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:41:39,980 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:41:40,013 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:40,603 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:41:40,612 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.13ms
2019-09-26 12:41:40,670 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:07,003 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,005 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,005 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,396 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,397 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,445 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,417 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,520 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,543 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,544 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,607 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,625 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,890 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,913 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,577 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,128 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,129 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,130 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,133 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,139 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,150 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,156 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,167 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,551 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:11,047 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:11,050 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:11,051 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,055 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,059 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,065 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,075 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,087 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,104 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,148 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,204 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6a710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6a710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,227 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6afd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6afd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,233 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,254 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15e08d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15e08d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,257 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,272 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,288 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,807 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,809 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,809 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,873 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,125 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:16,746 - tornado.access - WARNING - 404 GET /static/webassets/packed_client.js?68a8d0b0 (::ffff:10.55.102.11) 7.37ms
2019-09-26 12:17:16,750 - tornado.access - WARNING - 404 GET /static/webassets/packed_core.js?b00f909b (::ffff:10.55.102.11) 2.21ms
2019-09-26 12:17:17,129 - tornado.access - WARNING - 404 GET /static/webassets/packed_core.js?b00f909b (::ffff:10.55.102.11) 1.54ms
2019-09-26 12:17:17,404 - octoprint.server.preemptive_cache - INFO - ... done in 5.53s
2019-09-26 12:17:17,405 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,639 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,766 - octoprint.server.preemptive_cache - INFO - ... done in 2.36s
2019-09-26 12:17:20,468 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:20,533 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:21,105 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:21,109 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.66ms
2019-09-26 12:17:21,182 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:21,223 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:21,230 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:17:21,469 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:21,497 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:22,028 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:22,038 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.70ms
2019-09-26 12:17:22,080 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:51,314 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:51,316 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:17:54,153 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:54,214 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:17:54,476 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:54,508 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:55,304 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:55,309 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.27ms
2019-09-26 12:17:55,345 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:18:14,178 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.86s
2019-09-26 12:32:08,522 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:47:08,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:51:57,126 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:51:57,127 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:52:09,029 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:52:09,031 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:52:31,278 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.25s
2019-09-26 12:54:01,314 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:54:01,317 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:54:24,075 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.76s
2019-09-26 12:57:37,949 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 16.06ms
2019-09-26 12:57:47,821 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.59ms
2019-09-26 12:58:16,846 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:58:16,943 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:58:17,332 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:58:17,363 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:58:17,944 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:58:17,948 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.13ms
2019-09-26 12:58:17,990 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:02:08,526 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:02:14,025 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.05ms
2019-09-26 13:02:14,570 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.60ms
2019-09-26 13:02:16,920 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:02:17,099 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:02:17,264 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:02:17,454 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.88ms
2019-09-26 13:02:17,631 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.29ms
2019-09-26 13:02:17,806 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:02:17,980 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.64ms
2019-09-26 13:02:18,376 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.24ms
2019-09-26 13:02:18,395 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:02:18,490 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.40ms
2019-09-26 13:02:21,040 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:04:23,960 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.39ms
2019-09-26 13:04:25,509 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:04:29,153 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:06:11,345 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:06:29,025 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 13:06:29,197 - octoprint.server - INFO - Shutting down...
2019-09-26 13:06:29,734 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 13:06:29,736 - octoprint.events - INFO - Event loop shut down
2019-09-26 13:06:29,742 - octoprint.server - INFO - Goodbye!
2019-09-26 13:06:30,850 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:06:30,851 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:06:30,852 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,077 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,078 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,081 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,527 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,528 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,575 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,549 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,658 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,681 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,681 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,745 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,763 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:09,013 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:09,036 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,699 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,249 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,250 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,251 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,254 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,260 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,271 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,277 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,671 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,684 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,685 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,686 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:10,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:10,690 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:10,691 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:10,695 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:10,700 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:10,707 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:10,728 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:10,756 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206ba70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206ba70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,762 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20760b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20760b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,769 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2076230>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2076230>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,775 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d11f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d11f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,779 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d12b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d12b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,788 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206bd30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206bd30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,793 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2046f30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2046f30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,302 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,304 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,389 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,858 - octoprint.server.preemptive_cache - INFO - ... done in 5.47s
2019-09-26 12:17:16,859 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,162 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 12:17:30,604 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:30,732 - tornado.access - WARNING - 404 GET /favicon.ico (::ffff:10.55.102.11) 7.29ms
2019-09-26 12:17:31,139 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:31,169 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:31,849 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:31,855 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.23ms
2019-09-26 12:17:31,897 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:18:56,317 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:18:56,328 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:19:18,939 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.62s
2019-09-26 12:17:06,952 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:06,953 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:06,955 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,342 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,342 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,390 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,361 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,465 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,488 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,488 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,557 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,575 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,835 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,857 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,522 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,072 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,073 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,073 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,077 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,082 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,094 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,099 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,110 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,503 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,992 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,995 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,999 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,002 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,008 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,011 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,020 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,031 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,046 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,096 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,153 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,158 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,186 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1692730>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1692730>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,197 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,202 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,204 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,210 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,755 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,756 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,757 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,823 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:17,077 - octoprint.server.preemptive_cache - INFO - ... done in 5.25s
2019-09-26 12:17:17,077 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:18,175 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,522 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:19,624 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,986 - octoprint.server.preemptive_cache - INFO - ... done in 2.91s
2019-09-26 12:17:20,315 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:20,319 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.64ms
2019-09-26 12:17:20,374 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:29,426 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:29,427 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:17:40,269 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:40,273 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:18:02,727 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.46s
2019-09-26 12:18:03,733 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:18:03,735 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:18:26,302 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.57s
2019-09-26 12:21:42,588 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 12:21:42,763 - octoprint.server - INFO - Shutting down...
2019-09-26 12:21:43,124 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 12:21:43,127 - octoprint.events - INFO - Event loop shut down
2019-09-26 12:21:43,132 - octoprint.server - INFO - Goodbye!
2019-09-26 12:21:44,301 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:21:44,302 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:21:44,303 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:23:07,734 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:23:07,736 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:23:07,736 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,008 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,009 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,009 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,398 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,399 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,447 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,423 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,529 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,552 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,553 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,617 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,895 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,918 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,584 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,132 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,133 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,134 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,137 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,142 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,154 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,159 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,171 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,577 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:11,065 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:11,067 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:11,068 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,069 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,071 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,073 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,078 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,082 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,089 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,113 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,142 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb42f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb42f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,148 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2e70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2e70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,155 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a190>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a190>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,156 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,164 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4ac90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4ac90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,172 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,178 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,720 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,721 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,721 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,792 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:17,239 - octoprint.server.preemptive_cache - INFO - ... done in 5.45s
2019-09-26 12:17:17,239 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,602 - octoprint.server.preemptive_cache - INFO - ... done in 2.36s
2019-09-26 12:17:22,763 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:23,492 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:23,524 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:24,128 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:24,133 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.44ms
2019-09-26 12:17:24,198 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:26,998 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:17:27,003 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:17:28,016 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:17:28,023 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:17:28,040 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:17:28,070 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:17:28,075 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:17:28,077 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:17:28,082 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:19:01,938 - tornado.access - WARNING - 404 GET /api/files/local/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.66ms
2019-09-26 12:20:47,310 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.05ms
2019-09-26 12:20:47,871 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.42ms
2019-09-26 12:20:52,582 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.11ms
2019-09-26 12:25:12,163 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.74ms
2019-09-26 12:28:30,999 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.48ms
2019-09-26 12:28:31,637 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.27ms
2019-09-26 12:28:32,086 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.71ms
2019-09-26 12:32:08,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:36:20,816 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.09ms
2019-09-26 12:41:07,494 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:07,610 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:41:07,634 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:41:07,658 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:41:07,661 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:41:08,070 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:41:08,156 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.76ms
2019-09-26 12:41:08,675 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:08,682 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:41:08,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:08,731 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:41:08,737 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:41:08,741 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:41:08,746 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:41:15,605 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.71ms
2019-09-26 12:41:34,715 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.81ms
2019-09-26 12:41:45,893 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.71ms
2019-09-26 12:42:42,014 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:42:42,114 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:42:42,118 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:42:42,156 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:42:42,159 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:42:42,289 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:42:42,601 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.67ms
2019-09-26 12:42:43,174 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:43,181 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:42:43,193 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:43,233 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:42:43,239 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:42:43,243 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:42:43,247 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:47:08,532 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:48:13,209 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:48:13,308 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:48:13,309 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:48:13,357 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:48:13,359 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:48:13,365 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:48:13,543 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.23ms
2019-09-26 12:48:14,373 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:14,383 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:48:14,393 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:14,435 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:48:14,443 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:48:14,447 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:48:14,452 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:48:42,917 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:48:43,023 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:48:43,024 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:48:43,123 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:48:43,129 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:48:43,366 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:48:43,683 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.79ms
2019-09-26 12:48:44,140 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:44,150 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:48:44,167 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:44,212 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:48:44,219 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:48:44,223 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:48:44,228 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:50:17,929 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:50:18,151 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:50:18,152 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:50:18,154 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:50:18,196 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:50:18,199 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:50:18,995 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.55ms
2019-09-26 12:50:19,214 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:50:19,222 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:50:19,235 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:50:19,288 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:50:19,297 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:50:19,301 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:50:19,308 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:54:18,776 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:18,903 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:18,907 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:54:18,994 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:54:18,998 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:19,254 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:54:19,624 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.48ms
2019-09-26 12:54:20,013 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:20,023 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:20,034 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:20,093 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:54:20,145 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:54:20,178 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:54:20,203 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 13:02:08,534 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:17:07,029 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,031 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,031 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,429 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,430 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,478 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,452 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,556 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,579 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,580 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,643 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,661 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,905 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,928 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,591 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,143 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,144 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,145 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,148 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,153 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,165 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,172 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,185 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,571 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,582 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,583 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,584 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:10,586 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:10,588 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:10,590 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:10,591 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:10,599 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:10,606 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:10,625 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:10,654 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2a30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2a30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,660 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,665 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,673 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,682 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,689 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6bd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6bd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,690 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,226 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,227 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,228 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,294 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,694 - octoprint.server.preemptive_cache - INFO - ... done in 5.40s
2019-09-26 12:17:16,694 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:18,991 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 12:17:20,450 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 12:17:20,475 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.43ms
2019-09-26 12:17:20,512 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:20,538 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:20,558 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:20,583 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:17:20,614 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:17:20,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.11ms
2019-09-26 12:17:20,654 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.76ms
2019-09-26 12:17:34,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 12:17:34,272 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:34,323 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:17:34,339 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.55ms
2019-09-26 12:17:34,355 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:34,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:17:34,376 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:34,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.88ms
2019-09-26 12:17:34,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.41ms
2019-09-26 12:17:34,427 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.67ms
2019-09-26 12:17:34,441 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 12:17:34,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.31ms
2019-09-26 12:17:34,469 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:17:34,483 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:34,496 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.02ms
2019-09-26 12:17:34,510 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:17:34,524 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.92ms
2019-09-26 12:17:34,537 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:34,551 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,565 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:17:34,579 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 12:17:34,593 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 12:17:34,607 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:17:34,622 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.95ms
2019-09-26 12:17:34,651 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.72ms
2019-09-26 12:17:34,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:17:34,679 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.21ms
2019-09-26 12:17:34,693 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:34,707 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.02ms
2019-09-26 12:17:34,740 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.59ms
2019-09-26 12:17:34,754 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.60ms
2019-09-26 12:17:34,769 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.55ms
2019-09-26 12:17:34,782 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:17:34,796 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:34,814 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:17:34,828 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,898 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 60.64ms
2019-09-26 12:17:34,912 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:17:35,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.53ms
2019-09-26 12:17:36,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:17:37,249 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 12:17:38,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:39,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:17:40,248 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:17:41,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:17:42,265 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:17:43,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 12:17:44,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:17:45,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:17:46,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:47,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 12:17:48,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:49,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:17:50,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:17:51,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:17:52,248 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:17:53,270 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 12:17:54,255 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 12:17:55,255 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 12:17:56,252 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 12:17:57,236 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.52ms
2019-09-26 12:17:58,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:17:59,239 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:18:00,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:18:01,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 12:18:02,245 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:18:03,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:18:04,265 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:18:05,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 12:18:06,241 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 12:18:07,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:18:08,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:09,239 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:10,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 12:18:10,657 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 12:18:11,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:12,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 12:18:13,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:18:14,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:18:15,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:18:16,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:18:17,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:19:01,158 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:19:01,288 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:19:01,322 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:19:01,324 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:19:01,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 12:19:02,331 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:02,335 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:19:02,341 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:02,342 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:19:03,664 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:03,664 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 0, line history has 0 entries.
2019-09-26 12:19:03,667 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 1
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: tmc2130_init(), mode=NORMAL
| Recv: tmc2130_set_wave 0 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 1 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD card ok
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Printer requested line 1 but no sufficient history is available, can't resend
| Send: N0 M110 N0*125
2019-09-26 12:19:04,570 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:26:31,758 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:26:41,910 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:26:41,978 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:26:42,084 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:26:42,100 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:26:42,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:26:42,146 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:26:42,160 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 12:26:42,173 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,187 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:26:42,217 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.41ms
2019-09-26 12:26:42,245 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.56ms
2019-09-26 12:26:42,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,329 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:26:42,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.51ms
2019-09-26 12:26:43,112 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:43,118 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:26:43,130 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:43,132 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:26:43,153 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:45,038 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:28:18,139 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.15ms
2019-09-26 12:28:25,210 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.75ms
2019-09-26 12:28:38,173 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.70ms
2019-09-26 12:28:51,499 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:28:51,517 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:28:51,523 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:06,545 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 12:29:06,551 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:06,555 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Cancelling"
2019-09-26 12:29:06,559 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 12:29:06,573 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 12:29:09,860 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:09,864 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:29:11,969 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Printing"
2019-09-26 12:29:11,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: Unknown M code: $1 M108
| Changing monitoring state from "Cancelling" to "Printing"
| Recv: ok
| Send: N2 M105*37
| Send: N3 M84*28
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:29:12,034 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2019-09-26 12:29:24,621 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:24,635 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:29:24,642 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:24,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:24,662 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:30:29,604 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 12:30:29,610 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:30:29,617 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 12:30:29,623 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 12:30:29,633 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 12:30:32,873 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:30:32,875 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:30:34,991 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M84*29
| Recv: Unknown M code: $1 M108
| Recv: ok
| Send: N3 M104 T0 S0*34
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:30:35,040 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 12:32:08,558 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:34:24,371 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:34:24,489 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:34:24,562 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:34:24,613 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:34:24,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:34:25,048 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 12:34:25,630 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:25,635 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:34:25,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:25,650 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:34:25,659 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:30,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:56,478 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:34:56,607 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:34:56,674 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:34:56,708 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:34:56,716 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:34:57,034 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:34:57,727 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:57,734 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:34:57,746 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:57,751 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:34:57,755 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:35:03,088 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:34,599 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:36:34,766 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:36:34,837 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:36:34,853 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:36:34,855 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:36:35,501 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:36:35,868 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:35,872 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:36:35,883 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:35,885 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:36:35,893 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:39,131 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:36:39,132 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:45,882 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M105*38
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok T:58.3 /0.0 B:33.1 /0.0 T0:58.3 /0.0 @:0 B@:0 P:30.9 A:33.5
| Send: N2 M105*37
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:37:44,290 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:37:44,421 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:37:44,500 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:37:44,569 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:37:44,593 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:37:44,962 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:37:45,617 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:45,622 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:37:45,634 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:45,637 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:37:45,645 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:50,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:18,099 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:39:18,201 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:39:18,232 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:39:18,266 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.79ms
2019-09-26 12:39:18,277 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:39:18,286 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:39:19,158 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:39:19,296 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:19,302 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:39:19,315 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:19,319 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:39:19,331 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:24,652 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:14,775 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:14,910 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:40:14,939 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:40:14,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.87ms
2019-09-26 12:40:14,988 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:40:14,991 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:40:15,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 12:40:16,006 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:16,013 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:40:16,026 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:40:16,027 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:21,360 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:21,363 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:03,460 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:03,597 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:41:03,671 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:41:03,693 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:41:03,695 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:41:03,902 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:41:04,710 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:04,730 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:41:04,745 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:04,749 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:41:04,763 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:06,435 - tornado.access - WARNING - 403 POST /api/files/local/griff.gcode (::ffff:10.55.102.11) 6.68ms
2019-09-26 12:41:10,067 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:14,598 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:42:14,744 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:42:14,773 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:42:14,799 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:42:14,808 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:42:15,465 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 12:42:15,821 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:15,827 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:42:15,854 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:15,859 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:42:15,866 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:17,241 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:42:17,254 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:42:17,260 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:42:21,175 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:21,177 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:21,181 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:42:23,343 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:42:50,163 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:43:00,314 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 12:43:00,391 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:43:00,512 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:43:00,527 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:43:00,547 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:43:00,561 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.05ms
2019-09-26 12:43:00,575 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:43:00,590 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.18ms
2019-09-26 12:43:00,603 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 12:43:00,616 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.55ms
2019-09-26 12:43:00,630 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:43:00,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:43:00,677 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.61ms
2019-09-26 12:43:00,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.72ms
2019-09-26 12:43:00,720 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.11ms
2019-09-26 12:43:01,469 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:43:01,534 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:01,537 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:43:01,542 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:43:01,543 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:06,892 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:06,894 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:27,531 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:27,631 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:46:27,662 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:46:27,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.43ms
2019-09-26 12:46:27,725 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:46:27,729 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:46:28,629 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.58ms
2019-09-26 12:46:28,738 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:28,744 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:46:28,754 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:28,758 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:46:28,763 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:34,094 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:53,377 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:53,440 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:46:53,812 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:46:53,852 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:54,441 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:46:54,445 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.11ms
2019-09-26 12:46:54,487 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:46:57,422 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:47:08,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:47:24,132 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:47:24,239 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:47:24,319 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:47:24,390 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Connection error, see Terminal tab"
2019-09-26 12:47:24,411 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: None SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2661 (hook default)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2661, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2650, in default
serial_obj.open()
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-09-26 12:47:24,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.64ms
2019-09-26 12:47:25,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 12:47:26,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 12:47:27,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 12:47:28,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 12:47:29,684 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 12:47:30,689 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:47:31,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 12:47:32,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:47:33,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 12:47:34,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 12:47:35,714 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 12:47:36,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 12:47:37,703 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 12:47:38,684 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 12:47:39,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 12:47:40,692 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 12:47:41,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 12:47:42,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 12:47:43,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:47:44,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 12:47:45,687 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 12:47:46,711 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 12:47:47,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 12:47:48,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:47:49,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 12:47:50,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 12:47:51,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 12:47:52,687 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 12:47:53,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 12:47:54,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 12:47:56,299 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 12:47:57,322 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:47:58,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:47:59,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:48:00,307 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 12:48:01,297 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 12:48:02,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.36ms
2019-09-26 12:48:03,316 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 12:48:04,301 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 12:48:05,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:48:06,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 12:48:07,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:08,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:48:09,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:48:10,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 12:48:11,288 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:48:12,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:48:13,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 12:48:14,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 12:48:15,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:48:16,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 12:48:17,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 12:48:18,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 12:48:19,564 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:20,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:21,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 12:48:22,300 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.60ms
2019-09-26 12:48:23,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 12:48:24,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:48:25,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 12:48:26,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 12:48:27,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 12:48:28,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 12:48:29,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:30,320 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 12:48:31,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 12:48:32,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 12:48:33,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:48:34,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 12:48:35,300 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:48:36,313 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:48:37,311 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 12:48:38,315 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:48:39,307 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:48:40,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 12:48:41,329 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 12:48:42,295 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:43,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:48:44,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 12:48:45,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:46,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 12:48:47,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 12:48:48,306 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 12:48:49,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:48:50,302 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 12:48:51,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:48:52,318 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 12:48:52,693 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:49:01,666 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:49:01,775 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:49:01,798 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:49:01,801 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:49:02,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 12:49:02,810 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:02,817 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:49:02,830 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:02,832 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:49:02,840 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:06,074 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:06,076 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:49:12,828 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M105*38
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok T:209.5 /0.0 B:63.6 /0.0 T0:209.5 /0.0 @:0 B@:0 P:32.4 A:36.7
| Send: N2 M105*37
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:51:32,306 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:51:32,421 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:51:32,494 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:51:32,535 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:51:32,546 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:51:32,751 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.06ms
2019-09-26 12:51:33,557 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:33,564 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:51:33,577 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:51:33,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:38,914 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:38,916 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:41,085 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:53:41,155 - tornado.access - WARNING - 403 GET /api/connection (::ffff:10.55.102.11) 11.78ms
2019-09-26 12:53:41,220 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:53:41,252 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:53:41,274 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:53:41,276 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:53:41,604 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.56ms
2019-09-26 12:53:42,286 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:42,292 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:53:42,305 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:42,308 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:53:45,552 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:45,555 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:53:45,559 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:22,067 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:22,257 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:22,285 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:54:22,314 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:54:22,321 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:22,474 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:54:23,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:23,339 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:23,351 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:23,353 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:54:23,360 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:28,685 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:52,988 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:53,190 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:53,218 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:54:53,248 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:54:53,251 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:53,936 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 12:54:54,265 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:54,269 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:54,282 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:54,283 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:54:54,305 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:59,616 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:55:26,742 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:55:26,749 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:55:26,751 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:55:26,754 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:55:26,760 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:55:29,090 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:55:35,710 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 12:56:41,837 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:56:42,040 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 12:56:42,075 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:56:42,103 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:56:42,105 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:56:42,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 12:56:43,116 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:43,123 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:56:43,135 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:43,136 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:56:43,142 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:48,476 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:03,219 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:59:03,430 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:59:03,459 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:59:03,490 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:59:03,491 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:59:03,998 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.59ms
2019-09-26 12:59:04,504 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:04,506 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:59:04,520 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:04,524 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:59:04,530 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:09,863 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:02:08,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:03:38,553 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.25
2019-09-26 13:04:15,371 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:04:15,580 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:04:15,608 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:04:15,621 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.58ms
2019-09-26 13:04:15,644 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:04:15,647 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:04:16,526 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:04:16,656 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:16,663 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:04:16,678 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:16,680 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:04:16,688 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:19,922 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:19,923 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:04:25,998 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:04:26,004 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:04:26,007 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:04:26,011 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:26,017 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:04:28,117 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:04:29,667 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:06:21,358 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:06:27,186 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 13:06:27,270 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:06:27,288 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,304 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.44ms
2019-09-26 13:06:27,321 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,336 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.90ms
2019-09-26 13:06:27,375 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:06:27,378 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:06:27,547 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.08ms
2019-09-26 13:06:28,388 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:28,393 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:06:28,406 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:28,409 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:06:28,428 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:33,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:08:22,950 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:08:24,241 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:08:24,247 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:08:24,260 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:08:24,270 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:08:26,505 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:08:28,587 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:08:36,806 - tornado.access - WARNING - 403 GET /api/settings (::ffff:10.55.102.11) 5.86ms
2019-09-26 13:08:36,840 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:08:37,025 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:08:41,583 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:41,608 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:41,666 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:08:42,037 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:08:42,070 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:42,645 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:08:42,649 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.28ms
2019-09-26 13:08:42,692 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:08:54,567 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Pausing"
2019-09-26 13:09:04,577 - octoprint.printer.standard.job - INFO - Print job paused - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:09:21,277 - octoprint.util.comm - INFO - Changing monitoring state from "Pausing" to "Paused"
2019-09-26 13:12:25,490 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart
2019-09-26 13:12:25,692 - octoprint.server - INFO - Shutting down...
2019-09-26 13:12:26,527 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 13:12:26,532 - octoprint.events - INFO - Event loop shut down
2019-09-26 13:12:26,547 - octoprint.server - INFO - Goodbye!
2019-09-26 13:12:27,687 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:12:27,688 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:12:27,688 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2019-09-26 13:12:27,689 - octoprint.startup - INFO - Reason for safe mode: setting in config.yaml
2019-09-26 13:12:27,689 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:14:37,667 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 13:14:37,669 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 13:14:37,730 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:14:38,422 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:14:38,511 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 13:14:38,524 - octoprint.server - INFO - Intermediary server started
2019-09-26 13:14:38,524 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:14:38,588 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:14:38,603 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 13:14:38,858 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 13:14:38,878 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 13:14:39,435 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:14:39,990 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 13:14:39,992 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:14:39,992 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:14:39,995 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 13:14:40,001 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 13:14:40,010 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 13:14:40,016 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 13:14:40,029 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 13:14:40,387 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 13:14:40,880 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 13:14:40,882 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 13:14:40,883 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 13:14:40,884 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 13:14:40,886 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 13:14:40,889 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 13:14:40,890 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 13:14:40,897 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 13:14:40,903 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 13:14:40,913 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-09-26 13:14:40,925 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 13:14:40,925 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2019-09-26 13:14:41,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:14:41,601 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:14:41,602 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:14:41,603 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:14:41,671 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 13:14:42,345 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.80ms
2019-09-26 13:14:43,347 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.92ms
2019-09-26 13:14:44,579 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 50.33ms
2019-09-26 13:14:45,435 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 28.34ms
2019-09-26 13:14:46,344 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.87ms
2019-09-26 13:14:46,579 - octoprint.server.preemptive_cache - INFO - ... done in 4.91s
2019-09-26 13:14:46,580 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 13:14:47,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 8.44ms
2019-09-26 13:14:48,349 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.19ms
2019-09-26 13:14:48,881 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 13:14:49,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 13:14:50,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:14:51,346 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:14:52,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:14:53,349 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:14:54,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:14:55,348 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:14:56,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:14:57,348 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:14:58,347 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.56ms
2019-09-26 13:14:59,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:15:00,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:15:01,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:15:02,346 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:15:03,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:15:04,316 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:04,427 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.61ms
2019-09-26 13:15:05,049 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:15:05,083 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:05,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 13:15:05,737 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:15:05,741 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.98ms
2019-09-26 13:15:05,775 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:15:06,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:15:07,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:15:08,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.88ms
2019-09-26 13:15:09,344 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.55ms
2019-09-26 13:15:10,343 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:15:11,018 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53c90>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53c90>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:11,033 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb3195af0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb3195af0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:11,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:15:12,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:15:13,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.22ms
2019-09-26 13:15:14,319 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:15:14,420 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:15:14,429 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:15:14,548 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.94ms
2019-09-26 13:15:15,343 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.90ms
2019-09-26 13:15:15,442 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:15,451 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:15:15,464 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:15,468 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:15:15,473 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:20,803 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:41,088 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaae7d690>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaae7d690>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:41,090 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaaec8650>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaaec8650>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:54,481 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:59,682 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:16:00,336 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 13:16:01,078 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.56ms
2019-09-26 13:16:01,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:16:02,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.91ms
2019-09-26 13:16:03,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.55ms
2019-09-26 13:16:05,001 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:16:05,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:16:06,964 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.56ms
2019-09-26 13:16:07,961 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:16:08,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.08ms
2019-09-26 13:16:09,967 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.79ms
2019-09-26 13:16:10,144 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.25
2019-09-26 13:16:10,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:16:11,160 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadf2b10>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadf2b10>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:16:11,965 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.67ms
2019-09-26 13:16:12,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.02ms
2019-09-26 13:16:13,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.89ms
2019-09-26 13:16:14,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.87ms
2019-09-26 13:16:15,996 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:16:16,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.69ms
2019-09-26 13:16:17,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.35ms
2019-09-26 13:16:18,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.78ms
2019-09-26 13:16:19,970 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.87ms
2019-09-26 13:16:20,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.66ms
2019-09-26 13:16:21,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.73ms
2019-09-26 13:16:22,970 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.34ms
2019-09-26 13:16:23,968 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:16:24,964 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.45ms
2019-09-26 13:16:25,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:16:27,009 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:16:27,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:16:28,960 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 13:16:29,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.14ms
2019-09-26 13:16:30,983 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:16:31,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:16:32,968 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.87ms
2019-09-26 13:16:33,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.48ms
2019-09-26 13:16:34,983 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:16:35,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.37ms
2019-09-26 13:16:41,210 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab0e27d0>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab0e27d0>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:16:46,865 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:16:46,961 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.90ms
2019-09-26 13:16:47,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.82ms
2019-09-26 13:16:48,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:16:49,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:16:50,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:16:51,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:16:52,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:16:53,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:16:54,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:16:55,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:16:56,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:16:57,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.95ms
2019-09-26 13:16:58,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:16:59,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:17:00,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.62ms
2019-09-26 13:17:01,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:17:02,876 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:17:03,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.27ms
2019-09-26 13:17:04,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:17:05,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:17:06,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.02ms
2019-09-26 13:17:07,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:17:08,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.96ms
2019-09-26 13:17:09,866 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:17:10,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:17:11,279 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadd4470>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadd4470>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:17:11,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:17:12,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:17:13,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:17:14,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:17:15,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:17:16,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:17:17,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:17:18,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:17:19,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:17:20,884 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:17:21,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.74ms
2019-09-26 13:17:22,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.89ms
2019-09-26 13:17:23,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:17:24,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:17:25,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.19ms
2019-09-26 13:17:26,879 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.88ms
2019-09-26 13:17:27,882 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:17:28,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:17:29,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:17:30,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:17:31,877 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:17:32,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:17:33,881 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.43ms
2019-09-26 13:17:34,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:17:35,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:17:36,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.02ms
2019-09-26 13:17:37,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:17:38,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:17:39,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.19ms
2019-09-26 13:17:40,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:17:41,898 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:17:42,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:17:43,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 13:17:44,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:17:45,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:17:46,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:17:47,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:17:48,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:17:49,877 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:17:50,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:17:51,880 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:17:52,900 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:17:53,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:17:54,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:17:55,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:17:56,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:17:57,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:17:58,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:17:59,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:18:00,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:18:01,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:18:02,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.92ms
2019-09-26 13:18:03,901 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:18:04,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:18:05,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:18:06,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:18:07,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:18:08,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:18:09,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:18:10,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:18:11,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:18:12,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:18:13,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:18:14,947 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:18:15,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:18:16,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:18:25,864 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:18:25,954 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:18:26,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.78ms
2019-09-26 13:18:27,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:18:28,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:18:29,235 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:18:30,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:31,230 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:18:32,321 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:18:33,237 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:18:34,234 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:18:35,232 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:18:36,262 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.52ms
2019-09-26 13:18:44,960 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:18:45,003 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:18:45,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:18:46,657 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.49ms
2019-09-26 13:18:47,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:18:48,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:18:49,640 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:18:50,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:51,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:18:52,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:53,631 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:54,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:18:55,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:56,643 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:57,660 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:18:58,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:18:59,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.83ms
2019-09-26 13:19:00,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:19:01,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:19:02,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:19:03,640 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:19:04,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:19:05,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:19:06,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:19:07,649 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:19:08,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.55ms
2019-09-26 13:19:09,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:19:10,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.97ms
2019-09-26 13:19:11,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:19:12,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:13,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:19:14,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:15,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:19:16,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.82ms
2019-09-26 13:19:17,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:19:18,646 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:19:19,660 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:19:20,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:19:21,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.19ms
2019-09-26 13:19:22,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:19:23,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:19:24,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.17ms
2019-09-26 13:19:25,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:19:26,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:19:27,642 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.23ms
2019-09-26 13:19:28,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:19:29,644 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:19:30,661 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:19:31,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:19:32,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.28ms
2019-09-26 13:19:33,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:19:34,645 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:35,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.25ms
2019-09-26 13:19:36,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:19:37,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:19:38,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.21ms
2019-09-26 13:19:39,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:19:40,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:19:41,672 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:19:42,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:19:43,643 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.75ms
2019-09-26 13:19:44,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:19:45,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:19:46,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.99ms
2019-09-26 13:19:47,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.93ms
2019-09-26 13:19:48,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 13:19:50,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 17.32ms
2019-09-26 13:19:50,571 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 13:19:50,574 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-09-26 13:19:50,577 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:50,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:51,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:19:51,581 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:52,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.10ms
2019-09-26 13:19:53,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:19:54,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:19:54,845 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:19:54,850 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-09-26 13:19:54,858 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:56,690 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:19:56,966 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.3.1 based on Marlin"
2019-09-26 13:19:56,974 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Recv: ok
| Changing monitoring state from "Connecting" to "Operational"
| Send: N0 M110 N0*125
| Send: N1 M115*39
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M21*18
| Recv: FIRMWARE_NAME:Prusa-Firmware 3.3.1 based on Marlin FIRMWARE_URL:https://github.com/prusa3d/Prusa-Firmware PROTOCOL_VERSION:1.0 MACHINE_TYPE:Prusa i3 MK3 EXTRUDER_COUNT:1 UUID:00000000-0000-0000-0000-000000000000
| Recv: ok
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:19:57,902 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:19:57,908 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:19:57,919 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:59,120 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:20:01,303 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:20:08,861 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:21:12,929 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-09-26 13:21:29,418 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Pausing"
2019-09-26 13:21:30,924 - octoprint.util.comm - INFO - Changing monitoring state from "Pausing" to "Cancelling"
2019-09-26 13:21:30,927 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 13:21:30,932 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:21:40,963 - octoprint.printer.standard.job - INFO - Print job paused - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:21:55,717 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 13:21:58,588 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:21:59,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:22:00,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:22:01,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:22:02,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:03,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:04,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:22:05,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:22:06,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:07,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:08,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 13:22:09,416 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:10,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:22:11,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:22:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:22:13,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:22:14,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:22:15,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:22:16,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:17,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:22:18,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:22:19,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:20,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:21,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:22:22,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:22:23,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:23,437 - tornado.access - WARNING - 405 POST /api/printer?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.17ms
2019-09-26 13:22:24,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:25,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:22:26,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 13:22:27,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:28,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:22:29,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:22:30,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:22:30,611 - tornado.access - WARNING - 409 GET /api/printer?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 8.70ms
2019-09-26 13:22:31,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:32,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:22:33,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:22:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:22:35,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:22:36,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:22:37,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.91ms
2019-09-26 13:22:38,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:22:39,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:22:40,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:41,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:42,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:22:43,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:22:44,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:22:45,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:22:46,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:22:47,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:22:48,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:22:49,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:50,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:22:51,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:52,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:22:53,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:22:54,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:22:55,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:22:56,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:22:57,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:58,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:22:59,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:00,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:23:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.31ms
2019-09-26 13:23:02,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:23:03,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:23:04,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:23:05,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:23:06,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:23:07,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:23:08,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:23:09,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:23:10,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:23:11,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:23:12,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:23:13,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:23:14,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:23:15,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:23:16,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:23:17,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:23:18,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:23:19,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:23:20,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:23:21,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:23:22,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:23:23,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:23:24,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:23:25,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:23:26,422 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:23:27,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:28,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:23:29,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:23:30,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:31,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:23:32,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:23:33,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:23:34,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:23:35,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:23:36,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:23:37,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:23:38,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:23:39,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:23:40,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:23:41,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:23:42,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:23:43,398 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:23:44,444 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:45,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:23:46,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:23:47,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:23:48,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:49,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:23:50,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:23:51,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:23:52,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:53,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:23:54,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:23:55,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:23:56,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:23:57,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:23:58,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:23:59,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:24:00,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:24:01,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:24:02,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:24:03,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:24:04,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.18ms
2019-09-26 13:24:05,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:24:06,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:24:07,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:24:08,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:24:09,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:24:10,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:24:11,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:24:12,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:24:13,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:24:14,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.51ms
2019-09-26 13:24:15,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:24:16,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:24:17,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:24:18,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:24:19,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:24:20,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:24:21,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:24:22,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.16ms
2019-09-26 13:24:23,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:24:24,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:24:25,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:24:26,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:24:27,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:24:28,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:24:29,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:24:30,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:24:31,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:24:32,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:24:33,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:24:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:24:35,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:24:36,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:24:37,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:24:38,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:24:39,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:24:40,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:24:41,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.98ms
2019-09-26 13:24:42,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:24:43,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:24:44,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:45,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:24:46,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:24:47,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:48,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:49,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:24:50,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:24:51,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:52,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:53,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:24:54,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:24:55,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:56,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:24:57,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:24:58,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:24:59,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:25:00,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:01,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:03,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:04,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:25:05,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:25:06,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:25:07,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:25:08,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:25:09,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:25:10,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:11,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:25:12,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:13,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:25:14,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:25:15,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:16,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:17,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:25:18,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:25:19,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:25:20,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:21,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:22,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:25:23,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:24,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:25,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:25:26,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:27,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:25:28,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:29,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:25:30,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:25:31,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:25:32,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 13:25:33,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:25:34,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:35,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:25:36,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:25:37,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:25:38,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:25:39,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:40,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:25:41,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:25:42,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:25:43,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:44,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:25:45,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:25:46,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:47,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:48,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:25:49,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:25:50,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:25:51,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:25:52,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:25:53,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:25:54,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:25:55,500 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:25:56,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:57,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:25:58,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:25:59,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:26:00,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:26:01,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:26:02,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:26:03,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:26:04,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:26:05,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:26:06,405 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:26:07,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:26:08,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.90ms
2019-09-26 13:26:09,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:26:10,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:26:11,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:26:12,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:26:13,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:26:14,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:26:15,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:26:16,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:26:17,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:26:18,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:26:19,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:26:20,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:26:21,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:26:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:26:23,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:26:24,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:25,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.28ms
2019-09-26 13:26:26,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:27,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:26:28,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:26:29,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.62ms
2019-09-26 13:26:30,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.20ms
2019-09-26 13:26:31,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:26:32,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:26:33,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:26:34,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:26:35,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:26:36,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:26:37,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:26:38,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:26:39,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:26:40,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:26:41,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:26:42,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:26:43,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:44,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:26:45,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:26:46,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:26:47,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:26:48,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:26:49,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:26:50,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:26:51,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:26:52,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:53,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:26:54,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:26:55,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:26:56,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:26:57,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:26:58,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:26:59,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:27:00,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:27:01,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:27:02,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:27:03,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:27:04,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:27:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:27:06,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:27:07,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:27:08,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:27:09,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:27:10,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:27:11,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:27:12,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:27:13,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:27:14,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:27:15,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:27:16,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:27:17,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:18,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:19,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:27:20,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:21,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:27:22,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:27:23,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:27:24,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:27:25,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:26,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:27,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:28,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:29,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:30,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:27:31,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:27:32,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:27:33,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:27:34,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:27:35,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:27:36,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:27:37,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:27:38,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:27:39,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:27:40,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:41,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:42,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:27:43,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:27:44,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:27:45,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.76ms
2019-09-26 13:27:46,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:27:47,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:27:48,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:27:49,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:50,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:27:51,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:27:52,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:27:53,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:54,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:27:55,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:27:56,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:27:57,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:58,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:59,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:28:00,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:28:01,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:28:02,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:28:03,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:28:04,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:28:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:28:06,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:28:07,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:28:08,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:28:09,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:28:10,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:28:11,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:28:12,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:28:13,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:28:14,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:28:15,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:28:16,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:28:17,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:28:18,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:28:19,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:28:20,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:28:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:28:22,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:28:23,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:28:24,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:25,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:28:26,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:28:27,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:28:28,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:28:29,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:28:30,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:28:31,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:28:32,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:28:33,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:28:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:28:35,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:28:36,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:28:37,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:28:38,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:28:39,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:28:40,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:28:41,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.33ms
2019-09-26 13:28:42,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:28:43,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:44,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:28:45,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:28:46,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.33ms
2019-09-26 13:28:47,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.42ms
2019-09-26 13:28:48,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:28:49,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.00ms
2019-09-26 13:28:50,403 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 13:28:51,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:28:52,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.17ms
2019-09-26 13:28:53,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.86ms
2019-09-26 13:28:54,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.93ms
2019-09-26 13:28:55,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:28:56,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:57,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.65ms
2019-09-26 13:28:58,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:28:59,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:29:00,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:29:01,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:29:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:29:03,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:29:04,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.04ms
2019-09-26 13:29:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:29:06,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.65ms
2019-09-26 13:29:07,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:29:08,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:29:09,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:29:10,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:29:11,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:29:12,406 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:29:13,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:29:14,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:29:15,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:29:16,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:29:17,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:29:18,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:29:19,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:29:20,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:29:21,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:29:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.12ms
2019-09-26 13:29:23,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:29:24,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:29:25,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:29:26,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:29:27,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:29:28,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:29:29,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:29:30,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:29:31,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:29:32,425 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:29:33,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:29:34,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.07ms
2019-09-26 13:29:35,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:29:36,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:29:37,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.29ms
2019-09-26 13:29:38,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:29:38,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:29:39,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:29:40,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:29:41,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 19.29ms
2019-09-26 13:29:42,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:29:43,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.90ms
2019-09-26 13:29:44,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:29:45,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:29:46,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:29:47,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:29:48,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:29:49,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:29:50,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:29:51,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.99ms
2019-09-26 13:29:52,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:29:53,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:29:54,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.48ms
2019-09-26 13:29:55,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:29:56,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.57ms
2019-09-26 13:29:57,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:29:58,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:29:59,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:30:00,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:30:01,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:30:02,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.64ms
2019-09-26 13:30:03,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:30:04,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:30:05,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.04ms
2019-09-26 13:30:06,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:30:07,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:30:08,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:30:09,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:30:10,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:30:11,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:30:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:30:13,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:30:14,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:30:15,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:30:16,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:30:17,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:30:18,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:30:19,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:30:20,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:30:21,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:30:22,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:23,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:30:24,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:25,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:30:26,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:30:27,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:28,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:30:29,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:30:30,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:30:31,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:30:32,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:30:33,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 13:30:34,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:30:35,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:30:36,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:30:37,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 13:30:38,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:30:39,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:30:40,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:41,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:30:42,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:30:43,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:30:44,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:30:45,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:30:46,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:30:47,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:48,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:30:49,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:50,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:30:51,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:30:51,645 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 13:31:01,235 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:31:01,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:31:02,433 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 13:31:03,452 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:31:04,433 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:31:06,122 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 13:31:06,125 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-09-26 13:31:06,135 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:06,137 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:06,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 13:31:07,134 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:07,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:31:08,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:31:08,477 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:31:09,235 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:31:09,429 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:31:10,170 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:31:10,177 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-09-26 13:31:10,183 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:12,291 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.3.1 based on Marlin"
2019-09-26 13:31:12,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Recv: ok
| Changing monitoring state from "Connecting" to "Operational"
| Send: N0 M110 N0*125
| Send: N1 M115*39
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M21*18
| Recv: FIRMWARE_NAME:Prusa-Firmware 3.3.1 based on Marlin FIRMWARE_URL:https://github.com/prusa3d/Prusa-Firmware PROTOCOL_VERSION:1.0 MACHINE_TYPE:Prusa i3 MK3 EXTRUDER_COUNT:1 UUID:00000000-0000-0000-0000-000000000000
| Recv: ok
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:31:33,694 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.25
2019-09-26 13:31:38,562 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:11,515 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:31,581 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:59,678 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:33:28,410 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:34:15,909 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:34:15,914 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:34:15,916 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:34:15,921 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:15,928 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:34:18,181 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:34:45,600 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 13:34:45,606 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:45,611 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 13:34:45,617 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 13:34:45,631 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 13:34:48,881 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:34:48,882 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:50,987 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M84*29
| Recv: Unknown M code: $1 M108
| Recv: ok
| Send: N3 M104 T0 S0*34
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:34:51,020 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 13:41:10,138 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:16,179 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:41:16,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.07ms
2019-09-26 13:41:17,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:41:17,982 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.30ms
2019-09-26 13:41:26,810 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:27,138 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.56ms
2019-09-26 13:41:28,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:41:29,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:41:30,168 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.25ms
2019-09-26 13:41:31,131 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:41:32,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:41:33,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.94ms
2019-09-26 13:41:34,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:41:35,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:41:36,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:41:37,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:41:38,160 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.98ms
2019-09-26 13:41:39,140 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:41:40,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:41:41,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.09ms
2019-09-26 13:41:42,131 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:41:43,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.45ms
2019-09-26 13:41:44,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:41:45,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.98ms
2019-09-26 13:41:46,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:41:47,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:41:56,342 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:57,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.09ms
2019-09-26 13:41:58,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:41:59,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:42:00,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:42:01,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:42:02,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:42:03,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 13:42:04,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.06ms
2019-09-26 13:42:05,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:42:06,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:42:07,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:42:08,142 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:42:09,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:42:10,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:42:11,121 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:42:12,122 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:42:13,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.86ms
2019-09-26 13:42:14,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:42:15,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:16,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:42:17,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:42:18,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:42:19,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:42:20,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:42:21,120 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:22,124 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:42:23,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.77ms
2019-09-26 13:42:31,367 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:42:31,668 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.15ms
2019-09-26 13:42:32,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.60ms
2019-09-26 13:42:33,665 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:42:34,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:42:35,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.42ms
2019-09-26 13:42:36,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:42:37,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.47ms
2019-09-26 13:42:38,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:39,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:42:40,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.81ms
2019-09-26 13:42:41,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:42:42,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.30ms
2019-09-26 13:42:43,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.80ms
2019-09-26 13:42:44,670 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:42:45,668 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:42:46,665 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:42:57,849 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:42:58,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 13:42:59,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:43:00,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:43:02,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.50ms
2019-09-26 13:43:03,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:43:04,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:05,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:43:06,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.67ms
2019-09-26 13:43:07,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:43:08,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.53ms
2019-09-26 13:43:09,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:10,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:43:11,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:12,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.84ms
2019-09-26 13:43:13,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:43:14,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:15,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:43:16,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:43:17,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:43:18,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:43:19,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.68ms
2019-09-26 13:43:20,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:43:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:23,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:43:24,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:25,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:43:26,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:27,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:43:28,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:43:29,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:43:30,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:31,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.31ms
2019-09-26 13:43:32,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:43:33,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:43:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:43:35,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:43:36,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:37,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:43:38,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:43:39,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:43:40,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.31ms
2019-09-26 13:43:41,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:43:42,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:43:43,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:44,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:45,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:43:46,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:43:47,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:43:48,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:43:49,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:43:50,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:43:51,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:52,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:43:53,398 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:43:54,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:43:55,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:43:56,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:43:57,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:43:58,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:43:59,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:44:00,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:44:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:44:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:44:03,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.76ms
2019-09-26 13:44:04,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:44:05,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:44:06,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:44:07,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:44:08,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:44:09,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:44:10,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:44:11,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:44:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:44:13,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:44:14,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:44:15,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:44:16,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:44:17,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:44:18,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:44:19,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:44:20,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:44:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:44:22,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:44:23,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:44:24,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 13:44:25,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:44:26,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:44:27,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:44:28,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:44:29,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:44:30,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.28ms
2019-09-26 13:44:31,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.20ms
2019-09-26 13:44:32,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.80ms
2019-09-26 13:44:33,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:44:34,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.41ms
2019-09-26 13:44:35,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:44:36,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.68ms
2019-09-26 13:44:37,405 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.08ms
2019-09-26 13:44:38,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:44:38,516 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:44:39,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:44:40,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:44:41,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 17.89ms
2019-09-26 13:44:42,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:44:43,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:44:44,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:44:45,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:44:46,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:44:47,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.57ms
2019-09-26 13:44:48,403 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:44:49,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:44:50,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:44:51,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.07ms
2019-09-26 13:44:52,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:44:53,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.96ms
2019-09-26 13:44:54,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.84ms
2019-09-26 13:44:55,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:44:56,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:44:57,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.81ms
2019-09-26 13:44:58,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:44:59,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.98ms
2019-09-26 13:45:00,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.08ms
2019-09-26 13:45:01,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:45:02,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:45:03,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.06ms
2019-09-26 13:45:04,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.90ms
2019-09-26 13:45:05,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:45:06,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:45:07,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.91ms
2019-09-26 13:45:08,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:45:09,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.38ms
2019-09-26 13:45:10,407 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:45:11,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:45:12,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:45:13,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.10ms
2019-09-26 13:45:14,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:45:15,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:45:16,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:47:41,632 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:47:41,943 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.43ms
2019-09-26 13:47:42,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:47:43,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:47:44,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:47:45,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:47:46,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:47:47,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:47:48,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:49,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:50,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:47:51,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:47:52,962 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:47:53,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:54,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:55,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:47:56,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:47:57,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:47:58,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:47:59,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:48:00,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:48:01,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:48:02,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:03,957 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:48:04,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:48:05,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:48:06,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:48:07,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:08,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:48:09,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:48:10,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:48:11,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:12,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:48:13,941 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:48:14,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:48:15,935 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:16,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:48:17,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:48:18,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:19,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:20,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:48:21,934 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:48:22,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:23,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:48:24,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:25,955 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:26,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:48:27,932 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:28,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:29,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:48:30,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:48:31,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:48:32,933 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:48:41,508 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:48:41,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 13:48:42,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:43,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:44,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:48:45,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:46,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:48:47,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:48:48,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:49,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:48:50,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:48:51,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:48:52,917 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:48:53,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:54,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:48:55,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:56,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:48:57,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:58,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:59,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:49:00,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:01,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:49:02,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:49:03,917 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:04,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:49:05,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:06,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:07,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:49:08,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:09,902 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:49:10,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:11,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:12,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:13,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:14,920 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:49:15,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:49:16,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:17,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:49:18,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:19,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:49:20,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:21,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:49:22,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:49:23,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:24,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:25,918 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:49:26,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:49:27,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:28,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:49:29,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:30,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:31,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:32,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:49:33,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:34,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:35,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:36,919 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.53ms
2019-09-26 13:49:37,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:49:38,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:49:39,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:49:40,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:49:41,903 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.91ms
2019-09-26 13:49:42,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:49:43,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.96ms
2019-09-26 13:49:44,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:49:45,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:49:46,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:49:47,918 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:48,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:49:49,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:49:50,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:51,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:52,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:50:02,005 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:02,191 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 13:50:03,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:50:04,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:50:05,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:50:06,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:07,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:08,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:09,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:10,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:11,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:50:12,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:50:13,172 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:14,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:50:15,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:16,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:50:17,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:18,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:50:19,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:50:20,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:50:21,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:50:22,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:50:23,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:50:24,174 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:50:25,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:50:26,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:27,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:28,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:50:29,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:50:30,153 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:50:31,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:32,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:50:33,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:50:34,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:50:35,176 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:50:36,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:50:37,155 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:50:38,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:50:39,154 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:50:40,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:50:41,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:50:42,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:51:02,891 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:51:03,868 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:51:04,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:51:05,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:51:06,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:51:07,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:51:08,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:51:09,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:51:10,849 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:51:12,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:51:13,408 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:51:14,432 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.60ms
2019-09-26 13:51:15,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:51:16,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:51:17,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:51:18,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:51:19,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:51:20,412 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:51:21,412 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.94ms
2019-09-26 13:51:22,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:51:23,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:51:24,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:51:25,439 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.30ms
2019-09-26 13:51:26,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.20ms
2019-09-26 13:51:27,417 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:51:28,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.53ms
2019-09-26 13:51:29,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:51:30,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:51:31,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:51:32,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.23ms
2019-09-26 13:51:33,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:51:33,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.69ms
2019-09-26 13:51:41,549 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:51:42,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.26ms
2019-09-26 13:51:43,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.12ms
2019-09-26 13:51:44,461 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.10ms
2019-09-26 13:51:45,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:51:46,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:51:47,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:51:48,462 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:51:49,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:51:50,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:51:51,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.47ms
2019-09-26 13:51:52,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:51:53,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.45ms
2019-09-26 13:51:54,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.14ms
2019-09-26 13:51:55,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.74ms
2019-09-26 13:51:56,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:51:57,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:51:58,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:51:59,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:52:00,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:52:01,467 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:52:02,463 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.34ms
2019-09-26 13:52:03,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:52:04,483 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.93ms
2019-09-26 13:52:05,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:52:06,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:52:07,507 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:52:08,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:09,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:10,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:52:11,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:52:12,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:13,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:52:14,461 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:15,482 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:52:16,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:52:17,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:52:18,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:52:19,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:52:20,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:21,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:52:22,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:52:23,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:24,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:52:25,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:26,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.04ms
2019-09-26 13:52:27,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.82ms
2019-09-26 13:52:28,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:52:29,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:52:30,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:52:31,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:52:32,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:52:33,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:52:34,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:52:35,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:52:36,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:52:37,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.20ms
2019-09-26 13:52:38,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:52:39,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:52:40,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:52:41,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:52:42,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:52:43,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:52:44,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:45,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:52:46,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:47,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:52:48,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:52:49,465 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:52:50,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:51,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:52:52,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:53,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:52:54,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:55,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:52:56,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:52:57,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:52:58,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:52:59,481 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:53:00,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:53:01,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:02,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:53:03,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:53:04,462 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:53:05,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:53:06,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:53:07,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:08,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:53:09,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:53:10,482 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:53:11,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:53:12,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:13,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:53:14,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:53:15,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:55:33,210 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:55:33,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.09ms
2019-09-26 13:55:34,980 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:55:35,980 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:55:36,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:55:37,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:55:38,971 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.63ms
2019-09-26 13:55:39,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:55:40,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:55:41,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:55:42,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:55:43,997 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:55:45,010 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:55:45,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:55:46,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:55:47,986 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:55:48,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:55:49,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:55:50,979 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:55:51,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:55:52,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:55:53,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:55:54,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:55:56,008 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:55:56,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:55:57,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:55:58,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:55:59,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.77ms
2019-09-26 13:56:00,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:56:01,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:56:02,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:56:03,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:56:04,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:56:06,274 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:56:07,001 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:56:07,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.80ms
2019-09-26 13:56:08,971 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:56:09,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:56:10,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:56:11,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.08ms
2019-09-26 13:56:12,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:56:13,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:56:14,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:56:15,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.48ms
2019-09-26 13:56:16,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:56:18,005 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:56:18,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:56:19,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:56:28,400 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:56:29,404 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:56:30,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:56:31,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:56:32,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:56:33,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.36ms
2019-09-26 13:56:34,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.74ms
2019-09-26 13:56:35,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.13ms
2019-09-26 13:56:36,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:56:37,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:56:38,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:56:39,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:56:40,407 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:56:41,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:56:42,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:56:43,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.77ms
2019-09-26 13:56:44,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:56:45,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:56:46,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:56:47,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:56:59,121 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:56:59,609 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.10ms
2019-09-26 13:57:00,604 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.77ms
2019-09-26 13:57:01,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:57:02,599 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:57:03,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.68ms
2019-09-26 13:57:04,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:57:05,606 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:57:06,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.60ms
2019-09-26 13:57:07,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.61ms
2019-09-26 13:57:08,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:57:09,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:57:10,629 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:57:11,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:57:12,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:57:13,598 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:57:14,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.92ms
2019-09-26 13:57:23,356 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:57:24,004 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.42ms
2019-09-26 13:57:24,993 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.16ms
2019-09-26 13:57:25,357 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:57:25,385 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:57:25,388 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:57:25,989 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.86ms
2019-09-26 13:57:26,398 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:26,405 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:57:26,418 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:26,422 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:57:26,431 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:31,757 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:39,145 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:58:50,210 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:59:38,517 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:59:48,363 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:00:08,191 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:00:24,112 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 14:00:24,119 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 14:00:24,122 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 14:00:24,127 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:00:24,133 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 14:00:26,283 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 14:00:28,610 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 14:01:00,505 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:04:49,404 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 14:04:49,407 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:04:49,409 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 14:04:49,411 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 14:04:49,417 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 14:04:52,661 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:04:52,662 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 14:04:54,785 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M113 S2*96
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok
| Send: N2 M108*40
| Send: N3 M84*28
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 14:04:54,899 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 14:12:42,997 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:17:06,908 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:17:06,909 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:17:06,909 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:17:07,305 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 13:17:07,305 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 13:17:07,354 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:17:08,341 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:17:08,444 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 13:17:08,468 - octoprint.server - INFO - Intermediary server started
2019-09-26 13:17:08,468 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:17:08,532 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:17:08,550 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 13:17:08,799 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 13:17:08,821 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 13:17:09,488 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:17:10,034 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 13:17:10,036 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:17:10,036 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:17:10,039 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 13:17:10,045 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 13:17:10,057 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 13:17:10,065 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 13:17:10,079 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 13:17:10,466 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 13:17:10,470 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 13:17:10,472 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 13:17:10,472 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 13:17:10,474 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 13:17:10,476 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 13:17:10,478 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 13:17:10,479 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 13:17:10,488 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 13:17:10,495 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 13:17:10,516 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 13:17:10,542 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,552 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60f90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60f90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,553 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74b30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74b30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,566 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb31bc570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb31bc570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,571 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,577 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,582 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74950>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74950>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:11,091 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:17:11,092 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:17:11,092 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:17:11,159 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 13:17:16,313 - octoprint.server.preemptive_cache - INFO - ... done in 5.15s
2019-09-26 13:17:16,314 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 13:17:18,627 - octoprint.server.preemptive_cache - INFO - ... done in 2.31s
2019-09-26 13:17:33,945 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:32:00,600 - tornado.access - WARNING - 404 DELETE /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.45ms
2019-09-26 13:32:08,446 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:47:08,447 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:50:23,672 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:23,725 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:23,830 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:50:24,420 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:50:24,450 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:25,097 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:50:25,102 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.43ms
2019-09-26 13:50:25,144 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:51:38,613 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-09-26 14:02:08,450 - octoprint.server.heartbeat - INFO - Server heartbeat <3
|
ConnectionError
|
def _getFileList(
origin, path=None, filter=None, recursive=False, allow_from_cache=True
):
if origin == FileDestinations.SDCARD:
sdFileList = printer.get_sd_files()
files = []
if sdFileList is not None:
for sdFile, sdSize in sdFileList:
type_path = octoprint.filemanager.get_file_type(sdFile)
if not type_path:
# only supported extensions
continue
else:
file_type = type_path[0]
file = {
"type": file_type,
"typePath": type_path,
"name": sdFile,
"display": sdFile,
"path": sdFile,
"origin": FileDestinations.SDCARD,
"refs": {
"resource": url_for(
".readGcodeFile",
target=FileDestinations.SDCARD,
filename=sdFile,
_external=True,
)
},
}
if sdSize is not None:
file.update({"size": sdSize})
files.append(file)
else:
filter_func = None
if filter:
filter_func = (
lambda entry, entry_data: octoprint.filemanager.valid_file_type(
entry, type=filter
)
)
with _file_cache_mutex:
cache_key = "{}:{}:{}:{}".format(origin, path, recursive, filter)
files, lastmodified = _file_cache.get(cache_key, ([], None))
# recursive needs to be True for lastmodified queries so we get lastmodified of whole subtree - #3422
if (
not allow_from_cache
or lastmodified is None
or lastmodified
< fileManager.last_modified(origin, path=path, recursive=True)
):
files = list(
fileManager.list_files(
origin, path=path, filter=filter_func, recursive=recursive
)[origin].values()
)
lastmodified = fileManager.last_modified(
origin, path=path, recursive=True
)
_file_cache[cache_key] = (files, lastmodified)
def analyse_recursively(files, path=None):
if path is None:
path = ""
result = []
for file_or_folder in files:
# make a shallow copy in order to not accidentally modify the cached data
file_or_folder = dict(file_or_folder)
file_or_folder["origin"] = FileDestinations.LOCAL
if file_or_folder["type"] == "folder":
if "children" in file_or_folder:
file_or_folder["children"] = analyse_recursively(
file_or_folder["children"].values(),
path + file_or_folder["name"] + "/",
)
file_or_folder["refs"] = dict(
resource=url_for(
".readGcodeFile",
target=FileDestinations.LOCAL,
filename=path + file_or_folder["name"],
_external=True,
)
)
else:
if (
"analysis" in file_or_folder
and octoprint.filemanager.valid_file_type(
file_or_folder["name"], type="gcode"
)
):
file_or_folder["gcodeAnalysis"] = file_or_folder["analysis"]
del file_or_folder["analysis"]
if (
"history" in file_or_folder
and octoprint.filemanager.valid_file_type(
file_or_folder["name"], type="gcode"
)
):
# convert print log
history = file_or_folder["history"]
del file_or_folder["history"]
success = 0
failure = 0
last = None
for entry in history:
success += (
1 if "success" in entry and entry["success"] else 0
)
failure += (
1 if "success" in entry and not entry["success"] else 0
)
if not last or (
"timestamp" in entry
and "timestamp" in last
and entry["timestamp"] > last["timestamp"]
):
last = entry
if last:
prints = dict(
success=success,
failure=failure,
last=dict(
success=last["success"], date=last["timestamp"]
),
)
if "printTime" in last:
prints["last"]["printTime"] = last["printTime"]
file_or_folder["prints"] = prints
file_or_folder["refs"] = dict(
resource=url_for(
".readGcodeFile",
target=FileDestinations.LOCAL,
filename=file_or_folder["path"],
_external=True,
),
download=url_for("index", _external=True)
+ "downloads/files/"
+ FileDestinations.LOCAL
+ "/"
+ file_or_folder["path"],
)
result.append(file_or_folder)
return result
files = analyse_recursively(files)
return files
|
def _getFileList(
origin, path=None, filter=None, recursive=False, allow_from_cache=True
):
if origin == FileDestinations.SDCARD:
sdFileList = printer.get_sd_files()
files = []
if sdFileList is not None:
for sdFile, sdSize in sdFileList:
type_path = octoprint.filemanager.get_file_type(sdFile)
if not type_path:
# only supported extensions
continue
else:
file_type = type_path[0]
file = {
"type": file_type,
"typePath": type_path,
"name": sdFile,
"display": sdFile,
"path": sdFile,
"origin": FileDestinations.SDCARD,
"refs": {
"resource": url_for(
".readGcodeFile",
target=FileDestinations.SDCARD,
filename=sdFile,
_external=True,
)
},
}
if sdSize is not None:
file.update({"size": sdSize})
files.append(file)
else:
filter_func = None
if filter:
filter_func = (
lambda entry, entry_data: octoprint.filemanager.valid_file_type(
entry, type=filter
)
)
with _file_cache_mutex:
cache_key = "{}:{}:{}:{}".format(origin, path, recursive, filter)
files, lastmodified = _file_cache.get(cache_key, ([], None))
if (
not allow_from_cache
or lastmodified is None
or lastmodified
< fileManager.last_modified(origin, path=path, recursive=recursive)
):
files = list(
fileManager.list_files(
origin, path=path, filter=filter_func, recursive=recursive
)[origin].values()
)
lastmodified = fileManager.last_modified(
origin, path=path, recursive=recursive
)
_file_cache[cache_key] = (files, lastmodified)
def analyse_recursively(files, path=None):
if path is None:
path = ""
result = []
for file_or_folder in files:
# make a shallow copy in order to not accidentally modify the cached data
file_or_folder = dict(file_or_folder)
file_or_folder["origin"] = FileDestinations.LOCAL
if file_or_folder["type"] == "folder":
if "children" in file_or_folder:
file_or_folder["children"] = analyse_recursively(
file_or_folder["children"].values(),
path + file_or_folder["name"] + "/",
)
file_or_folder["refs"] = dict(
resource=url_for(
".readGcodeFile",
target=FileDestinations.LOCAL,
filename=path + file_or_folder["name"],
_external=True,
)
)
else:
if (
"analysis" in file_or_folder
and octoprint.filemanager.valid_file_type(
file_or_folder["name"], type="gcode"
)
):
file_or_folder["gcodeAnalysis"] = file_or_folder["analysis"]
del file_or_folder["analysis"]
if (
"history" in file_or_folder
and octoprint.filemanager.valid_file_type(
file_or_folder["name"], type="gcode"
)
):
# convert print log
history = file_or_folder["history"]
del file_or_folder["history"]
success = 0
failure = 0
last = None
for entry in history:
success += (
1 if "success" in entry and entry["success"] else 0
)
failure += (
1 if "success" in entry and not entry["success"] else 0
)
if not last or (
"timestamp" in entry
and "timestamp" in last
and entry["timestamp"] > last["timestamp"]
):
last = entry
if last:
prints = dict(
success=success,
failure=failure,
last=dict(
success=last["success"], date=last["timestamp"]
),
)
if "printTime" in last:
prints["last"]["printTime"] = last["printTime"]
file_or_folder["prints"] = prints
file_or_folder["refs"] = dict(
resource=url_for(
".readGcodeFile",
target=FileDestinations.LOCAL,
filename=file_or_folder["path"],
_external=True,
),
download=url_for("index", _external=True)
+ "downloads/files/"
+ FileDestinations.LOCAL
+ "/"
+ file_or_folder["path"],
)
result.append(file_or_folder)
return result
files = analyse_recursively(files)
return files
|
https://github.com/OctoPrint/OctoPrint/issues/3422
|
2019-09-26 01:24:44,258 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:24:44,259 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:24:44,260 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:24:44,325 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:24:45,286 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:24:45,367 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:24:45,406 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:24:45,406 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:24:45,469 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:24:45,470 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-09-26 01:24:45,525 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:24:45,526 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:24:46,225 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:24:46,779 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:24:46,780 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:24:46,781 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:24:46,784 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:24:46,844 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:24:46,860 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:24:46,868 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:24:46,871 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:24:47,414 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:24:47,451 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:24:47,453 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:24:47,454 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:24:47,456 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:24:47,457 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:24:47,459 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:24:47,459 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:24:47,468 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:24:47,475 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:24:47,478 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-09-26 01:24:47,502 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:24:48,106 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:24:48,108 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:24:48,108 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:24:57,563 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:24:57,563 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20716d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20716d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:24:58,131 - octoprint.plugins.softwareupdate - WARNING - Could not check octoprint for updates due to a network error
2019-09-26 01:24:58,138 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-09-26 01:25:07,594 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c65b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c65b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:07,599 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:17,622 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16c6a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:27,644 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071ed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2071ed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:25:37,667 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16edef0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16edef0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:02,074 - octoprint.server - INFO - Shutting down...
2019-09-26 01:26:02,477 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:26:02,479 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:26:02,483 - octoprint.server - INFO - Goodbye!
2019-09-26 01:26:15,421 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:26:15,422 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:26:15,423 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:26:15,903 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:26:16,883 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:26:16,977 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:26:17,001 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:26:17,002 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:26:17,067 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:26:17,085 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:26:17,086 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:26:17,108 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:26:17,791 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:26:18,348 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:26:18,349 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:26:18,349 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:26:18,352 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:26:18,358 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:26:18,370 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:26:18,377 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:26:18,378 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:26:18,803 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:26:19,006 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:26:19,007 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:26:19,009 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:26:19,010 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:26:19,011 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:26:19,012 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:26:19,013 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:26:19,023 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:26:19,079 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:26:19,099 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:26:19,133 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5110>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5110>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,136 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d5d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,147 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f49d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f49d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,153 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16bfdf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16bfdf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,159 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4770>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4770>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,165 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f45d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f45d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,171 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4130>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f4130>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:26:19,761 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:26:19,762 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:26:19,762 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:30:07,782 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=de', 'path': u'/', '_count': 1, '_timestamp': 1569457807.782871, 'base_url': u'http://169.254.230.48/'}
2019-09-26 01:30:13,485 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:169.254.230.50
2019-09-26 01:30:30,261 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:169.254.230.50
2019-09-26 01:30:40,434 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc310>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc310>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:30:50,457 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc450>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xacefc450>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:00,480 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb39b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb39b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:10,502 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xad1051d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xad1051d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:20,527 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb3b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaceb3b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:31:20,564 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:31:20,578 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:169.254.230.50) 26.57ms
2019-09-26 01:31:20,920 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:169.254.230.50
2019-09-26 01:32:01,210 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:169.254.230.50
2019-09-26 01:38:22,458 - octoprint.server - INFO - Shutting down...
2019-09-26 01:38:23,190 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:38:23,193 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:38:23,206 - octoprint.server - INFO - Goodbye!
2019-09-26 01:38:38,791 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:38,792 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:38:38,792 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,184 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:38:39,185 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:38:39,233 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,227 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,332 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:38:40,355 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:38:40,355 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,419 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,437 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:38:40,438 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:38:40,462 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:38:41,139 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:41,683 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:38:41,685 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:41,685 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:41,688 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:38:41,693 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:38:41,705 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:38:41,713 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:38:41,726 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:38:42,167 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:38:42,359 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:38:42,361 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:38:42,362 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:38:42,363 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:38:42,365 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:38:42,366 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:38:42,367 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:38:42,376 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:38:42,383 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:38:42,402 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:38:42,430 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe5ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe5ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,432 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe59f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fe59f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,442 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f83750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f83750>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,443 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff14f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff14f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,451 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff1810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1ff1810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,463 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb332bf90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb332bf90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,469 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb297bf30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb297bf30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:43,049 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:43,050 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:43,050 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:43,137 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:38:48,352 - octoprint.server.preemptive_cache - INFO - ... done in 5.21s
2019-09-26 01:39:28,915 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:39:32,798 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:38:39,206 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,207 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:38:39,208 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:38:39,605 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:38:39,606 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:38:39,719 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,711 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,818 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:38:40,841 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:38:40,842 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:38:40,906 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:38:40,924 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:38:40,925 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:38:40,949 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:38:41,645 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:42,201 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:38:42,202 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:42,203 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:42,206 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:38:42,213 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:38:42,226 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:38:42,232 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:38:42,243 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:38:42,713 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:38:42,852 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:38:42,853 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:38:42,854 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:38:42,855 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:38:42,858 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:38:42,858 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:38:42,861 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:38:42,869 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:38:42,876 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:38:42,896 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:38:42,926 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,931 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,938 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f62c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,939 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f705d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f705d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,945 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15cae70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15cae70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,953 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15caa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15caa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:42,961 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f70670>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f70670>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:38:43,499 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:38:43,500 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:38:43,500 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:38:43,560 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:38:48,856 - octoprint.server.preemptive_cache - INFO - ... done in 5.30s
2019-09-26 01:48:03,465 - octoprint.server - INFO - Shutting down...
2019-09-26 01:48:03,978 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 01:48:03,980 - octoprint.events - INFO - Event loop shut down
2019-09-26 01:48:03,994 - octoprint.server - INFO - Goodbye!
2019-09-26 01:48:10,353 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,355 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:10,356 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,751 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,752 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,826 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,856 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,962 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,985 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,986 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:12,049 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:12,067 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:12,069 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:12,093 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,841 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:13,394 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:13,396 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:13,396 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:13,399 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:13,404 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:13,416 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:13,424 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:13,436 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,959 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,991 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,993 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,994 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,995 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,997 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,997 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,999 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:14,007 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:14,014 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:14,034 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:14,064 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,065 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,073 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,082 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1850>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1850>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,088 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1a70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,093 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa1d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,099 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb2bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,630 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,631 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,632 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,709 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:19,958 - octoprint.server.preemptive_cache - INFO - ... done in 5.25s
2019-09-26 01:48:57,992 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:49:05,427 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:48:09,968 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:09,970 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:09,972 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,358 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,359 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,406 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,380 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,488 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,512 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,512 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,579 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,598 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:11,599 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:11,624 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,343 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:12,893 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:12,894 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:12,894 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:12,898 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:12,903 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:12,915 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:12,920 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:12,932 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,366 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,515 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,516 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,517 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,519 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,521 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,522 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,523 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:13,531 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:13,539 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:13,558 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:13,586 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5bf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5bf0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,587 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,600 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168c710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168c710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,609 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1b70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1b70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,614 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bed0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,619 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f1c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,625 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5590>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e5590>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,155 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,156 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,156 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,220 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:19,574 - octoprint.server.preemptive_cache - INFO - ... done in 5.35s
2019-09-26 01:48:33,702 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:39,904 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:39,958 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:39,975 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=de', 'path': u'/', '_count': 1, '_timestamp': 1569458919.975235, 'base_url': u'http://10.55.100.109/'}
2019-09-26 01:48:42,263 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:48:42,980 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:43,102 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:49:13,822 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2190>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2190>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:49:43,912 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bfd0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bfd0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:50:13,981 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab6f44f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab6f44f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:50:44,067 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bf10>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb207bf10>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:51:14,134 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2db0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xad2d2db0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 01:51:14,155 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:51:14,167 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 19.84ms
2019-09-26 01:51:14,276 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:51:14,400 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:51:14,405 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 01:51:16,009 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:51:16,079 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:51:18,401 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:51:18,409 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 16.69ms
2019-09-26 01:51:18,453 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:48:10,031 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,033 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 01:48:10,035 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 01:48:10,423 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 01:48:10,423 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 01:48:10,471 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,443 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,546 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 01:48:11,569 - octoprint.server - INFO - Intermediary server started
2019-09-26 01:48:11,570 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 01:48:11,633 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 01:48:11,651 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 01:48:11,652 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 01:48:11,675 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 01:48:12,370 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:12,922 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 01:48:12,924 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:12,924 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:12,927 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 01:48:12,932 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 01:48:12,944 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 01:48:12,949 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 01:48:12,961 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 01:48:13,399 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 01:48:13,572 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 01:48:13,574 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 01:48:13,574 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 01:48:13,576 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 01:48:13,578 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 01:48:13,579 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 01:48:13,581 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 01:48:13,589 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 01:48:13,595 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 01:48:13,614 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 01:48:13,643 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,645 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4ff0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,660 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e46b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e46b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,662 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4410>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4410>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,674 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,680 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4c70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4c70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:13,686 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4e30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e4e30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 01:48:14,262 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 01:48:14,263 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 01:48:14,263 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 01:48:14,328 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 01:48:19,589 - octoprint.server.preemptive_cache - INFO - ... done in 5.26s
2019-09-26 01:48:19,589 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 01:48:21,823 - octoprint.server.preemptive_cache - INFO - ... done in 2.23s
2019-09-26 01:48:43,244 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:43,619 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 01:48:43,649 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 01:48:44,296 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 01:48:44,300 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.62ms
2019-09-26 01:48:44,341 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 01:48:53,579 - tornado.access - WARNING - 400 POST /api/plugin/appkeys (::ffff:10.55.102.11) 16.72ms
2019-09-26 02:03:11,548 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:04:37,449 - tornado.access - WARNING - 400 GET /api/files (::ffff:10.55.102.11) 7.42ms
2019-09-26 02:18:11,551 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:33:11,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:37:44,801 - tornado.access - WARNING - 404 GET /api/files/?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 7.78ms
2019-09-26 02:37:49,736 - tornado.access - WARNING - 404 GET /api/files/root?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.97ms
2019-09-26 02:44:14,198 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 16.91ms
2019-09-26 02:44:19,390 - tornado.access - WARNING - 404 GET /api/files/?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.29ms
2019-09-26 02:48:11,555 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 02:50:27,056 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 02:50:27,058 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 02:50:50,036 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.98s
2019-09-26 02:50:51,041 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test/griff.gcode
2019-09-26 02:50:51,042 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test/griff.gcode
2019-09-26 02:51:13,960 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test/griff.gcode finished, needed 22.92s
2019-09-26 02:51:14,967 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/Test4/Test5/griff.gcode
2019-09-26 02:51:14,969 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/Test4/Test5/griff.gcode
2019-09-26 02:51:37,923 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/Test4/Test5/griff.gcode finished, needed 22.96s
2019-09-26 02:51:38,928 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/Test4/griff.gcode
2019-09-26 02:51:38,932 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/Test4/griff.gcode
2019-09-26 02:52:01,316 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/Test4/griff.gcode finished, needed 22.39s
2019-09-26 02:52:02,322 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 02:52:02,323 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 02:52:24,875 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.55s
2019-09-26 02:53:59,858 - octoprint - ERROR - Exception on /api/files/local/Test4/Test234 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 02:53:59,862 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 19.89ms
2019-09-26 02:54:03,374 - tornado.access - WARNING - 404 GET /api/files/local/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.15ms
2019-09-26 03:03:11,556 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:18:11,558 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:28:36,205 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 03:28:36,397 - octoprint.server - INFO - Shutting down...
2019-09-26 03:28:37,136 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 03:28:37,141 - octoprint.events - INFO - Event loop shut down
2019-09-26 03:28:37,155 - octoprint.server - INFO - Goodbye!
2019-09-26 03:28:38,260 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:28:38,262 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 03:28:38,262 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:06,990 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:06,991 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 03:17:06,994 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 03:17:07,382 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 03:17:07,382 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 03:17:07,430 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 03:17:08,404 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 03:17:08,507 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 03:17:08,530 - octoprint.server - INFO - Intermediary server started
2019-09-26 03:17:08,531 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 03:17:08,594 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 03:17:08,612 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 03:17:08,873 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 03:17:08,896 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 03:17:09,559 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 03:17:10,109 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 03:17:10,110 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 03:17:10,111 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 03:17:10,114 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 03:17:10,119 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 03:17:10,131 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 03:17:10,136 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 03:17:10,148 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 03:17:10,533 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 03:17:11,034 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 03:17:11,038 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 03:17:11,039 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 03:17:11,042 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 03:17:11,049 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 03:17:11,053 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 03:17:11,061 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 03:17:11,073 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 03:17:11,090 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 03:17:11,143 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 03:17:11,201 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb3265570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb3265570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,218 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f5570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f5570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,238 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a630>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a630>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,246 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a8b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168a8b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,250 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168af10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb168af10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,258 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16ddd90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16ddd90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,264 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa610>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa610>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 03:17:11,819 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 03:17:11,820 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 03:17:11,821 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 03:17:11,890 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 03:17:17,252 - octoprint.server.preemptive_cache - INFO - ... done in 5.36s
2019-09-26 03:17:17,252 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 03:17:19,268 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 03:17:19,402 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:19,642 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 03:17:19,908 - octoprint.server.preemptive_cache - INFO - ... done in 2.66s
2019-09-26 03:17:54,309 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:54,394 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 03:17:54,925 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 03:17:54,954 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 03:17:55,590 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 03:17:55,594 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.22ms
2019-09-26 03:17:55,636 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 03:20:08,256 - tornado.access - WARNING - 404 GET /api/files/local/test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.47ms
2019-09-26 03:32:08,509 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:47:08,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 03:56:49,908 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:49,912 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.97ms
2019-09-26 03:56:50,649 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:50,653 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.80ms
2019-09-26 03:56:51,097 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:56:51,100 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.22ms
2019-09-26 03:58:38,979 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:38,983 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.49ms
2019-09-26 03:58:39,778 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:39,782 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.89ms
2019-09-26 03:58:40,517 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:40,521 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.66ms
2019-09-26 03:58:42,306 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,310 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.31ms
2019-09-26 03:58:42,675 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,678 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.83ms
2019-09-26 03:58:42,967 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:42,971 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.26ms
2019-09-26 03:58:46,713 - octoprint - ERROR - Exception on /api/files/local/Test4/Test5 [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 475, in readGcodeFile
file = _getFileDetails(target, filename, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 137, in _getFileDetails
files = _getFileList(origin, path=parent, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/files.py", line 183, in _getFileList
files = fileManager.list_files(origin, path=path, filter=filter_func, recursive=recursive)[origin].values()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 471, in list_files
result[dst] = self._storage_managers[dst].list_files(path=path, filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 606, in list_files
return self._list_folder(path, base=base, entry_filter=filter, recursive=recursive)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/filemanager/storage.py", line 1292, in _list_folder
for entry in scandir(path):
OSError: [Errno 2] No such file or directory: u'/home/pi/.octoprint/uploads/Test4'
2019-09-26 03:58:46,717 - tornado.access - ERROR - 500 GET /api/files/local/Test4/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.49ms
2019-09-26 04:02:08,513 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:17:08,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:32:08,516 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 04:47:08,519 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:02:08,521 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:17:08,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:32:08,527 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:47:08,530 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 05:50:31,194 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 05:50:31,226 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2019-09-26 06:02:08,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:17:08,534 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:32:08,537 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 06:47:08,541 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:02:08,544 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:17:08,547 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:32:08,549 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 07:47:08,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:00:31,985 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 08:00:32,074 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 08:00:35,450 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 08:00:35,578 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 08:00:37,973 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 08:00:37,983 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.94ms
2019-09-26 08:01:08,230 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab14a4d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab14a4d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:01:38,305 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb16dd6f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb16dd6f0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:02:08,366 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa5b0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb20fa5b0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:02:08,556 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:02:38,436 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1a8490>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1a8490>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:03:08,495 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1506d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab1506d0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 08:03:08,600 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 08:17:08,557 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:21:03,956 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 08:17:06,882 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 08:17:06,884 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 08:17:06,884 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 08:17:07,275 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 08:17:07,275 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 08:17:07,323 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 08:17:08,295 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 08:17:08,398 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 08:17:08,421 - octoprint.server - INFO - Intermediary server started
2019-09-26 08:17:08,422 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 08:17:08,484 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 08:17:08,502 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 08:17:08,764 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 08:17:08,787 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 08:17:09,451 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 08:17:10,001 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 08:17:10,002 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 08:17:10,003 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 08:17:10,006 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 08:17:10,011 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 08:17:10,023 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 08:17:10,028 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 08:17:10,040 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 08:17:10,424 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 08:17:10,926 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 08:17:10,929 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 08:17:10,930 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 08:17:10,934 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 08:17:10,941 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 08:17:10,946 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 08:17:10,947 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 08:17:10,965 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 08:17:10,982 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 08:17:11,026 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 08:17:11,061 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0c50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,074 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5c10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,075 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb5a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,085 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4fcd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4fcd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,087 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4f530>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4f530>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,094 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0810>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,102 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa0b10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 08:17:11,664 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 08:17:11,665 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 08:17:11,666 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 08:17:11,730 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 08:17:17,115 - octoprint.server.preemptive_cache - INFO - ... done in 5.39s
2019-09-26 08:17:17,115 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 08:17:19,526 - octoprint.server.preemptive_cache - INFO - ... done in 2.41s
2019-09-26 08:32:08,400 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 08:47:08,402 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:02:08,405 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:17:08,406 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:31:37,863 - tornado.access - WARNING - 404 GET /api/files/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.92ms
2019-09-26 09:32:08,409 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:47:08,410 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 09:54:14,631 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.39ms
2019-09-26 09:54:15,179 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.51ms
2019-09-26 09:54:15,824 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.84ms
2019-09-26 09:54:16,632 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.65ms
2019-09-26 09:54:20,507 - tornado.access - WARNING - 404 GET /api/files/Test234?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.25ms
2019-09-26 10:02:08,412 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:17:08,415 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:25:36,500 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:25:40,277 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:40,327 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:40,443 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 10:25:41,883 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:25:41,943 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:25:42,547 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 10:25:42,552 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.81ms
2019-09-26 10:25:42,649 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 10:30:06,994 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:30:07,098 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 10:30:07,506 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 10:30:07,535 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 10:30:09,138 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 10:30:09,143 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.51ms
2019-09-26 10:30:09,180 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 10:32:08,416 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 10:47:08,417 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:02:08,419 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:17:08,421 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:32:08,422 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:47:08,423 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 11:57:00,981 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 11:57:00,986 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 11:57:24,216 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 23.24s
2019-09-26 12:02:08,425 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:17:08,426 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:32:08,429 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:33:54,246 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.66ms
2019-09-26 12:34:23,167 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.34ms
2019-09-26 12:34:54,944 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.20ms
2019-09-26 12:35:19,987 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.07ms
2019-09-26 12:37:10,829 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.39ms
2019-09-26 12:38:06,973 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.70ms
2019-09-26 12:38:15,039 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.14ms
2019-09-26 12:40:01,905 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:01,999 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:40:02,355 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:40:02,386 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:02,961 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:40:02,965 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.88ms
2019-09-26 12:40:03,003 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:40:51,762 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.68ms
2019-09-26 12:40:58,917 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.14ms
2019-09-26 12:40:59,559 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.28ms
2019-09-26 12:41:00,039 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.35ms
2019-09-26 12:41:39,524 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:39,617 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:41:39,980 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:41:40,013 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:40,603 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:41:40,612 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.13ms
2019-09-26 12:41:40,670 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:07,003 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,005 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,005 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,396 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,397 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,445 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,417 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,520 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,543 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,544 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,607 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,625 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,890 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,913 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,577 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,128 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,129 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,130 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,133 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,139 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,150 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,156 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,167 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,551 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:11,047 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:11,050 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:11,051 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,055 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,059 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,065 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,075 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,087 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,104 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,148 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,204 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6a710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6a710>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,227 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6afd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f6afd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,233 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,254 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15e08d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb15e08d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,257 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7bb70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,272 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5d0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,288 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f7b5b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,807 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,809 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,809 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,873 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,125 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:16,746 - tornado.access - WARNING - 404 GET /static/webassets/packed_client.js?68a8d0b0 (::ffff:10.55.102.11) 7.37ms
2019-09-26 12:17:16,750 - tornado.access - WARNING - 404 GET /static/webassets/packed_core.js?b00f909b (::ffff:10.55.102.11) 2.21ms
2019-09-26 12:17:17,129 - tornado.access - WARNING - 404 GET /static/webassets/packed_core.js?b00f909b (::ffff:10.55.102.11) 1.54ms
2019-09-26 12:17:17,404 - octoprint.server.preemptive_cache - INFO - ... done in 5.53s
2019-09-26 12:17:17,405 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,639 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,766 - octoprint.server.preemptive_cache - INFO - ... done in 2.36s
2019-09-26 12:17:20,468 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:20,533 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:21,105 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:21,109 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.66ms
2019-09-26 12:17:21,182 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:21,223 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:21,230 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:17:21,469 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:21,497 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:22,028 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:22,038 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 18.70ms
2019-09-26 12:17:22,080 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:51,314 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:51,316 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:17:54,153 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:54,214 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:17:54,476 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:54,508 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:55,304 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:55,309 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.27ms
2019-09-26 12:17:55,345 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:18:14,178 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.86s
2019-09-26 12:32:08,522 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:47:08,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:51:57,126 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:51:57,127 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:52:09,029 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:52:09,031 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:52:31,278 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.25s
2019-09-26 12:54:01,314 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:54:01,317 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:54:24,075 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.76s
2019-09-26 12:57:37,949 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 16.06ms
2019-09-26 12:57:47,821 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.59ms
2019-09-26 12:58:16,846 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:58:16,943 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:58:17,332 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:58:17,363 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:58:17,944 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:58:17,948 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.13ms
2019-09-26 12:58:17,990 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:02:08,526 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:02:14,025 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.05ms
2019-09-26 13:02:14,570 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.60ms
2019-09-26 13:02:16,920 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:02:17,099 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:02:17,264 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:02:17,454 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.88ms
2019-09-26 13:02:17,631 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.29ms
2019-09-26 13:02:17,806 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:02:17,980 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.64ms
2019-09-26 13:02:18,376 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.24ms
2019-09-26 13:02:18,395 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:02:18,490 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.40ms
2019-09-26 13:02:21,040 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:04:23,960 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 13.39ms
2019-09-26 13:04:25,509 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:04:29,153 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:06:11,345 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test4?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:06:29,025 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 13:06:29,197 - octoprint.server - INFO - Shutting down...
2019-09-26 13:06:29,734 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 13:06:29,736 - octoprint.events - INFO - Event loop shut down
2019-09-26 13:06:29,742 - octoprint.server - INFO - Goodbye!
2019-09-26 13:06:30,850 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:06:30,851 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:06:30,852 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,077 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,078 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,081 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,527 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,528 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,575 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,549 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,658 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,681 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,681 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,745 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,763 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:09,013 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:09,036 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,699 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,249 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,250 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,251 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,254 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,260 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,271 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,277 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,671 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,684 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,685 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,686 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:10,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:10,690 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:10,691 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:10,695 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:10,700 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:10,707 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:10,728 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:10,756 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206ba70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206ba70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,762 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20760b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb20760b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,769 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2076230>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2076230>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,775 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d11f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d11f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,779 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d12b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16d12b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,788 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206bd30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb206bd30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,793 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2046f30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2046f30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,302 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,304 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,389 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,858 - octoprint.server.preemptive_cache - INFO - ... done in 5.47s
2019-09-26 12:17:16,859 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,162 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 12:17:30,604 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:30,732 - tornado.access - WARNING - 404 GET /favicon.ico (::ffff:10.55.102.11) 7.29ms
2019-09-26 12:17:31,139 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:31,169 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:31,849 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:31,855 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.23ms
2019-09-26 12:17:31,897 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:18:56,317 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:18:56,328 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:19:18,939 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.62s
2019-09-26 12:17:06,952 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:06,953 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:06,955 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,342 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,342 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,390 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,361 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,465 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,488 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,488 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,557 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,575 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,835 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,857 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,522 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,072 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,073 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,073 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,077 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,082 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,094 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,099 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,110 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,503 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,992 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,995 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,999 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,002 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,008 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,011 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,020 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,031 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,046 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,096 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,153 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3fd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,158 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,186 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1692730>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1692730>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,197 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,202 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,204 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16e3d90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,210 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb16f8bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,755 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,756 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,757 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,823 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:17,077 - octoprint.server.preemptive_cache - INFO - ... done in 5.25s
2019-09-26 12:17:17,077 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:18,175 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,522 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:19,624 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:19,986 - octoprint.server.preemptive_cache - INFO - ... done in 2.91s
2019-09-26 12:17:20,315 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:20,319 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.64ms
2019-09-26 12:17:20,374 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:29,426 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:29,427 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:17:40,269 - octoprint.filemanager.analysis - INFO - Starting analysis of local:griff.gcode
2019-09-26 12:17:40,273 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/griff.gcode
2019-09-26 12:18:02,727 - octoprint.filemanager.analysis - INFO - Analysis of entry local:griff.gcode finished, needed 22.46s
2019-09-26 12:18:03,733 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Test234/griff.gcode
2019-09-26 12:18:03,735 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Test234/griff.gcode
2019-09-26 12:18:26,302 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Test234/griff.gcode finished, needed 22.57s
2019-09-26 12:21:42,588 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-09-26 12:21:42,763 - octoprint.server - INFO - Shutting down...
2019-09-26 12:21:43,124 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 12:21:43,127 - octoprint.events - INFO - Event loop shut down
2019-09-26 12:21:43,132 - octoprint.server - INFO - Goodbye!
2019-09-26 12:21:44,301 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:21:44,302 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:21:44,303 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:23:07,734 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:23:07,736 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:23:07,736 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,008 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,009 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,009 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,398 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,399 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,447 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,423 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,529 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,552 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,553 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,617 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,895 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,918 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,584 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,132 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,133 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,134 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,137 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,142 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,154 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,159 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,171 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,577 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:11,065 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:11,067 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:11,068 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:11,069 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:11,071 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:11,073 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:11,078 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:11,082 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:11,089 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:11,113 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:11,142 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb42f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb42f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,148 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2e70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2e70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,155 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a190>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a190>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,156 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4a150>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,164 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4ac90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4ac90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,172 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa50>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,178 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f4aa90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,720 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,721 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,721 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,792 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:17,239 - octoprint.server.preemptive_cache - INFO - ... done in 5.45s
2019-09-26 12:17:17,239 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:19,602 - octoprint.server.preemptive_cache - INFO - ... done in 2.36s
2019-09-26 12:17:22,763 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:23,492 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:23,524 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:24,128 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:17:24,133 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.44ms
2019-09-26 12:17:24,198 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:26,998 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:17:27,003 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:17:28,016 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:17:28,023 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:17:28,040 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:17:28,070 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:17:28,075 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:17:28,077 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:17:28,082 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:19:01,938 - tornado.access - WARNING - 404 GET /api/files/local/Test5?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 17.66ms
2019-09-26 12:20:47,310 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.05ms
2019-09-26 12:20:47,871 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.42ms
2019-09-26 12:20:52,582 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.11ms
2019-09-26 12:25:12,163 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.74ms
2019-09-26 12:28:30,999 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.48ms
2019-09-26 12:28:31,637 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 14.27ms
2019-09-26 12:28:32,086 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 11.71ms
2019-09-26 12:32:08,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:36:20,816 - tornado.access - WARNING - 404 DELETE /api/files/local/Test234/Test?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.09ms
2019-09-26 12:41:07,494 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:07,610 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:41:07,634 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:41:07,658 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:41:07,661 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:41:08,070 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:41:08,156 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.76ms
2019-09-26 12:41:08,675 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:08,682 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:41:08,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:08,731 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:41:08,737 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:41:08,741 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:41:08,746 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:41:15,605 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.71ms
2019-09-26 12:41:34,715 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.81ms
2019-09-26 12:41:45,893 - tornado.access - WARNING - 404 GET /api/files/local/Test234/Test (::ffff:10.55.102.11) 5.71ms
2019-09-26 12:42:42,014 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:42:42,114 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:42:42,118 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:42:42,156 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:42:42,159 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:42:42,289 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:42:42,601 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.67ms
2019-09-26 12:42:43,174 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:43,181 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:42:43,193 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:43,233 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:42:43,239 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:42:43,243 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:42:43,247 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:47:08,532 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:48:13,209 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:48:13,308 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:48:13,309 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:48:13,357 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:48:13,359 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:48:13,365 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:48:13,543 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.23ms
2019-09-26 12:48:14,373 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:14,383 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:48:14,393 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:14,435 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:48:14,443 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:48:14,447 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:48:14,452 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:48:42,917 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:48:43,023 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:48:43,024 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:48:43,123 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:48:43,129 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:48:43,366 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:48:43,683 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.79ms
2019-09-26 12:48:44,140 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:44,150 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:48:44,167 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:48:44,212 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:48:44,219 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:48:44,223 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:48:44,228 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:50:17,929 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:50:18,151 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:50:18,152 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:50:18,154 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:50:18,196 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:50:18,199 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:50:18,995 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.55ms
2019-09-26 12:50:19,214 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:50:19,222 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:50:19,235 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:50:19,288 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:50:19,297 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:50:19,301 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:50:19,308 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 12:54:18,776 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:18,903 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:18,907 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down read loop
2019-09-26 12:54:18,994 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 12:54:18,998 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:19,254 - octoprint.plugins.virtual_printer.VirtualPrinter - INFO - Closing down buffer loop
2019-09-26 12:54:19,624 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.48ms
2019-09-26 12:54:20,013 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:20,023 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:20,034 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:20,093 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2019-09-26 12:54:20,145 - octoprint.util.comm - INFO - Firmware states that it supports emergency GCODEs to be sent without waiting for an acknowledgement first
2019-09-26 12:54:20,178 - octoprint.util.comm - INFO - Firmware states that it supports sd status autoreporting
2019-09-26 12:54:20,203 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-09-26 13:02:08,534 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:17:07,029 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,031 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 12:17:07,031 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 12:17:07,429 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 12:17:07,430 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 12:17:07,478 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,452 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,556 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 12:17:08,579 - octoprint.server - INFO - Intermediary server started
2019-09-26 12:17:08,580 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 12:17:08,643 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 12:17:08,661 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 12:17:08,905 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 12:17:08,928 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 12:17:09,591 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:10,143 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 12:17:10,144 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:10,145 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:10,148 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 12:17:10,153 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 12:17:10,165 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 12:17:10,172 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 12:17:10,185 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 12:17:10,571 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 12:17:10,582 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 12:17:10,583 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 12:17:10,584 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 12:17:10,586 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 12:17:10,588 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 12:17:10,590 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 12:17:10,591 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 12:17:10,599 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 12:17:10,606 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 12:17:10,625 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 12:17:10,654 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2a30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fa2a30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,660 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,665 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6f70>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,673 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53a90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,682 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6030>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,689 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6bd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6bd0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:10,690 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1fb6c30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 12:17:11,226 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 12:17:11,227 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 12:17:11,228 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 12:17:11,294 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 12:17:16,694 - octoprint.server.preemptive_cache - INFO - ... done in 5.40s
2019-09-26 12:17:16,694 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 12:17:18,991 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 12:17:20,450 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 12:17:20,475 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.43ms
2019-09-26 12:17:20,512 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:20,538 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:20,558 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:20,583 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:17:20,614 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:17:20,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.11ms
2019-09-26 12:17:20,654 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.76ms
2019-09-26 12:17:34,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 12:17:34,272 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:17:34,323 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:17:34,339 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.55ms
2019-09-26 12:17:34,355 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:17:34,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:17:34,376 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:17:34,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.88ms
2019-09-26 12:17:34,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.41ms
2019-09-26 12:17:34,427 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.67ms
2019-09-26 12:17:34,441 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 12:17:34,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.31ms
2019-09-26 12:17:34,469 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:17:34,483 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:34,496 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.02ms
2019-09-26 12:17:34,510 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:17:34,524 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.92ms
2019-09-26 12:17:34,537 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:34,551 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,565 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:17:34,579 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 12:17:34,593 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 12:17:34,607 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:17:34,622 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.95ms
2019-09-26 12:17:34,651 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.72ms
2019-09-26 12:17:34,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:17:34,679 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.21ms
2019-09-26 12:17:34,693 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.44ms
2019-09-26 12:17:34,707 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.02ms
2019-09-26 12:17:34,740 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.59ms
2019-09-26 12:17:34,754 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.60ms
2019-09-26 12:17:34,769 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.55ms
2019-09-26 12:17:34,782 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:17:34,796 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:17:34,814 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:17:34,828 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.54ms
2019-09-26 12:17:34,898 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 60.64ms
2019-09-26 12:17:34,912 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:17:35,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.53ms
2019-09-26 12:17:36,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:17:37,249 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 12:17:38,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:39,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:17:40,248 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:17:41,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:17:42,265 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:17:43,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 12:17:44,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:17:45,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:17:46,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:47,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 12:17:48,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:17:49,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:17:50,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:17:51,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:17:52,248 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:17:53,270 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 12:17:54,255 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 12:17:55,255 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 12:17:56,252 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 12:17:57,236 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.52ms
2019-09-26 12:17:58,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:17:59,239 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:18:00,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 12:18:01,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 12:18:02,245 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:18:03,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:18:04,265 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:18:05,240 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 12:18:06,241 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 12:18:07,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:18:08,242 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:09,239 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:10,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 12:18:10,657 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 12:18:11,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 12:18:12,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 12:18:13,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:18:14,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:18:15,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 12:18:16,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:18:17,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:19:01,158 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:19:01,288 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:19:01,322 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:19:01,324 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:19:01,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 12:19:02,331 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:02,335 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:19:02,341 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:02,342 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:19:03,664 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:19:03,664 - octoprint.util.comm - WARNING - Printer requested line 1 but no sufficient history is available, can't resend. Printer requested line 1, current line is 0, line history has 0 entries.
2019-09-26 12:19:03,667 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 1
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: tmc2130_init(), mode=NORMAL
| Recv: tmc2130_set_wave 0 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 1 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD card ok
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Printer requested line 1 but no sufficient history is available, can't resend
| Send: N0 M110 N0*125
2019-09-26 12:19:04,570 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:26:31,758 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:26:41,910 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:26:41,978 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:26:42,084 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:26:42,100 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:26:42,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:26:42,146 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:26:42,160 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 12:26:42,173 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,187 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.42ms
2019-09-26 12:26:42,217 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.41ms
2019-09-26 12:26:42,245 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.56ms
2019-09-26 12:26:42,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.46ms
2019-09-26 12:26:42,329 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:26:42,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.51ms
2019-09-26 12:26:43,112 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:43,118 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:26:43,130 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:43,132 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:26:43,153 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:26:45,038 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:28:18,139 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.15ms
2019-09-26 12:28:25,210 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.75ms
2019-09-26 12:28:38,173 - tornado.access - WARNING - 400 POST /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 12.70ms
2019-09-26 12:28:51,499 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:28:51,517 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:28:51,523 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:06,545 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 12:29:06,551 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:06,555 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Cancelling"
2019-09-26 12:29:06,559 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 12:29:06,573 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 12:29:09,860 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:09,864 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:29:11,969 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Printing"
2019-09-26 12:29:11,986 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: Unknown M code: $1 M108
| Changing monitoring state from "Cancelling" to "Printing"
| Recv: ok
| Send: N2 M105*37
| Send: N3 M84*28
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:29:12,034 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2019-09-26 12:29:24,621 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:24,635 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:29:24,642 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:29:24,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:29:24,662 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:30:29,604 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 12:30:29,610 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:30:29,617 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 12:30:29,623 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 12:30:29,633 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 12:30:32,873 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:30:32,875 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:30:34,991 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M84*29
| Recv: Unknown M code: $1 M108
| Recv: ok
| Send: N3 M104 T0 S0*34
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:30:35,040 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 12:32:08,558 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:34:24,371 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:34:24,489 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:34:24,562 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:34:24,613 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:34:24,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:34:25,048 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 12:34:25,630 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:25,635 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:34:25,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:25,650 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:34:25,659 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:30,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:56,478 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:34:56,607 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:34:56,674 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:34:56,708 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:34:56,716 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:34:57,034 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.45ms
2019-09-26 12:34:57,727 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:57,734 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:34:57,746 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:34:57,751 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:34:57,755 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:35:03,088 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:34,599 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:36:34,766 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:36:34,837 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:36:34,853 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:36:34,855 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:36:35,501 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:36:35,868 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:35,872 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:36:35,883 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:35,885 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:36:35,893 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:39,131 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:36:39,132 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:36:45,882 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M105*38
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok T:58.3 /0.0 B:33.1 /0.0 T0:58.3 /0.0 @:0 B@:0 P:30.9 A:33.5
| Send: N2 M105*37
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:37:44,290 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:37:44,421 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:37:44,500 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:37:44,569 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:37:44,593 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:37:44,962 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:37:45,617 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:45,622 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:37:45,634 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:45,637 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:37:45,645 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:37:50,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:18,099 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:39:18,201 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:39:18,232 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:39:18,266 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.79ms
2019-09-26 12:39:18,277 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:39:18,286 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:39:19,158 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:39:19,296 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:19,302 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:39:19,315 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:19,319 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:39:19,331 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:39:24,652 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:14,775 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:40:14,910 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:40:14,939 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:40:14,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.87ms
2019-09-26 12:40:14,988 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:40:14,991 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:40:15,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 12:40:16,006 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:16,013 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:40:16,026 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:40:16,027 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:21,360 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:40:21,363 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:03,460 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:41:03,597 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:41:03,671 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:41:03,693 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:41:03,695 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:41:03,902 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 12:41:04,710 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:04,730 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:41:04,745 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:04,749 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:41:04,763 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:41:06,435 - tornado.access - WARNING - 403 POST /api/files/local/griff.gcode (::ffff:10.55.102.11) 6.68ms
2019-09-26 12:41:10,067 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:14,598 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:42:14,744 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:42:14,773 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:42:14,799 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:42:14,808 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:42:15,465 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 12:42:15,821 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:15,827 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:42:15,854 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:15,859 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:42:15,866 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:17,241 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:42:17,254 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:42:17,260 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:42:21,175 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:21,177 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:42:21,181 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:42:23,343 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:42:50,163 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:43:00,314 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 12:43:00,391 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:43:00,512 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:43:00,527 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:43:00,547 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:43:00,561 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.05ms
2019-09-26 12:43:00,575 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:43:00,590 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.18ms
2019-09-26 12:43:00,603 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 12:43:00,616 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.55ms
2019-09-26 12:43:00,630 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:43:00,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.50ms
2019-09-26 12:43:00,677 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.61ms
2019-09-26 12:43:00,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.72ms
2019-09-26 12:43:00,720 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.11ms
2019-09-26 12:43:01,469 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.52ms
2019-09-26 12:43:01,534 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:01,537 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:43:01,542 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:43:01,543 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:06,892 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:43:06,894 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:27,531 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:27,631 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:46:27,662 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:46:27,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.43ms
2019-09-26 12:46:27,725 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:46:27,729 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:46:28,629 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.58ms
2019-09-26 12:46:28,738 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:28,744 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:46:28,754 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:28,758 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:46:28,763 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:34,094 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:46:53,377 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:53,440 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 12:46:53,812 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 12:46:53,852 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:46:54,441 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 12:46:54,445 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.11ms
2019-09-26 12:46:54,487 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 12:46:57,422 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:47:08,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 12:47:24,132 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:47:24,239 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:47:24,319 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:47:24,390 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Connection error, see Terminal tab"
2019-09-26 12:47:24,411 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: None SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2661 (hook default)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2661, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2650, in default
serial_obj.open()
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-09-26 12:47:24,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.64ms
2019-09-26 12:47:25,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 12:47:26,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 12:47:27,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 12:47:28,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 12:47:29,684 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 12:47:30,689 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:47:31,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 12:47:32,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 12:47:33,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 12:47:34,688 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 12:47:35,714 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 12:47:36,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 12:47:37,703 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 12:47:38,684 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 12:47:39,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 12:47:40,692 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 12:47:41,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 12:47:42,686 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 12:47:43,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:47:44,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 12:47:45,687 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 12:47:46,711 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 12:47:47,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 12:47:48,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:47:49,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 12:47:50,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 12:47:51,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 12:47:52,687 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 12:47:53,690 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 12:47:54,685 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 12:47:56,299 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 12:47:57,322 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:47:58,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 12:47:59,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:48:00,307 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 12:48:01,297 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 12:48:02,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.36ms
2019-09-26 12:48:03,316 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 12:48:04,301 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 12:48:05,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:48:06,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 12:48:07,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:08,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:48:09,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 12:48:10,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 12:48:11,288 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 12:48:12,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 12:48:13,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 12:48:14,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 12:48:15,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:48:16,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 12:48:17,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 12:48:18,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 12:48:19,564 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:20,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 12:48:21,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 12:48:22,300 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.60ms
2019-09-26 12:48:23,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 12:48:24,289 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 12:48:25,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 12:48:26,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 12:48:27,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 12:48:28,296 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 12:48:29,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:30,320 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 12:48:31,293 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 12:48:32,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 12:48:33,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:48:34,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 12:48:35,300 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 12:48:36,313 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 12:48:37,311 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 12:48:38,315 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 12:48:39,307 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:48:40,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 12:48:41,329 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 12:48:42,295 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:43,291 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 12:48:44,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 12:48:45,314 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 12:48:46,292 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 12:48:47,298 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 12:48:48,306 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 12:48:49,294 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 12:48:50,302 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 12:48:51,290 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 12:48:52,318 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 12:48:52,693 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.48ms
2019-09-26 12:49:01,666 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:49:01,775 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:49:01,798 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:49:01,801 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:49:02,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 12:49:02,810 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:02,817 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:49:02,830 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:02,832 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:49:02,840 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:06,074 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:49:06,076 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:49:12,828 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 2 0
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Send: N0 M110 N0*125
| Recv: Resend: 1
| Recv: ok
| Send: N1 M105*38
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok T:209.5 /0.0 B:63.6 /0.0 T0:209.5 /0.0 @:0 B@:0 P:32.4 A:36.7
| Send: N2 M105*37
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 12:51:32,306 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:51:32,421 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:51:32,494 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:51:32,535 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:51:32,546 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:51:32,751 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.06ms
2019-09-26 12:51:33,557 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:33,564 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:51:33,577 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:51:33,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:38,914 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:51:38,916 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:41,085 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:53:41,155 - tornado.access - WARNING - 403 GET /api/connection (::ffff:10.55.102.11) 11.78ms
2019-09-26 12:53:41,220 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:53:41,252 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:53:41,274 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:53:41,276 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:53:41,604 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.56ms
2019-09-26 12:53:42,286 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:42,292 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:53:42,305 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:42,308 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:53:45,552 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:53:45,555 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 12:53:45,559 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:22,067 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:22,257 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:22,285 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:54:22,314 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:54:22,321 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:22,474 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 12:54:23,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:23,339 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:23,351 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:23,353 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:54:23,360 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:28,685 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:52,988 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:54:53,190 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:54:53,218 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:54:53,248 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:54:53,251 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:54:53,936 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 12:54:54,265 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:54,269 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:54:54,282 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:54,283 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:54:54,305 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:54:59,616 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:55:26,742 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:55:26,749 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 12:55:26,751 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 12:55:26,754 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:55:26,760 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 12:55:29,090 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 12:55:35,710 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 12:56:41,837 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:56:42,040 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 12:56:42,075 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:56:42,103 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:56:42,105 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:56:42,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 12:56:43,116 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:43,123 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:56:43,135 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:43,136 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:56:43,142 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:56:48,476 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:03,219 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 12:59:03,430 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 12:59:03,459 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 12:59:03,490 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 12:59:03,491 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 12:59:03,998 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.59ms
2019-09-26 12:59:04,504 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:04,506 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 12:59:04,520 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:04,524 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 12:59:04,530 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 12:59:09,863 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:02:08,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:03:38,553 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.25
2019-09-26 13:04:15,371 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:04:15,580 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:04:15,608 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:04:15,621 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.58ms
2019-09-26 13:04:15,644 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:04:15,647 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:04:16,526 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:04:16,656 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:16,663 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:04:16,678 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:16,680 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:04:16,688 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:19,922 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:19,923 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:04:25,998 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:04:26,004 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:04:26,007 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:04:26,011 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:04:26,017 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:04:28,117 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:04:29,667 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:06:21,358 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:06:27,186 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Offline"
2019-09-26 13:06:27,270 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:06:27,288 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,304 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.44ms
2019-09-26 13:06:27,321 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,336 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.93ms
2019-09-26 13:06:27,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.90ms
2019-09-26 13:06:27,375 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:06:27,378 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:06:27,547 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.08ms
2019-09-26 13:06:28,388 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:28,393 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:06:28,406 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:28,409 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:06:28,428 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:06:33,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:08:22,950 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:08:24,241 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:08:24,247 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:08:24,260 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:08:24,270 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:08:26,505 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:08:28,587 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:08:36,806 - tornado.access - WARNING - 403 GET /api/settings (::ffff:10.55.102.11) 5.86ms
2019-09-26 13:08:36,840 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:08:37,025 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:08:41,583 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:41,608 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:41,666 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:08:42,037 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:08:42,070 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:08:42,645 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:08:42,649 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 8.28ms
2019-09-26 13:08:42,692 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:08:54,567 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Pausing"
2019-09-26 13:09:04,577 - octoprint.printer.standard.job - INFO - Print job paused - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:09:21,277 - octoprint.util.comm - INFO - Changing monitoring state from "Pausing" to "Paused"
2019-09-26 13:12:25,490 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart
2019-09-26 13:12:25,692 - octoprint.server - INFO - Shutting down...
2019-09-26 13:12:26,527 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-09-26 13:12:26,532 - octoprint.events - INFO - Event loop shut down
2019-09-26 13:12:26,547 - octoprint.server - INFO - Goodbye!
2019-09-26 13:12:27,687 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:12:27,688 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:12:27,688 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2019-09-26 13:12:27,689 - octoprint.startup - INFO - Reason for safe mode: setting in config.yaml
2019-09-26 13:12:27,689 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:14:37,667 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 13:14:37,669 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 13:14:37,730 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:14:38,422 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:14:38,511 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 13:14:38,524 - octoprint.server - INFO - Intermediary server started
2019-09-26 13:14:38,524 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:14:38,588 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:14:38,603 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 13:14:38,858 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 13:14:38,878 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 13:14:39,435 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:14:39,990 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 13:14:39,992 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:14:39,992 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:14:39,995 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 13:14:40,001 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 13:14:40,010 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 13:14:40,016 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 13:14:40,029 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 13:14:40,387 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 13:14:40,880 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 13:14:40,882 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 13:14:40,883 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 13:14:40,884 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 13:14:40,886 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 13:14:40,889 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 13:14:40,890 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 13:14:40,897 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 13:14:40,903 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 13:14:40,913 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-09-26 13:14:40,925 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 13:14:40,925 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2019-09-26 13:14:41,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:14:41,601 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:14:41,602 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:14:41,603 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:14:41,671 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 13:14:42,345 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.80ms
2019-09-26 13:14:43,347 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.92ms
2019-09-26 13:14:44,579 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 50.33ms
2019-09-26 13:14:45,435 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 28.34ms
2019-09-26 13:14:46,344 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.87ms
2019-09-26 13:14:46,579 - octoprint.server.preemptive_cache - INFO - ... done in 4.91s
2019-09-26 13:14:46,580 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 13:14:47,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 8.44ms
2019-09-26 13:14:48,349 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 6.19ms
2019-09-26 13:14:48,881 - octoprint.server.preemptive_cache - INFO - ... done in 2.30s
2019-09-26 13:14:49,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.49ms
2019-09-26 13:14:50,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:14:51,346 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:14:52,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:14:53,349 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:14:54,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:14:55,348 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:14:56,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:14:57,348 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:14:58,347 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.56ms
2019-09-26 13:14:59,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:15:00,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:15:01,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:15:02,346 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:15:03,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:15:04,316 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:04,427 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.61ms
2019-09-26 13:15:05,049 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:15:05,083 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:05,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 13:15:05,737 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:15:05,741 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 7.98ms
2019-09-26 13:15:05,775 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:15:06,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:15:07,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:15:08,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.88ms
2019-09-26 13:15:09,344 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.55ms
2019-09-26 13:15:10,343 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:15:11,018 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53c90>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f53c90>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:11,033 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb3195af0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xb3195af0>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:11,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:15:12,340 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:15:13,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.22ms
2019-09-26 13:15:14,319 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:15:14,420 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:15:14,429 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:15:14,548 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.94ms
2019-09-26 13:15:15,343 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.90ms
2019-09-26 13:15:15,442 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:15,451 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:15:15,464 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:15,468 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:15:15,473 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:20,803 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:15:41,088 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaae7d690>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaae7d690>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:41,090 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaaec8650>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaaec8650>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:15:54,481 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:15:59,682 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:16:00,336 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 13:16:01,078 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.56ms
2019-09-26 13:16:01,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:16:02,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.91ms
2019-09-26 13:16:03,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.55ms
2019-09-26 13:16:05,001 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:16:05,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:16:06,964 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.56ms
2019-09-26 13:16:07,961 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:16:08,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.08ms
2019-09-26 13:16:09,967 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.79ms
2019-09-26 13:16:10,144 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.25
2019-09-26 13:16:10,963 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:16:11,160 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadf2b10>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadf2b10>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:16:11,965 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.67ms
2019-09-26 13:16:12,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.02ms
2019-09-26 13:16:13,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.89ms
2019-09-26 13:16:14,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.87ms
2019-09-26 13:16:15,996 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:16:16,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.69ms
2019-09-26 13:16:17,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.35ms
2019-09-26 13:16:18,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.78ms
2019-09-26 13:16:19,970 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.87ms
2019-09-26 13:16:20,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.66ms
2019-09-26 13:16:21,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.73ms
2019-09-26 13:16:22,970 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.34ms
2019-09-26 13:16:23,968 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:16:24,964 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.45ms
2019-09-26 13:16:25,966 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:16:27,009 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:16:27,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:16:28,960 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 13:16:29,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.14ms
2019-09-26 13:16:30,983 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:16:31,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:16:32,968 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.87ms
2019-09-26 13:16:33,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.48ms
2019-09-26 13:16:34,983 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:16:35,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.37ms
2019-09-26 13:16:41,210 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab0e27d0>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xab0e27d0>, 'Connection to plugins.octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:16:46,865 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:16:46,961 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.90ms
2019-09-26 13:16:47,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.82ms
2019-09-26 13:16:48,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:16:49,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:16:50,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:16:51,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:16:52,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.58ms
2019-09-26 13:16:53,856 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:16:54,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:16:55,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:16:56,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:16:57,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.95ms
2019-09-26 13:16:58,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:16:59,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:17:00,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.62ms
2019-09-26 13:17:01,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:17:02,876 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:17:03,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.27ms
2019-09-26 13:17:04,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:17:05,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:17:06,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.02ms
2019-09-26 13:17:07,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:17:08,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.96ms
2019-09-26 13:17:09,866 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:17:10,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:17:11,279 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadd4470>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 504, in send
raise ConnectTimeout(e, request=request)
ConnectTimeout: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by ConnectTimeoutError(<urllib3.connection.VerifiedHTTPSConnection object at 0xaadd4470>, 'Connection to octoprint.org timed out. (connect timeout=30)'))
2019-09-26 13:17:11,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:17:12,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:17:13,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:17:14,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:17:15,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:17:16,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:17:17,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:17:18,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:17:19,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:17:20,884 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:17:21,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.74ms
2019-09-26 13:17:22,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.89ms
2019-09-26 13:17:23,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:17:24,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:17:25,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.19ms
2019-09-26 13:17:26,879 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.88ms
2019-09-26 13:17:27,882 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:17:28,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:17:29,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:17:30,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:17:31,877 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:17:32,857 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:17:33,881 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.43ms
2019-09-26 13:17:34,860 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:17:35,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:17:36,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.02ms
2019-09-26 13:17:37,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:17:38,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:17:39,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.19ms
2019-09-26 13:17:40,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:17:41,898 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:17:42,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:17:43,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 13:17:44,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:17:45,864 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:17:46,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:17:47,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:17:48,862 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:17:49,877 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:17:50,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:17:51,880 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:17:52,900 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:17:53,874 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:17:54,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:17:55,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:17:56,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:17:57,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:17:58,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:17:59,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:18:00,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:18:01,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:18:02,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.92ms
2019-09-26 13:18:03,901 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:18:04,871 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:18:05,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:18:06,873 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:18:07,865 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:18:08,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:18:09,872 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:18:10,858 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:18:11,875 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:18:12,861 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:18:13,859 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:18:14,947 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:18:15,863 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:18:16,870 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:18:25,864 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:18:25,954 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:18:26,244 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.78ms
2019-09-26 13:18:27,238 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:18:28,231 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:18:29,235 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:18:30,243 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:31,230 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:18:32,321 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:18:33,237 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:18:34,234 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:18:35,232 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:18:36,262 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.52ms
2019-09-26 13:18:44,960 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:18:45,003 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:18:45,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:18:46,657 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.49ms
2019-09-26 13:18:47,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:18:48,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:18:49,640 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:18:50,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:51,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:18:52,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:53,631 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:54,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:18:55,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:18:56,643 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:18:57,660 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:18:58,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:18:59,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.83ms
2019-09-26 13:19:00,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:19:01,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:19:02,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:19:03,640 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:19:04,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:19:05,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:19:06,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:19:07,649 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:19:08,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.55ms
2019-09-26 13:19:09,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:19:10,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.97ms
2019-09-26 13:19:11,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:19:12,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:13,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:19:14,634 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:15,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:19:16,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.82ms
2019-09-26 13:19:17,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:19:18,646 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:19:19,660 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:19:20,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:19:21,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.19ms
2019-09-26 13:19:22,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:19:23,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:19:24,636 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.17ms
2019-09-26 13:19:25,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:19:26,632 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:19:27,642 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.23ms
2019-09-26 13:19:28,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:19:29,644 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:19:30,661 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:19:31,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:19:32,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.28ms
2019-09-26 13:19:33,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:19:34,645 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:19:35,637 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.25ms
2019-09-26 13:19:36,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:19:37,639 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:19:38,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.21ms
2019-09-26 13:19:39,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:19:40,638 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:19:41,672 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:19:42,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:19:43,643 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.75ms
2019-09-26 13:19:44,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:19:45,633 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:19:46,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.99ms
2019-09-26 13:19:47,635 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.93ms
2019-09-26 13:19:48,641 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 13:19:50,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 17.32ms
2019-09-26 13:19:50,571 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 13:19:50,574 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-09-26 13:19:50,577 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:50,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:51,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:19:51,581 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:52,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.10ms
2019-09-26 13:19:53,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:19:54,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:19:54,845 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:19:54,850 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-09-26 13:19:54,858 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:56,690 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:19:56,966 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.3.1 based on Marlin"
2019-09-26 13:19:56,974 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Recv: ok
| Changing monitoring state from "Connecting" to "Operational"
| Send: N0 M110 N0*125
| Send: N1 M115*39
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M21*18
| Recv: FIRMWARE_NAME:Prusa-Firmware 3.3.1 based on Marlin FIRMWARE_URL:https://github.com/prusa3d/Prusa-Firmware PROTOCOL_VERSION:1.0 MACHINE_TYPE:Prusa i3 MK3 EXTRUDER_COUNT:1 UUID:00000000-0000-0000-0000-000000000000
| Recv: ok
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:19:57,902 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:19:57,908 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:19:57,919 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:19:59,120 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:20:01,303 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:20:08,861 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 13:21:12,929 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-09-26 13:21:29,418 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Pausing"
2019-09-26 13:21:30,924 - octoprint.util.comm - INFO - Changing monitoring state from "Pausing" to "Cancelling"
2019-09-26 13:21:30,927 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 13:21:30,932 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:21:40,963 - octoprint.printer.standard.job - INFO - Print job paused - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:21:55,717 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 13:21:58,588 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:21:59,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:22:00,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:22:01,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:22:02,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:03,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:04,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:22:05,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:22:06,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:07,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:08,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.99ms
2019-09-26 13:22:09,416 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:10,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:22:11,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:22:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:22:13,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:22:14,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:22:15,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:22:16,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:17,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:22:18,351 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:22:19,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:20,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:22:21,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:22:22,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:22:23,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:23,437 - tornado.access - WARNING - 405 POST /api/printer?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 9.17ms
2019-09-26 13:22:24,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:25,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:22:26,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 13:22:27,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:28,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:22:29,353 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:22:30,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:22:30,611 - tornado.access - WARNING - 409 GET /api/printer?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 8.70ms
2019-09-26 13:22:31,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:32,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:22:33,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:22:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:22:35,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:22:36,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:22:37,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.91ms
2019-09-26 13:22:38,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:22:39,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:22:40,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:41,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:22:42,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:22:43,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:22:44,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:22:45,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:22:46,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:22:47,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:22:48,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:22:49,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:22:50,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:22:51,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:22:52,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:22:53,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:22:54,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:22:55,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:22:56,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:22:57,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:22:58,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:22:59,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:00,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:23:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.31ms
2019-09-26 13:23:02,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:23:03,352 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:23:04,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:23:05,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:23:06,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:23:07,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:23:08,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:23:09,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:23:10,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:23:11,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:23:12,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:23:13,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:23:14,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:23:15,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:23:16,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:23:17,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:23:18,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:23:19,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:23:20,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:23:21,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:23:22,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:23:23,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:23:24,354 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:23:25,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:23:26,422 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:23:27,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:28,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:23:29,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:23:30,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:31,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:23:32,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:23:33,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:23:34,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:23:35,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:23:36,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:23:37,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:23:38,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:23:39,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:23:40,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:23:41,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:23:42,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:23:43,398 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:23:44,444 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:45,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:23:46,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:23:47,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:23:48,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:23:49,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:23:50,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:23:51,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:23:52,355 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:23:53,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:23:54,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:23:55,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:23:56,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:23:57,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:23:58,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:23:59,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.60ms
2019-09-26 13:24:00,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:24:01,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:24:02,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:24:03,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:24:04,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.18ms
2019-09-26 13:24:05,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:24:06,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:24:07,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:24:08,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:24:09,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:24:10,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:24:11,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:24:12,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:24:13,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:24:14,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.51ms
2019-09-26 13:24:15,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:24:16,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:24:17,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:24:18,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:24:19,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:24:20,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.67ms
2019-09-26 13:24:21,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:24:22,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.16ms
2019-09-26 13:24:23,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:24:24,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:24:25,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:24:26,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:24:27,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:24:28,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:24:29,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:24:30,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:24:31,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:24:32,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:24:33,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:24:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:24:35,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:24:36,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:24:37,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:24:38,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:24:39,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:24:40,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:24:41,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.98ms
2019-09-26 13:24:42,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:24:43,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:24:44,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:45,356 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:24:46,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:24:47,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:48,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:49,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:24:50,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:24:51,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:24:52,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:53,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:24:54,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:24:55,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:24:56,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:24:57,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:24:58,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:24:59,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:25:00,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:01,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:03,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:04,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:25:05,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:25:06,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:25:07,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:25:08,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:25:09,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:25:10,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:11,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:25:12,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:13,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:25:14,357 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:25:15,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:16,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:25:17,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:25:18,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:25:19,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:25:20,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:21,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:22,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:25:23,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:25:24,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:25,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:25:26,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:25:27,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:25:28,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:29,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:25:30,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:25:31,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:25:32,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 13:25:33,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:25:34,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:25:35,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:25:36,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:25:37,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:25:38,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:25:39,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:40,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:25:41,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:25:42,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:25:43,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:44,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:25:45,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:25:46,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:47,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:25:48,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:25:49,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:25:50,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:25:51,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:25:52,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:25:53,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:25:54,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:25:55,500 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:25:56,358 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:25:57,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:25:58,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:25:59,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:26:00,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:26:01,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:26:02,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:26:03,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:26:04,359 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:26:05,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:26:06,405 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.57ms
2019-09-26 13:26:07,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:26:08,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.90ms
2019-09-26 13:26:09,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:26:10,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:26:11,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:26:12,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:26:13,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:26:14,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:26:15,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:26:16,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:26:17,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:26:18,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:26:19,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:26:20,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:26:21,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:26:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:26:23,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:26:24,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:25,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.28ms
2019-09-26 13:26:26,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:27,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:26:28,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:26:29,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.62ms
2019-09-26 13:26:30,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.20ms
2019-09-26 13:26:31,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:26:32,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:26:33,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:26:34,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.59ms
2019-09-26 13:26:35,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:26:36,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:26:37,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:26:38,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:26:39,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:26:40,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.01ms
2019-09-26 13:26:41,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:26:42,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:26:43,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:44,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:26:45,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:26:46,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:26:47,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:26:48,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:26:49,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:26:50,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:26:51,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:26:52,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:26:53,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:26:54,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.52ms
2019-09-26 13:26:55,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:26:56,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:26:57,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:26:58,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:26:59,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:27:00,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:27:01,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:27:02,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:27:03,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:27:04,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:27:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:27:06,360 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:27:07,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:27:08,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:27:09,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:27:10,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:27:11,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:27:12,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:27:13,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:27:14,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:27:15,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:27:16,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:27:17,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:18,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:19,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:27:20,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:21,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:27:22,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:27:23,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:27:24,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:27:25,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:26,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:27,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:28,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:29,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:27:30,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:27:31,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:27:32,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:27:33,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:27:34,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:27:35,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:27:36,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:27:37,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:27:38,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:27:39,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:27:40,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:41,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:27:42,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:27:43,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:27:44,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:27:45,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.76ms
2019-09-26 13:27:46,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:27:47,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:27:48,361 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:27:49,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:50,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:27:51,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.61ms
2019-09-26 13:27:52,364 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:27:53,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:27:54,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:27:55,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:27:56,393 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:27:57,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:58,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:27:59,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:28:00,362 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:28:01,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:28:02,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:28:03,363 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:28:04,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:28:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:28:06,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:28:07,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:28:08,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:28:09,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:28:10,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:28:11,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:28:12,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:28:13,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:28:14,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:28:15,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:28:16,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:28:17,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:28:18,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:28:19,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:28:20,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:28:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:28:22,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:28:23,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:28:24,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:25,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:28:26,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:28:27,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:28:28,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:28:29,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:28:30,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.51ms
2019-09-26 13:28:31,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:28:32,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:28:33,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:28:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:28:35,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:28:36,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:28:37,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:28:38,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:28:39,397 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:28:40,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:28:41,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.33ms
2019-09-26 13:28:42,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:28:43,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:44,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:28:45,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:28:46,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.33ms
2019-09-26 13:28:47,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.42ms
2019-09-26 13:28:48,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:28:49,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.00ms
2019-09-26 13:28:50,403 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.78ms
2019-09-26 13:28:51,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:28:52,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 14.17ms
2019-09-26 13:28:53,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.86ms
2019-09-26 13:28:54,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.93ms
2019-09-26 13:28:55,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:28:56,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:28:57,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.65ms
2019-09-26 13:28:58,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:28:59,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:29:00,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:29:01,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:29:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:29:03,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:29:04,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.04ms
2019-09-26 13:29:05,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:29:06,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.65ms
2019-09-26 13:29:07,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:29:08,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.25ms
2019-09-26 13:29:09,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:29:10,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:29:11,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:29:12,406 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:29:13,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:29:14,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:29:15,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:29:16,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:29:17,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:29:18,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:29:19,365 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:29:20,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:29:21,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:29:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.12ms
2019-09-26 13:29:23,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:29:24,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:29:25,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:29:26,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:29:27,387 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:29:28,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:29:29,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:29:30,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:29:31,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:29:32,425 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:29:33,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:29:34,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.07ms
2019-09-26 13:29:35,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:29:36,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:29:37,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.29ms
2019-09-26 13:29:38,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:29:38,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:29:39,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:29:40,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:29:41,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 19.29ms
2019-09-26 13:29:42,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:29:43,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.90ms
2019-09-26 13:29:44,366 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:29:45,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:29:46,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:29:47,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:29:48,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:29:49,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:29:50,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:29:51,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 15.99ms
2019-09-26 13:29:52,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:29:53,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:29:54,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.48ms
2019-09-26 13:29:55,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:29:56,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.57ms
2019-09-26 13:29:57,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:29:58,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:29:59,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:30:00,385 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:30:01,380 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:30:02,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.64ms
2019-09-26 13:30:03,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:30:04,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:30:05,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.04ms
2019-09-26 13:30:06,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:30:07,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:30:08,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:30:09,386 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:30:10,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:30:11,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.30ms
2019-09-26 13:30:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:30:13,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:30:14,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:30:15,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:30:16,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:30:17,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:30:18,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:30:19,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:30:20,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:30:21,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:30:22,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:23,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:30:24,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:25,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:30:26,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:30:27,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:28,388 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:30:29,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:30:30,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:30:31,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:30:32,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:30:33,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.97ms
2019-09-26 13:30:34,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:30:35,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:30:36,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:30:37,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.19ms
2019-09-26 13:30:38,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:30:39,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:30:40,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:41,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:30:42,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:30:43,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:30:44,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:30:45,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:30:46,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:30:47,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:30:48,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:30:49,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:30:50,368 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:30:51,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:30:51,645 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.47ms
2019-09-26 13:31:01,235 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:31:01,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:31:02,433 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.70ms
2019-09-26 13:31:03,452 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:31:04,433 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:31:06,122 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-09-26 13:31:06,125 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-09-26 13:31:06,135 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:06,137 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:06,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.57ms
2019-09-26 13:31:07,134 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:07,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:31:08,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:31:08,477 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:31:09,235 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:31:09,429 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:31:10,170 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:31:10,177 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-09-26 13:31:10,183 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:31:12,291 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.3.1 based on Marlin"
2019-09-26 13:31:12,301 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 3
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Recv: ok
| Changing monitoring state from "Connecting" to "Operational"
| Send: N0 M110 N0*125
| Send: N1 M115*39
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M21*18
| Recv: FIRMWARE_NAME:Prusa-Firmware 3.3.1 based on Marlin FIRMWARE_URL:https://github.com/prusa3d/Prusa-Firmware PROTOCOL_VERSION:1.0 MACHINE_TYPE:Prusa i3 MK3 EXTRUDER_COUNT:1 UUID:00000000-0000-0000-0000-000000000000
| Recv: ok
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:31:33,694 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.25
2019-09-26 13:31:38,562 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:11,515 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:31,581 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:32:59,678 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:33:28,410 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:34:15,909 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:34:15,914 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 13:34:15,916 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 13:34:15,921 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:15,928 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 13:34:18,181 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 13:34:45,600 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 13:34:45,606 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:45,611 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 13:34:45,617 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 13:34:45,631 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 13:34:48,881 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 13:34:48,882 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:34:50,987 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M108*43
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Send: N2 M84*29
| Recv: Unknown M code: $1 M108
| Recv: ok
| Send: N3 M104 T0 S0*34
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 13:34:51,020 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 13:41:10,138 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:16,179 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-09-26 13:41:16,389 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.07ms
2019-09-26 13:41:17,392 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:41:17,982 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.30ms
2019-09-26 13:41:26,810 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:27,138 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.56ms
2019-09-26 13:41:28,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:41:29,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:41:30,168 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.25ms
2019-09-26 13:41:31,131 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:41:32,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:41:33,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.94ms
2019-09-26 13:41:34,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:41:35,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:41:36,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:41:37,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:41:38,160 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.98ms
2019-09-26 13:41:39,140 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:41:40,133 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.04ms
2019-09-26 13:41:41,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.09ms
2019-09-26 13:41:42,131 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:41:43,136 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.45ms
2019-09-26 13:41:44,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.92ms
2019-09-26 13:41:45,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.98ms
2019-09-26 13:41:46,132 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:41:47,134 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.05ms
2019-09-26 13:41:56,342 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:41:57,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.09ms
2019-09-26 13:41:58,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:41:59,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:42:00,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:42:01,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:42:02,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.33ms
2019-09-26 13:42:03,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 13:42:04,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.06ms
2019-09-26 13:42:05,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:42:06,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:42:07,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:42:08,142 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:42:09,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.44ms
2019-09-26 13:42:10,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:42:11,121 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:42:12,122 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:42:13,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.86ms
2019-09-26 13:42:14,115 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:42:15,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:16,116 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:42:17,117 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.25ms
2019-09-26 13:42:18,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:42:19,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:42:20,119 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:42:21,120 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:22,124 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:42:23,118 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.77ms
2019-09-26 13:42:31,367 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:42:31,668 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.15ms
2019-09-26 13:42:32,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.60ms
2019-09-26 13:42:33,665 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:42:34,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:42:35,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.42ms
2019-09-26 13:42:36,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:42:37,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.47ms
2019-09-26 13:42:38,664 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:42:39,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:42:40,667 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.81ms
2019-09-26 13:42:41,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.73ms
2019-09-26 13:42:42,691 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.30ms
2019-09-26 13:42:43,663 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.80ms
2019-09-26 13:42:44,670 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:42:45,668 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:42:46,665 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:42:57,849 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:42:58,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.80ms
2019-09-26 13:42:59,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:43:00,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:43:02,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.50ms
2019-09-26 13:43:03,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:43:04,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:05,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.44ms
2019-09-26 13:43:06,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.67ms
2019-09-26 13:43:07,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:43:08,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.53ms
2019-09-26 13:43:09,396 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:10,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:43:11,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:12,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.84ms
2019-09-26 13:43:13,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:43:14,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:15,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:43:16,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:43:17,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:43:18,391 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:43:19,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.68ms
2019-09-26 13:43:20,401 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.90ms
2019-09-26 13:43:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:22,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:23,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:43:24,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:43:25,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:43:26,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:27,367 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:43:28,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:43:29,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:43:30,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:31,400 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.31ms
2019-09-26 13:43:32,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:43:33,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.91ms
2019-09-26 13:43:34,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:43:35,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:43:36,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:37,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:43:38,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:43:39,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:43:40,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.31ms
2019-09-26 13:43:41,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:43:42,399 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:43:43,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:43:44,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:43:45,390 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:43:46,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:43:47,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:43:48,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:43:49,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:43:50,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:43:51,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:43:52,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:43:53,398 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.02ms
2019-09-26 13:43:54,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.59ms
2019-09-26 13:43:55,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:43:56,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:43:57,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:43:58,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:43:59,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:44:00,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:44:01,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.83ms
2019-09-26 13:44:02,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:44:03,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.76ms
2019-09-26 13:44:04,395 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:44:05,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:44:06,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:44:07,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:44:08,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:44:09,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:44:10,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:44:11,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:44:12,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:44:13,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:44:14,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:44:15,394 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:44:16,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.08ms
2019-09-26 13:44:17,369 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:44:18,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.11ms
2019-09-26 13:44:19,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:44:20,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:44:21,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:44:22,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:44:23,371 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:44:24,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.75ms
2019-09-26 13:44:25,370 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:44:26,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:44:27,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:44:28,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:44:29,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:44:30,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.28ms
2019-09-26 13:44:31,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.20ms
2019-09-26 13:44:32,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.80ms
2019-09-26 13:44:33,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.75ms
2019-09-26 13:44:34,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.41ms
2019-09-26 13:44:35,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:44:36,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.68ms
2019-09-26 13:44:37,405 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.08ms
2019-09-26 13:44:38,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:44:38,516 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:44:39,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:44:40,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.41ms
2019-09-26 13:44:41,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 17.89ms
2019-09-26 13:44:42,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:44:43,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:44:44,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:44:45,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:44:46,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:44:47,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.57ms
2019-09-26 13:44:48,403 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:44:49,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:44:50,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:44:51,372 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.07ms
2019-09-26 13:44:52,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:44:53,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.96ms
2019-09-26 13:44:54,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.84ms
2019-09-26 13:44:55,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:44:56,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.03ms
2019-09-26 13:44:57,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.81ms
2019-09-26 13:44:58,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:44:59,402 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.98ms
2019-09-26 13:45:00,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.08ms
2019-09-26 13:45:01,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.57ms
2019-09-26 13:45:02,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:45:03,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.06ms
2019-09-26 13:45:04,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.90ms
2019-09-26 13:45:05,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:45:06,373 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:45:07,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.91ms
2019-09-26 13:45:08,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.66ms
2019-09-26 13:45:09,383 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.38ms
2019-09-26 13:45:10,407 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:45:11,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.49ms
2019-09-26 13:45:12,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:45:13,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.10ms
2019-09-26 13:45:14,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:45:15,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:45:16,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:47:41,632 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:47:41,943 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.43ms
2019-09-26 13:47:42,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:47:43,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:47:44,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:47:45,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:47:46,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:47:47,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:47:48,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:49,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:50,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:47:51,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:47:52,962 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:47:53,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:54,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:47:55,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:47:56,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:47:57,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:47:58,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.77ms
2019-09-26 13:47:59,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:48:00,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:48:01,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:48:02,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:03,957 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:48:04,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:48:05,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:48:06,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.06ms
2019-09-26 13:48:07,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:08,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:48:09,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:48:10,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.63ms
2019-09-26 13:48:11,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:12,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:48:13,941 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:48:14,969 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.31ms
2019-09-26 13:48:15,935 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:16,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:48:17,928 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.00ms
2019-09-26 13:48:18,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:19,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:20,927 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:48:21,934 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:48:22,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:23,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.88ms
2019-09-26 13:48:24,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:25,955 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:26,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:48:27,932 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:28,931 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:29,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:48:30,930 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:48:31,929 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:48:32,933 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:48:41,508 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:48:41,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.36ms
2019-09-26 13:48:42,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:48:43,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:44,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:48:45,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:48:46,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.79ms
2019-09-26 13:48:47,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:48:48,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:48:49,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:48:50,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:48:51,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:48:52,917 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:48:53,891 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:48:54,890 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.92ms
2019-09-26 13:48:55,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:48:56,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:48:57,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:58,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:48:59,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:49:00,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:01,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.85ms
2019-09-26 13:49:02,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.82ms
2019-09-26 13:49:03,917 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:04,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.29ms
2019-09-26 13:49:05,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:06,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:07,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:49:08,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:09,902 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:49:10,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:11,895 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:12,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:13,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:14,920 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.04ms
2019-09-26 13:49:15,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.93ms
2019-09-26 13:49:16,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:49:17,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:49:18,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:19,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:49:20,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:49:21,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:49:22,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:49:23,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:24,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:49:25,918 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.96ms
2019-09-26 13:49:26,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.03ms
2019-09-26 13:49:27,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:28,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:49:29,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:30,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:31,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:32,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:49:33,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:49:34,892 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:49:35,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.64ms
2019-09-26 13:49:36,919 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.53ms
2019-09-26 13:49:37,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.63ms
2019-09-26 13:49:38,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:49:39,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:49:40,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:49:41,903 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 16.91ms
2019-09-26 13:49:42,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.95ms
2019-09-26 13:49:43,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.96ms
2019-09-26 13:49:44,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:49:45,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:49:46,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:49:47,918 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:48,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:49:49,897 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:49:50,893 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:49:51,896 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:49:52,894 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:50:02,005 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:02,191 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.62ms
2019-09-26 13:50:03,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:50:04,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:50:05,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:50:06,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:07,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:08,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:09,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:10,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:11,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.78ms
2019-09-26 13:50:12,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:50:13,172 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:14,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.61ms
2019-09-26 13:50:15,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:16,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.71ms
2019-09-26 13:50:17,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:18,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:50:19,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:50:20,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.76ms
2019-09-26 13:50:21,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.87ms
2019-09-26 13:50:22,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.80ms
2019-09-26 13:50:23,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.84ms
2019-09-26 13:50:24,174 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.86ms
2019-09-26 13:50:25,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:50:26,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.66ms
2019-09-26 13:50:27,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.65ms
2019-09-26 13:50:28,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.75ms
2019-09-26 13:50:29,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:50:30,153 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.68ms
2019-09-26 13:50:31,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.67ms
2019-09-26 13:50:32,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.70ms
2019-09-26 13:50:33,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:50:34,149 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.74ms
2019-09-26 13:50:35,176 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.81ms
2019-09-26 13:50:36,151 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.45ms
2019-09-26 13:50:37,155 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:50:38,150 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.94ms
2019-09-26 13:50:39,154 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.69ms
2019-09-26 13:50:40,147 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.62ms
2019-09-26 13:50:41,148 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.72ms
2019-09-26 13:50:42,152 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:51:02,891 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:51:03,868 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.73ms
2019-09-26 13:51:04,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:51:05,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.21ms
2019-09-26 13:51:06,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.98ms
2019-09-26 13:51:07,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:51:08,846 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.12ms
2019-09-26 13:51:09,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:51:10,849 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:51:12,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:51:13,408 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 9.89ms
2019-09-26 13:51:14,432 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.60ms
2019-09-26 13:51:15,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:51:16,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:51:17,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:51:18,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.22ms
2019-09-26 13:51:19,409 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:51:20,412 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.64ms
2019-09-26 13:51:21,412 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.94ms
2019-09-26 13:51:22,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:51:23,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.99ms
2019-09-26 13:51:24,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.82ms
2019-09-26 13:51:25,439 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.30ms
2019-09-26 13:51:26,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.20ms
2019-09-26 13:51:27,417 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.70ms
2019-09-26 13:51:28,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.53ms
2019-09-26 13:51:29,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:51:30,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:51:31,413 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:51:32,411 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.23ms
2019-09-26 13:51:33,410 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:51:33,844 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.69ms
2019-09-26 13:51:41,549 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:51:42,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.26ms
2019-09-26 13:51:43,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.12ms
2019-09-26 13:51:44,461 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.10ms
2019-09-26 13:51:45,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:51:46,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:51:47,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:51:48,462 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:51:49,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.24ms
2019-09-26 13:51:50,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:51:51,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.47ms
2019-09-26 13:51:52,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:51:53,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.45ms
2019-09-26 13:51:54,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.14ms
2019-09-26 13:51:55,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.74ms
2019-09-26 13:51:56,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:51:57,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.11ms
2019-09-26 13:51:58,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:51:59,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.15ms
2019-09-26 13:52:00,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:52:01,467 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.43ms
2019-09-26 13:52:02,463 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.34ms
2019-09-26 13:52:03,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:52:04,483 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.93ms
2019-09-26 13:52:05,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:52:06,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:52:07,507 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:52:08,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:09,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:10,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.19ms
2019-09-26 13:52:11,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.34ms
2019-09-26 13:52:12,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:13,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:52:14,461 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:15,482 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:52:16,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.27ms
2019-09-26 13:52:17,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.13ms
2019-09-26 13:52:18,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:52:19,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:52:20,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:21,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:52:22,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:52:23,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:24,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:52:25,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:26,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.04ms
2019-09-26 13:52:27,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.82ms
2019-09-26 13:52:28,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:52:29,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:52:30,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.16ms
2019-09-26 13:52:31,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.18ms
2019-09-26 13:52:32,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.35ms
2019-09-26 13:52:33,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.47ms
2019-09-26 13:52:34,453 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:52:35,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:52:36,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:52:37,484 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.20ms
2019-09-26 13:52:38,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.27ms
2019-09-26 13:52:39,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:52:40,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:52:41,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.33ms
2019-09-26 13:52:42,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.07ms
2019-09-26 13:52:43,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:52:44,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.09ms
2019-09-26 13:52:45,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:52:46,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.35ms
2019-09-26 13:52:47,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.05ms
2019-09-26 13:52:48,485 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.17ms
2019-09-26 13:52:49,465 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.15ms
2019-09-26 13:52:50,458 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:51,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.83ms
2019-09-26 13:52:52,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:53,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.10ms
2019-09-26 13:52:54,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:52:55,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.40ms
2019-09-26 13:52:56,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.42ms
2019-09-26 13:52:57,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:52:58,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.46ms
2019-09-26 13:52:59,481 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:53:00,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:53:01,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:02,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.26ms
2019-09-26 13:53:03,459 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.17ms
2019-09-26 13:53:04,462 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:53:05,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.48ms
2019-09-26 13:53:06,456 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.24ms
2019-09-26 13:53:07,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:08,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.32ms
2019-09-26 13:53:09,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.38ms
2019-09-26 13:53:10,482 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.46ms
2019-09-26 13:53:11,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.40ms
2019-09-26 13:53:12,455 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.20ms
2019-09-26 13:53:13,457 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.14ms
2019-09-26 13:53:14,460 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:53:15,454 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.39ms
2019-09-26 13:55:33,210 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:55:33,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.09ms
2019-09-26 13:55:34,980 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:55:35,980 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:55:36,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.49ms
2019-09-26 13:55:37,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.52ms
2019-09-26 13:55:38,971 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.63ms
2019-09-26 13:55:39,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:55:40,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:55:41,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.37ms
2019-09-26 13:55:42,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.18ms
2019-09-26 13:55:43,997 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:55:45,010 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.37ms
2019-09-26 13:55:45,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:55:46,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.53ms
2019-09-26 13:55:47,986 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.97ms
2019-09-26 13:55:48,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:55:49,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:55:50,979 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.72ms
2019-09-26 13:55:51,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:55:52,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.91ms
2019-09-26 13:55:53,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:55:54,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:55:56,008 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.36ms
2019-09-26 13:55:56,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:55:57,978 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.85ms
2019-09-26 13:55:58,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:55:59,975 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.77ms
2019-09-26 13:56:00,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:56:01,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:56:02,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:56:03,972 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:56:04,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.21ms
2019-09-26 13:56:06,274 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.32ms
2019-09-26 13:56:07,001 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.26ms
2019-09-26 13:56:07,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.80ms
2019-09-26 13:56:08,971 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.55ms
2019-09-26 13:56:09,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.68ms
2019-09-26 13:56:10,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:56:11,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.08ms
2019-09-26 13:56:12,976 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.99ms
2019-09-26 13:56:13,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:56:14,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:56:15,973 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.48ms
2019-09-26 13:56:16,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.89ms
2019-09-26 13:56:18,005 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.39ms
2019-09-26 13:56:18,977 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:56:19,974 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.50ms
2019-09-26 13:56:28,400 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:56:29,404 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.38ms
2019-09-26 13:56:30,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.79ms
2019-09-26 13:56:31,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.71ms
2019-09-26 13:56:32,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:56:33,374 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.36ms
2019-09-26 13:56:34,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.74ms
2019-09-26 13:56:35,384 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.13ms
2019-09-26 13:56:36,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.58ms
2019-09-26 13:56:37,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.28ms
2019-09-26 13:56:38,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.41ms
2019-09-26 13:56:39,381 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:56:40,407 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.02ms
2019-09-26 13:56:41,379 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.95ms
2019-09-26 13:56:42,376 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.65ms
2019-09-26 13:56:43,382 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.77ms
2019-09-26 13:56:44,378 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.54ms
2019-09-26 13:56:45,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.23ms
2019-09-26 13:56:46,375 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.22ms
2019-09-26 13:56:47,377 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.56ms
2019-09-26 13:56:59,121 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:56:59,609 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.10ms
2019-09-26 13:57:00,604 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.77ms
2019-09-26 13:57:01,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.88ms
2019-09-26 13:57:02,599 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.76ms
2019-09-26 13:57:03,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 12.68ms
2019-09-26 13:57:04,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:57:05,606 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:57:06,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 13.60ms
2019-09-26 13:57:07,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.61ms
2019-09-26 13:57:08,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.96ms
2019-09-26 13:57:09,605 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.13ms
2019-09-26 13:57:10,629 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.09ms
2019-09-26 13:57:11,602 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.94ms
2019-09-26 13:57:12,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.01ms
2019-09-26 13:57:13,598 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.87ms
2019-09-26 13:57:14,600 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 10.92ms
2019-09-26 13:57:23,356 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:57:24,004 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 5.42ms
2019-09-26 13:57:24,993 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 11.16ms
2019-09-26 13:57:25,357 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-09-26 13:57:25,385 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-09-26 13:57:25,388 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-09-26 13:57:25,989 - tornado.access - WARNING - 409 GET /api/printer?history=true&limit=450 (::ffff:10.55.102.11) 4.86ms
2019-09-26 13:57:26,398 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:26,405 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-09-26 13:57:26,418 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:26,422 - octoprint.util.comm - WARNING - Printer sent 'start' while already operational. External reset? Resetting line numbers to be on the safe side
2019-09-26 13:57:26,431 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:31,757 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 13:57:39,145 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:58:50,210 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:59:38,517 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:59:48,363 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:00:08,191 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:00:24,112 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 14:00:24,119 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-09-26 14:00:24,122 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: griff.gcode, owner: pi, user: pi
2019-09-26 14:00:24,127 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:00:24,133 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-09-26 14:00:26,283 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-09-26 14:00:28,610 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-09-26 14:01:00,505 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 14:04:49,404 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-09-26 14:04:49,407 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:04:49,409 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-09-26 14:04:49,411 - octoprint.util.comm - INFO - Force-sending M108 to the printer
2019-09-26 14:04:49,417 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: griff.gcode, owner: pi, user: None
2019-09-26 14:04:52,661 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-09-26 14:04:52,662 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-09-26 14:04:54,785 - octoprint.util.comm - INFO - Got a resend request from the printer: requested line = 1, current line = 4
| Last lines in terminal:
| Recv: factor: 0.000
| Recv: tmc2130_set_wave 3 0
| Recv: factor: 0.000
| Recv: PAT9125_init:1
| Recv: FSensor
| Recv: DISABLED
| Recv:
| Recv: echo:SD init fail
| Recv: Error:No Line Number with checksum, Last Line: 0
| Recv: Resend: 1
| Send: N0 M110 N0*125
| Recv: ok
| Send: N1 M113 S2*96
| Recv: echo:SD Init fehlerhaft
| Recv: ok
| Recv: ok
| Send: N2 M108*40
| Send: N3 M84*28
| Recv: Error:Line Number is not Last Line Number+1, Last Line: 0
| Recv: Resend: 1
2019-09-26 14:04:54,899 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-09-26 14:12:42,997 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:17:06,908 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:17:06,909 - octoprint.startup - INFO - Starting OctoPrint 1.3.12
2019-09-26 13:17:06,909 - octoprint.startup - INFO - ******************************************************************************
2019-09-26 13:17:07,305 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-09-26 13:17:07,305 - octoprint.startup - INFO - Blacklist processing done
2019-09-26 13:17:07,354 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:17:08,341 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:17:08,444 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-09-26 13:17:08,468 - octoprint.server - INFO - Intermediary server started
2019-09-26 13:17:08,468 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-09-26 13:17:08,532 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-09-26 13:17:08,550 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-09-26 13:17:08,799 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-09-26 13:17:08,821 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-09-26 13:17:09,488 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:17:10,034 - octoprint.util.pip - INFO - Version of pip is 19.3.1
2019-09-26 13:17:10,036 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:17:10,036 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:17:10,039 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-09-26 13:17:10,045 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-09-26 13:17:10,057 - octoprint.environment - INFO - Detected environment is Python 2.7.16 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1500.0
| ram: 4041732096
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 4 Model B Rev 1.1
| octopi_version: 0.17.0
| python:
| pip: 19.3.1
| version: 2.7.16
| virtualenv: /home/pi/oprint
2019-09-26 13:17:10,065 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-09-26 13:17:10,079 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-09-26 13:17:10,466 - octoprint.server - INFO - Shutting down intermediary server...
2019-09-26 13:17:10,470 - octoprint.server - INFO - Intermediary server shut down
2019-09-26 13:17:10,472 - octoprint.events - INFO - Processing startup event, this is our first event
2019-09-26 13:17:10,472 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-09-26 13:17:10,474 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-09-26 13:17:10,476 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-09-26 13:17:10,478 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-09-26 13:17:10,479 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-09-26 13:17:10,488 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-09-26 13:17:10,495 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-09-26 13:17:10,516 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-09-26 13:17:10,542 - octoprint.plugins.pluginmanager - ERROR - Could not fetch plugins from repository at https://plugins.octoprint.org/plugins.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 823, in _fetch_repository_from_url
r = requests.get(repository_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /plugins.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740f0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,552 - octoprint.plugins.announcements - ERROR - Could not fetch channel _important from https://octoprint.org/feeds/important.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60f90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/important.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60f90>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,553 - octoprint.plugins.pluginmanager - ERROR - Could not fetch notices from https://plugins.octoprint.org/notices.json: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74b30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 891, in _fetch_notices_from_url
r = requests.get(notices_url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /notices.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74b30>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,566 - octoprint.plugins.announcements - ERROR - Could not fetch channel _releases from https://octoprint.org/feeds/releases.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb31bc570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/releases.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb31bc570>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,571 - octoprint.plugins.announcements - ERROR - Could not fetch channel _blog from https://octoprint.org/feeds/octoblog.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octoblog.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f60bb0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,577 - octoprint.plugins.announcements - ERROR - Could not fetch channel _plugins from https://plugins.octoprint.org/feed.xml: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='plugins.octoprint.org', port=443): Max retries exceeded with url: /feed.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f740b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:10,582 - octoprint.plugins.announcements - ERROR - Could not fetch channel _octopi from https://octoprint.org/feeds/octopi.xml: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74950>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py", line 355, in _get_channel_data_from_network
r = requests.get(url, timeout=30)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 75, in get
return request('get', url, params=params, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 60, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 533, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 646, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 516, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='octoprint.org', port=443): Max retries exceeded with url: /feeds/octopi.xml (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb1f74950>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2019-09-26 13:17:11,091 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-09-26 13:17:11,092 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-09-26 13:17:11,092 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-09-26 13:17:11,159 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://10.55.100.109/'}
2019-09-26 13:17:16,313 - octoprint.server.preemptive_cache - INFO - ... done in 5.15s
2019-09-26 13:17:16,314 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://169.254.230.48/'}
2019-09-26 13:17:18,627 - octoprint.server.preemptive_cache - INFO - ... done in 2.31s
2019-09-26 13:17:33,945 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:32:00,600 - tornado.access - WARNING - 404 DELETE /api/files/local/griff.gcode?apikey=856E20639BA343779BE6DB4503452130 (::ffff:10.55.102.11) 15.45ms
2019-09-26 13:32:08,446 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:47:08,447 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-09-26 13:50:23,672 - octoprint.server.api - INFO - Actively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:23,725 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:23,830 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:10.55.102.11
2019-09-26 13:50:24,420 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:10.55.102.11
2019-09-26 13:50:24,450 - octoprint.server.util.flask - INFO - Passively logging in user pi from ::ffff:10.55.102.11
2019-09-26 13:50:25,097 - octoprint.server.api - ERROR - Error calling SimpleApiPlugin pluginmanager
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 68, in pluginData
response = api_plugin.on_api_get(request)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 280, in on_api_get
if refresh_repository or not self._is_repository_cache_valid():
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py", line 797, in _is_repository_cache_valid
return mtime + self._repository_cache_ttl >= time.time() > mtime
TypeError: unsupported operand type(s) for +: 'NoneType' and 'int'
2019-09-26 13:50:25,102 - tornado.access - ERROR - 500 GET /api/plugin/pluginmanager (::ffff:10.55.102.11) 9.43ms
2019-09-26 13:50:25,144 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client ::ffff:10.55.102.11
2019-09-26 13:51:38,613 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-09-26 14:02:08,450 - octoprint.server.heartbeat - INFO - Server heartbeat <3
|
ConnectionError
|
def access_validation_factory(app, validator, *args):
"""
Creates an access validation wrapper using the supplied validator.
:param validator: the access validator to use inside the validation wrapper
:return: an access validator taking a request as parameter and performing the request validation
"""
# noinspection PyProtectedMember
def f(request):
"""
Creates a custom wsgi and Flask request context in order to be able to process user information
stored in the current session.
:param request: The Tornado request for which to create the environment and context
"""
import flask
wsgi_environ = WsgiInputContainer.environ(request)
with app.request_context(wsgi_environ):
session = app.session_interface.open_session(app, flask.request)
user_id = session.get("user_id")
user = None
# Yes, using protected methods is ugly. But these used to be publicly available in former versions
# of flask-login, there are no replacements, and seeing them renamed & hidden in a minor version release
# without any mention in the changelog means the public API ain't strictly stable either, so we might
# as well make our life easier here and just use them...
if user_id is not None and app.login_manager._user_callback is not None:
user = app.login_manager._user_callback(user_id)
app.login_manager._update_request_context_with_user(user)
validator(flask.request, *args)
return f
|
def access_validation_factory(app, validator, *args):
"""
Creates an access validation wrapper using the supplied validator.
:param validator: the access validator to use inside the validation wrapper
:return: an access validator taking a request as parameter and performing the request validation
"""
def f(request):
"""
Creates a custom wsgi and Flask request context in order to be able to process user information
stored in the current session.
:param request: The Tornado request for which to create the environment and context
"""
import flask
wsgi_environ = WsgiInputContainer.environ(request)
with app.request_context(wsgi_environ):
app.session_interface.open_session(app, flask.request)
app.login_manager.reload_user()
validator(flask.request, *args)
return f
|
https://github.com/OctoPrint/OctoPrint/issues/3600
|
2020-06-11 22:08:49,879 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/circle_20200611141803-fail.mpg (10.125.0.1)
Traceback (most recent call last):
File "/home/bzed/tools/OctoPrint/venv/lib/python3.7/site-packages/tornado/web.py", line 1590, in _execute
result = method(*self.path_args, **self.path_kwargs)
File "/home/bzed/tools/OctoPrint/src/octoprint/server/util/tornado.py", line 1006, in get
self._access_validation(self.request)
File "/home/bzed/tools/OctoPrint/src/octoprint/server/util/tornado.py", line 1305, in f
validator(request)
File "/home/bzed/tools/OctoPrint/src/octoprint/server/util/tornado.py", line 1285, in f
app.login_manager.reload_user()
AttributeError: 'LoginManager' object has no attribute 'reload_user'
|
AttributeError
|
def f(request):
"""
Creates a custom wsgi and Flask request context in order to be able to process user information
stored in the current session.
:param request: The Tornado request for which to create the environment and context
"""
import flask
wsgi_environ = WsgiInputContainer.environ(request)
with app.request_context(wsgi_environ):
session = app.session_interface.open_session(app, flask.request)
user_id = session.get("user_id")
user = None
# Yes, using protected methods is ugly. But these used to be publicly available in former versions
# of flask-login, there are no replacements, and seeing them renamed & hidden in a minor version release
# without any mention in the changelog means the public API ain't strictly stable either, so we might
# as well make our life easier here and just use them...
if user_id is not None and app.login_manager._user_callback is not None:
user = app.login_manager._user_callback(user_id)
app.login_manager._update_request_context_with_user(user)
validator(flask.request, *args)
|
def f(request):
"""
Creates a custom wsgi and Flask request context in order to be able to process user information
stored in the current session.
:param request: The Tornado request for which to create the environment and context
"""
import flask
wsgi_environ = WsgiInputContainer.environ(request)
with app.request_context(wsgi_environ):
app.session_interface.open_session(app, flask.request)
app.login_manager.reload_user()
validator(flask.request, *args)
|
https://github.com/OctoPrint/OctoPrint/issues/3600
|
2020-06-11 22:08:49,879 - tornado.application - ERROR - Uncaught exception GET /downloads/timelapse/circle_20200611141803-fail.mpg (10.125.0.1)
Traceback (most recent call last):
File "/home/bzed/tools/OctoPrint/venv/lib/python3.7/site-packages/tornado/web.py", line 1590, in _execute
result = method(*self.path_args, **self.path_kwargs)
File "/home/bzed/tools/OctoPrint/src/octoprint/server/util/tornado.py", line 1006, in get
self._access_validation(self.request)
File "/home/bzed/tools/OctoPrint/src/octoprint/server/util/tornado.py", line 1305, in f
validator(request)
File "/home/bzed/tools/OctoPrint/src/octoprint/server/util/tornado.py", line 1285, in f
app.login_manager.reload_user()
AttributeError: 'LoginManager' object has no attribute 'reload_user'
|
AttributeError
|
def _openSerial(self):
def default(_, port, baudrate, read_timeout):
if port is None or port == "AUTO":
# no known port, try auto detection
self._changeState(self.STATE_DETECT_SERIAL)
port = self._detect_port()
if port is None:
error_text = "Failed to autodetect serial port, please set it manually."
self._trigger_error(error_text, "autodetect_port")
self._log(error_text)
return None
# connect to regular serial port
self._log("Connecting to: %s" % port)
serial_port_args = {
"baudrate": baudrateList()[0] if baudrate == 0 else baudrate,
"timeout": read_timeout,
"write_timeout": 0,
}
if settings().getBoolean(["serial", "exclusive"]):
serial_port_args["exclusive"] = True
serial_obj = serial.Serial(**serial_port_args)
serial_obj.port = str(port)
use_parity_workaround = settings().get(["serial", "useParityWorkaround"])
needs_parity_workaround = get_os() == "linux" and os.path.exists(
"/etc/debian_version"
) # See #673
if use_parity_workaround == "always" or (
needs_parity_workaround and use_parity_workaround == "detect"
):
serial_obj.parity = serial.PARITY_ODD
serial_obj.open()
serial_obj.close()
serial_obj.parity = serial.PARITY_NONE
serial_obj.open()
# Set close_exec flag on serial handle, see #3212
if hasattr(serial_obj, "fd"):
# posix
set_close_exec(serial_obj.fd)
elif hasattr(serial_obj, "_port_handle"):
# win32
# noinspection PyProtectedMember
set_close_exec(serial_obj._port_handle)
return BufferedReadlineWrapper(serial_obj)
serial_factories = self._serial_factory_hooks.items() + [("default", default)]
for name, factory in serial_factories:
try:
serial_obj = factory(
self,
self._port,
self._baudrate,
settings().getFloat(["serial", "timeout", "connection"]),
)
except:
exception_string = get_exception_string()
self._trigger_error("Connection error, see Terminal tab", "connection")
error_message = (
"Unexpected error while connecting to serial port: %s %s (hook %s)"
% (self._port, exception_string, name)
)
self._log(error_message)
self._logger.exception(error_message)
if "failed to set custom baud rate" in exception_string.lower():
self._log(
"Your installation does not support custom baudrates (e.g. 250000) for connecting to your printer. This is a problem of the pyserial library that OctoPrint depends on. Please update to a pyserial version that supports your baudrate or switch your printer's firmware to a standard baudrate (e.g. 115200). See https://github.com/foosel/OctoPrint/wiki/OctoPrint-support-for-250000-baud-rate-on-Raspbian"
)
return False
if serial_obj is not None:
# first hook to succeed wins, but any can pass on to the next
self._changeState(self.STATE_OPEN_SERIAL)
self._serial = serial_obj
self._clear_to_send.reset()
return True
return False
|
def _openSerial(self):
def default(_, port, baudrate, read_timeout):
if port is None or port == "AUTO":
# no known port, try auto detection
self._changeState(self.STATE_DETECT_SERIAL)
port = self._detect_port()
if port is None:
error_text = "Failed to autodetect serial port, please set it manually."
self._trigger_error(error_text, "autodetect_port")
self._log(error_text)
return None
# connect to regular serial port
self._log("Connecting to: %s" % port)
serial_port_args = {
"baudrate": baudrateList()[0] if baudrate == 0 else baudrate,
"timeout": read_timeout,
"write_timeout": 0,
}
if settings().getBoolean(["serial", "exclusive"]):
serial_port_args["exclusive"] = True
serial_obj = serial.Serial(**serial_port_args)
serial_obj.port = str(port)
use_parity_workaround = settings().get(["serial", "useParityWorkaround"])
needs_parity_workaround = get_os() == "linux" and os.path.exists(
"/etc/debian_version"
) # See #673
if use_parity_workaround == "always" or (
needs_parity_workaround and use_parity_workaround == "detect"
):
serial_obj.parity = serial.PARITY_ODD
serial_obj.open()
serial_obj.close()
serial_obj.parity = serial.PARITY_NONE
serial_obj.open()
return BufferedReadlineWrapper(serial_obj)
serial_factories = self._serial_factory_hooks.items() + [("default", default)]
for name, factory in serial_factories:
try:
serial_obj = factory(
self,
self._port,
self._baudrate,
settings().getFloat(["serial", "timeout", "connection"]),
)
except:
exception_string = get_exception_string()
self._trigger_error("Connection error, see Terminal tab", "connection")
error_message = (
"Unexpected error while connecting to serial port: %s %s (hook %s)"
% (self._port, exception_string, name)
)
self._log(error_message)
self._logger.exception(error_message)
if "failed to set custom baud rate" in exception_string.lower():
self._log(
"Your installation does not support custom baudrates (e.g. 250000) for connecting to your printer. This is a problem of the pyserial library that OctoPrint depends on. Please update to a pyserial version that supports your baudrate or switch your printer's firmware to a standard baudrate (e.g. 115200). See https://github.com/foosel/OctoPrint/wiki/OctoPrint-support-for-250000-baud-rate-on-Raspbian"
)
return False
if serial_obj is not None:
# first hook to succeed wins, but any can pass on to the next
self._changeState(self.STATE_OPEN_SERIAL)
self._serial = serial_obj
self._clear_to_send.reset()
return True
return False
|
https://github.com/OctoPrint/OctoPrint/issues/3212
|
2019-06-30 17:15:24,613 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 17:15:24,617 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-06-30 17:15:24,617 - octoprint.server - INFO - OctoPrint 1.3.11
2019-06-30 17:15:24,633 - octoprint.plugin.core - INFO - 58 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Active Filters Extended (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_active_filters_extended
| Announcement Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Autoscroll (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoscroll
| Autoselect Plugin (0.2.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !DeleteAfterPrint Plugin (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_DeleteAfterPrint
| Detailed Progress Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_detailedprogress
| DiscordRemote (2.40.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_discordremote
| Discovery (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_displayz
| Dragon Order (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_dragon_order
| EEPROM Marlin Editor Plugin (1.2.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Error Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Exclude Region (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_excluderegion
| FileManager (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_filemanager
| Firmware Updater (1.4.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fullscreen
| GCODE System Commands (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands
| Gcodebar Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GCodeBar
| GcodeEditor (0.2.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GcodeEditor
| HeaterTimeout (0.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Kronos Data Collector (1.2.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_kronos_data_collector
| Logging (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/logging
| M117PopUp (0.6.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_M117PopUp
| M73 ETA Override (1.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Multi Colors (1.0.16) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_multi_colors
| MultipleUpload Plugin (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_MultipleUpload
| !Octolapse (v0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octolapse
| OctoPod Plugin (0.1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octopod
| OctoRant (1.2.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octorant
| Pi Support Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_preheat
| Print History Plugin (1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Printer Stats (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_stats
| PrinterAlerts (0.7.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrinterAlerts
| !PrintTimeGenius Plugin (1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| Prusa Mesh Leveling (0.3.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| !Pushbullet (0.1.9) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octobullet
| Sidebar Temp Graph (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_sidebartempgraph
| Slic3r (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slic3r
| Slicer (1.4.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slicer
| SlicerSettingsParser (2.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsParser
| SlicerSettingsTab (1.0.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsTab
| SnapStream (0.2.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Stateful Sidebar (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/statefulsidebar
| Terminal Commands (0.1.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| !Themeify (1.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_themeify
| TouchUI (0.3.13) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_touchui
| Upload Anything (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything
| Virtual Printer (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-06-30 17:15:24,654 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/OctoPrint/venv
2019-06-30 17:15:24,655 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-06-30 17:15:46,715 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:15:46,814 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:16:02,054 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1036844}
2019-06-30 17:16:27,761 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:16:27,863 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:17:08,809 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:17:08,908 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:17:49,855 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:17:49,952 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:18:30,901 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:18:31,075 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:19:11,948 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:19:12,049 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:19:52,994 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:19:53,100 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:20:34,041 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:20:34,141 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:21:15,086 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:21:15,186 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:21:56,133 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:21:56,231 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:22:37,180 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:22:37,280 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:23:18,228 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:23:18,328 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:23:59,275 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:23:59,377 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:24:40,321 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:24:40,422 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:25:21,363 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:25:21,464 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:26:02,410 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:26:02,513 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:26:43,454 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:26:43,554 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:27:24,499 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:27:24,599 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:28:05,545 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:28:05,667 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:28:46,591 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:28:46,688 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:29:27,628 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:29:27,731 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:30:08,674 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:30:08,776 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:30:24,644 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 17:30:49,725 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:30:49,823 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:31:02,039 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1037744}
2019-06-30 17:31:30,771 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:31:30,976 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:32:11,816 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:32:11,917 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:32:52,861 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:32:52,960 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:33:33,908 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:33:34,008 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:34:14,955 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:34:15,054 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:34:56,002 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:34:56,097 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:35:37,048 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:35:37,156 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:36:18,094 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:36:18,186 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:36:59,141 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:36:59,239 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:37:40,200 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:37:40,299 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:38:21,247 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:38:21,344 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:39:02,293 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:39:02,401 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:39:43,340 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:39:43,443 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:40:24,387 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:40:24,497 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:41:05,434 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:41:05,535 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:41:46,480 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:41:46,577 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:42:17,168 - octoprint.plugins.discordremote - ERROR - Connection error: [Errno 104] Connection reset by peer
2019-06-30 17:42:17,172 - octoprint.plugins.discordremote - INFO - WebSocket Closed
2019-06-30 17:42:17,174 - octoprint.plugins.discordremote - INFO - Restart Triggered
2019-06-30 17:42:17,178 - octoprint.plugins.discordremote - INFO - Waiting for listener thread to join.
2019-06-30 17:42:17,180 - octoprint.plugins.discordremote - INFO - Listener thread joined.
2019-06-30 17:42:22,491 - octoprint.plugins.discordremote - INFO - Socket URL is wss://gateway.discord.gg
2019-06-30 17:42:22,830 - octoprint.plugins.discordremote - INFO - Received HELLO message
2019-06-30 17:42:22,832 - octoprint.plugins.discordremote - INFO - Sending RESUME message
2019-06-30 17:42:22,834 - octoprint.plugins.discordremote - INFO - Heartbeat thread: <Thread(Thread-50, started 1768940640)>
2019-06-30 17:42:22,835 - octoprint.plugins.discordremote - INFO - Heartbeat thread is_alive(): True
2019-06-30 17:42:22,932 - octoprint.plugins.discordremote - INFO - Successfully resumed
2019-06-30 17:42:27,526 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:42:27,623 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:43:08,572 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:43:08,674 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:43:49,619 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:43:49,719 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:44:30,666 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:44:30,838 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:45:11,713 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:45:11,809 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:45:24,646 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 17:45:52,758 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:45:52,859 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:46:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1038644}
2019-06-30 17:46:33,798 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:46:33,894 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:47:14,845 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:47:14,959 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:47:55,890 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:47:55,986 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:48:36,955 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:48:37,054 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:49:18,002 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:49:18,114 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:49:59,047 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:49:59,147 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:50:40,093 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:50:40,192 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:51:21,137 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:51:21,236 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:52:02,183 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:52:02,286 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:52:43,247 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:52:43,347 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:53:24,293 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:53:24,400 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:54:05,340 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:54:05,480 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:54:46,388 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:54:46,490 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:55:27,435 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:55:27,538 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:56:08,474 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:56:08,574 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:56:49,519 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:56:49,621 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:57:30,565 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:57:30,721 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:58:11,612 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:58:11,711 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:58:52,658 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:58:52,760 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:59:33,706 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:59:33,805 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:00:14,752 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:00:14,850 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:00:24,648 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:00:55,799 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:00:55,898 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:01:02,056 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1039544}
2019-06-30 18:01:36,845 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:01:36,944 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:02:17,892 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:02:17,991 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:02:58,938 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:02:59,036 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:03:39,974 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:03:40,091 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:04:21,020 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:04:21,118 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:05:02,066 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:05:02,165 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:05:43,111 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:05:43,211 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:06:24,157 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:06:24,259 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:07:05,203 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:07:05,302 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:07:46,272 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:07:46,372 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:08:27,290 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:08:27,390 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:09:08,335 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:09:08,435 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:09:49,381 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:09:49,485 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:10:30,432 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:10:30,533 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:11:11,472 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:11:11,578 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:11:52,517 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:11:52,615 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:12:33,556 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:12:33,659 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:13:14,600 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:13:14,699 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:13:55,646 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:13:55,760 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:14:36,692 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:14:36,792 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:15:17,737 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:15:17,837 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:15:24,651 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:15:58,782 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:15:58,882 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:16:02,057 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1040444}
2019-06-30 18:16:39,827 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:16:39,925 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:17:20,872 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:17:20,971 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:18:01,919 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:18:02,043 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:18:42,965 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:18:43,060 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:19:24,011 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:19:24,110 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:20:05,056 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:20:05,182 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:20:46,102 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:20:46,201 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:21:27,148 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:21:27,239 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:22:08,193 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:22:08,313 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:22:49,239 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:22:49,336 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:23:30,286 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:23:30,387 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:24:11,320 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:24:11,419 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:24:52,367 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:24:52,468 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:25:33,403 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:25:33,499 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:26:14,448 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:26:14,545 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:26:55,490 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:26:55,592 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:27:36,535 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:27:36,632 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:28:17,581 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:28:17,684 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:28:58,624 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:28:58,723 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:29:39,669 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:29:39,766 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:30:20,714 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:30:20,813 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:30:24,653 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:31:01,752 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:31:01,846 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:31:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1041344}
2019-06-30 18:31:42,767 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:31:42,867 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:32:23,814 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:32:23,911 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:33:04,859 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:33:04,967 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:33:45,905 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:33:46,001 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:34:26,950 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:34:27,046 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:35:07,995 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:35:08,092 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:35:49,040 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:35:49,148 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:36:30,085 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:36:30,189 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:37:11,126 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:37:11,223 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:37:52,171 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:37:52,268 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:38:33,210 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:38:33,311 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:39:14,255 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:39:14,354 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:39:55,302 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:39:55,408 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:40:36,350 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:40:36,449 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:41:17,395 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:41:17,491 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:41:58,441 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:41:58,606 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:42:39,487 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:42:39,589 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:43:20,533 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:43:20,631 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:44:01,580 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:44:01,678 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:44:42,621 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:44:42,718 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:45:23,668 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:45:23,767 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:45:24,654 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:46:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1042244}
2019-06-30 18:46:04,713 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:46:04,812 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:46:45,758 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:46:45,861 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:47:26,805 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:47:26,907 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:48:07,851 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:48:07,949 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:48:48,897 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:48:49,012 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:49:29,943 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:49:30,042 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:50:10,989 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:50:11,088 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:50:52,035 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:50:52,127 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:51:33,080 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:51:33,175 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:52:14,125 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:52:14,227 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:52:55,171 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:52:55,269 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:53:36,206 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:53:36,308 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:54:17,252 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:54:17,352 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:54:58,297 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:54:58,391 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:55:39,341 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:55:39,451 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:56:20,387 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:56:20,490 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:56:44,074 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 18:56:44,427 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 18:56:44,581 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 18:57:01,433 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 346, "op": 1}
2019-06-30 18:57:01,541 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:57:42,468 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:57:42,577 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:58:23,513 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:58:23,617 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:59:04,558 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:59:04,662 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:59:45,605 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:59:45,701 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:00:24,656 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:00:26,651 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:00:26,748 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:01:02,061 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1043144}
2019-06-30 19:01:07,696 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:01:07,796 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:01:48,742 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:01:48,836 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:02:29,787 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:02:29,886 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:03:10,815 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:03:10,927 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:03:51,861 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:03:51,967 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:04:32,907 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:04:33,004 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:05:13,952 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:05:14,051 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:05:54,997 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:05:55,096 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:06:36,042 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:06:36,155 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:07:17,088 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:07:17,187 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:07:58,134 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:07:58,235 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:08:39,180 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:08:39,307 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:09:20,227 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:09:20,329 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:10:01,273 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:10:01,369 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:10:42,319 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:10:42,422 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:11:23,365 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:11:23,469 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:12:04,411 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:12:04,511 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:12:45,458 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:12:45,557 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:13:26,504 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:13:26,606 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:14:07,550 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:14:07,652 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:14:48,597 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:14:48,692 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:15:24,659 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:15:29,644 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:15:29,753 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:16:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1044044}
2019-06-30 19:16:10,689 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:16:10,787 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:16:51,735 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:16:51,835 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:17:32,780 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:17:32,880 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:18:13,812 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:18:13,905 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:18:54,858 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:18:54,955 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:19:35,904 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:19:36,005 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:20:16,950 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:20:17,047 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:20:57,996 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:20:58,093 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:21:39,042 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:21:39,141 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:22:20,087 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:22:20,191 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:23:01,133 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:23:01,233 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:23:42,179 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:23:42,280 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:24:23,226 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:24:23,325 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:25:04,273 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:25:04,373 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:25:45,318 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:25:45,418 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:26:26,364 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:26:26,461 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:27:07,409 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:27:07,511 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:27:48,456 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:27:48,554 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:28:29,502 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:28:29,602 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:29:10,548 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:29:10,653 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:29:51,594 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:29:51,696 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:30:24,660 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:30:32,641 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:30:32,739 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:31:02,097 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1044944}
2019-06-30 19:31:13,675 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:31:13,777 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:31:54,724 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:31:54,822 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:32:35,765 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:32:35,878 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:33:09,418 - octoprint.plugins.excluderegion - INFO - Event received: event=FileAdded payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'storage': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': ['machinecode', 'gcode']}
2019-06-30 19:33:09,420 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:09,423 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'printables'}
2019-06-30 19:33:09,430 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:09,458 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'gcode'}
2019-06-30 19:33:09,466 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:33:09,472 - octoprint.printer.standard - INFO - Cannot load file: printer not connected or currently busy
2019-06-30 19:33:09,490 - octoprint.plugins.SlicerSettingsParser - INFO - Analyzing file: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:16,951 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:33:17,127 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:33:58,091 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:33:58,189 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:33:58,834 - octoprint.plugins.SlicerSettingsParser - INFO - Saved slicer settings metadata for file: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:58,835 - octoprint.plugins.excluderegion - INFO - Event received: event=Upload payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'target': u'local'}
2019-06-30 19:34:03,138 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:34:03,272 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Error: Connection error, see Terminal tab"
2019-06-30 19:34:03,275 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: /dev/ttyACM0 SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2611 (hook default)
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2611, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2600, in default
serial_obj = serial.Serial(**serial_port_args)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialutil.py", line 240, in __init__
self.open()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-06-30 19:34:03,279 - octoprint.plugins.discordremote - INFO - Received event: printer_state_error
2019-06-30 19:34:04,110 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Error: Connection error, see Terminal tab', 'state_id': 'ERROR'}
2019-06-30 19:34:04,991 - octoprint.plugins.excluderegion - INFO - Event received: event=Error payload={'reason': 'connection', 'error': 'Connection error, see Terminal tab'}
2019-06-30 19:34:04,992 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:34:05,793 - octoprint.plugins.tracking - INFO - Sent tracking event commerror_connection, payload: {'throttled_now': False, 'throttled_past': True, 'commerror_text': 'Connection error, see Terminal tab', 'throttled_mask': 131072}
2019-06-30 19:34:07,390 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.84
2019-06-30 19:34:07,701 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:34:08,348 - tornado.access - WARNING - 409 GET /api/printer (10.0.1.84) 11.65ms
2019-06-30 19:34:08,721 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.1.84: 'NoneType' object has no attribute 'send_pack'
2019-06-30 19:34:08,723 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:34:08,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.84
2019-06-30 19:34:12,868 - octoprint.plugins.excluderegion - INFO - Event received: event=Disconnecting payload=None
2019-06-30 19:34:12,871 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:34:12,973 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Error: Connection error, see Terminal tab"
2019-06-30 19:34:12,982 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: /dev/ttyACM0 SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2611 (hook default)
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2611, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2600, in default
serial_obj = serial.Serial(**serial_port_args)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialutil.py", line 240, in __init__
self.open()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-06-30 19:34:12,985 - octoprint.plugins.discordremote - INFO - Received event: printer_state_error
2019-06-30 19:34:14,051 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Error: Connection error, see Terminal tab', 'state_id': 'ERROR'}
2019-06-30 19:34:14,739 - octoprint.plugins.excluderegion - INFO - Event received: event=Error payload={'reason': 'connection', 'error': 'Connection error, see Terminal tab'}
2019-06-30 19:34:14,739 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:34:15,579 - octoprint.plugins.tracking - INFO - Sent tracking event commerror_connection, payload: {'throttled_now': False, 'throttled_past': True, 'commerror_text': 'Connection error, see Terminal tab', 'throttled_mask': 131072}
2019-06-30 19:34:18,291 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.132
2019-06-30 19:34:18,295 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:34:19,243 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 19:34:19,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:34:19,587 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 19:34:22,615 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 19:34:24,390 - octoprint.plugins.excluderegion - INFO - Event received: event=Disconnecting payload=None
2019-06-30 19:34:24,393 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:34:24,497 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Error: Connection error, see Terminal tab"
2019-06-30 19:34:24,500 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: /dev/ttyACM0 SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2611 (hook default)
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2611, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2600, in default
serial_obj = serial.Serial(**serial_port_args)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialutil.py", line 240, in __init__
self.open()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-06-30 19:34:24,504 - octoprint.plugins.discordremote - INFO - Received event: printer_state_error
2019-06-30 19:34:25,433 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Error: Connection error, see Terminal tab', 'state_id': 'ERROR'}
2019-06-30 19:34:25,674 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 20.08ms
2019-06-30 19:34:25,698 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 18.58ms
2019-06-30 19:34:26,079 - octoprint.plugins.excluderegion - INFO - Event received: event=Error payload={'reason': 'connection', 'error': 'Connection error, see Terminal tab'}
2019-06-30 19:34:26,080 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:34:26,191 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131074, 'current_overheat': True, 'past_issue': True, 'past_overheat': True, 'current_issue': True, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:34:26,890 - octoprint.plugins.tracking - INFO - Sent tracking event commerror_connection, payload: {'throttled_now': True, 'throttled_past': True, 'commerror_text': 'Connection error, see Terminal tab', 'throttled_mask': 131074}
2019-06-30 19:34:27,696 - octoprint.plugins.tracking - INFO - Sent tracking event system_throttled, payload: {'throttled_mask': 131074, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': True, 'throttled_now': True, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:34:39,183 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 356, "op": 1}
2019-06-30 19:34:39,306 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:35:06,104 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo reboot now
2019-06-30 19:35:20,234 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 356, "op": 1}
2019-06-30 19:35:20,338 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:35:51,128 - octoprint.startup - INFO - ******************************************************************************
2019-06-30 19:35:51,134 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-06-30 19:35:51,179 - octoprint.startup - INFO - ******************************************************************************
2019-06-30 19:35:51,496 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-06-30 19:35:51,719 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-06-30 19:35:51,830 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-06-30 19:36:20,073 - octoprint.plugin.core - INFO - Plugin Pushbullet (0.1.9) is disabled.
2019-06-30 19:36:20,376 - octoprint.plugin.core - INFO - Plugin PrintTimeGenius Plugin (1.3) is disabled.
2019-06-30 19:36:20,954 - octoprint.plugin.core - INFO - Plugin Themeify (1.1.0) is disabled.
2019-06-30 19:36:20,974 - octoprint.plugin.core - INFO - Plugin DeleteAfterPrint Plugin (1.1.1) is disabled.
2019-06-30 19:36:23,473 - octoprint.plugin.core - INFO - Plugin Octolapse (v0.3.1) is disabled.
2019-06-30 19:36:23,556 - octoprint.plugins.octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-06-30 19:36:23,591 - octoprint.plugin.core - INFO - Found 58 plugin(s) providing 53 mixin implementations, 71 hook handlers
2019-06-30 19:36:24,171 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-06-30 19:36:24,235 - octoprint.server - INFO - Intermediary server started
2019-06-30 19:36:24,237 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-06-30 19:36:24,509 - octoprint.plugin.core - INFO - Found 58 plugin(s) providing 53 mixin implementations, 71 hook handlers
2019-06-30 19:36:24,564 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-06-30 19:36:25,135 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,138 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,142 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,147 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,150 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,155 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,162 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,166 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,170 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,173 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,178 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,183 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,188 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,192 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,196 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,201 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,206 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,210 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,213 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,217 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,221 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,226 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,230 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,236 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,240 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,244 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,249 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,253 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,257 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,261 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,267 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,271 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,276 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,280 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,284 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,288 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,292 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,296 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,299 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,303 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,308 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,313 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,318 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,322 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,326 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,331 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,336 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,340 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,345 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,349 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,355 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,359 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,363 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,367 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,372 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,376 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,380 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,386 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,390 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,394 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,398 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,402 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,408 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,413 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,417 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,426 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,430 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,434 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,439 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,444 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,448 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,452 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,456 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,460 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,465 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,470 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,474 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,479 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,483 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,489 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,494 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,498 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,503 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,508 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,511 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,516 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,520 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,525 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,529 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,534 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,539 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,543 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,547 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,551 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,554 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,559 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,564 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,570 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,574 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,579 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,583 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,586 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,592 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,597 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,601 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,606 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,609 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,615 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,618 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,623 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,626 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,632 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,636 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,641 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,645 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,649 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,654 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,659 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,663 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,667 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,672 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,677 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,682 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,685 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,691 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,695 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,699 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,702 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,708 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,713 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,717 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,721 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,725 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,730 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,735 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,740 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,743 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,747 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,753 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,757 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,761 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,766 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,771 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,776 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,779 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,791 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,795 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,800 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,804 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,808 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,812 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,817 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,821 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,825 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,830 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,835 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,836 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-06-30 19:36:25,841 - octoprint.printer.standard - INFO - Using print time estimator provided by m73etaoverride
2019-06-30 19:36:26,460 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-06-30 19:36:26,478 - octoprint.plugins.multi_colors - INFO - MultiColors init
2019-06-30 19:36:29,510 - octoprint.util.pip - INFO - Using "/home/pi/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2019-06-30 19:36:32,122 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2019-06-30 19:36:32,123 - octoprint.util.pip - INFO - pip installs to /home/pi/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-06-30 19:36:32,125 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-06-30 19:36:32,134 - octoprint.plugin.core - INFO - Initialized 53 plugin implementation(s)
2019-06-30 19:36:32,158 - octoprint.plugins.gcodesystemcommands - INFO - Add command definition OCTO20 = /home/pi/blinkstick/ambientlight.py
2019-06-30 19:36:32,159 - octoprint.plugins.gcodesystemcommands - INFO - Add command definition OCTO21 = /home/pi/blinkstick/turnoffblinkstick.py
2019-06-30 19:36:32,171 - py.warnings - WARNING - /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/__init__.py:639: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2019-06-30 19:36:32,189 - octoprint.plugin.core - INFO - 58 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Active Filters Extended (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_active_filters_extended
| Announcement Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Autoscroll (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoscroll
| Autoselect Plugin (0.2.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !DeleteAfterPrint Plugin (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_DeleteAfterPrint
| Detailed Progress Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_detailedprogress
| DiscordRemote (2.40.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_discordremote
| Discovery (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_displayz
| Dragon Order (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_dragon_order
| EEPROM Marlin Editor Plugin (1.2.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Error Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Exclude Region (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_excluderegion
| FileManager (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_filemanager
| Firmware Updater (1.4.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fullscreen
| GCODE System Commands (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands
| Gcodebar Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GCodeBar
| GcodeEditor (0.2.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GcodeEditor
| HeaterTimeout (0.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Kronos Data Collector (1.2.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_kronos_data_collector
| Logging (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/logging
| M117PopUp (0.6.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_M117PopUp
| M73 ETA Override (1.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Multi Colors (1.0.16) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_multi_colors
| MultipleUpload Plugin (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_MultipleUpload
| !Octolapse (v0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octolapse
| OctoPod Plugin (0.1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octopod
| OctoRant (1.2.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octorant
| Pi Support Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_preheat
| Print History Plugin (1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Printer Stats (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_stats
| PrinterAlerts (0.7.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrinterAlerts
| !PrintTimeGenius Plugin (1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| Prusa Mesh Leveling (0.3.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| !Pushbullet (0.1.9) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octobullet
| Sidebar Temp Graph (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_sidebartempgraph
| Slic3r (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slic3r
| Slicer (1.4.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slicer
| SlicerSettingsParser (2.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsParser
| SlicerSettingsTab (1.0.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsTab
| SnapStream (0.2.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Stateful Sidebar (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/statefulsidebar
| Terminal Commands (0.1.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| !Themeify (1.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_themeify
| TouchUI (0.3.13) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_touchui
| Upload Anything (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything
| Virtual Printer (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-06-30 19:36:32,204 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/OctoPrint/venv
2019-06-30 19:36:32,223 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-06-30 19:36:32,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-06-30 19:36:34,487 - octoprint.server - INFO - Shutting down intermediary server...
2019-06-30 19:36:34,506 - octoprint.server - INFO - Intermediary server shut down
2019-06-30 19:36:34,510 - octoprint.events - INFO - Processing startup event, this is our first event
2019-06-30 19:36:34,510 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-06-30 19:36:34,513 - octoprint.plugins.discordremote - INFO - Received event: startup
2019-06-30 19:36:34,532 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-06-30 19:36:34,757 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-06-30 19:36:34,765 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-06-30 19:36:34,825 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP
2019-06-30 19:36:34,891 - octoprint.plugins.pi_support - WARNING - This Raspberry Pi is reporting problems that might lead to bad performance or errors caused by overheating or insufficient power.
!!! FREQUENCY CAPPING DUE TO OVERHEATING REPORTED !!! Improve cooling on the Pi's CPU and GPU.
2019-06-30 19:36:34,961 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 and http://[::]:5000
2019-06-30 19:36:35,146 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948595051 (10.0.1.132) 85.69ms
2019-06-30 19:36:35,171 - octoprint.plugins.discordremote - ERROR - Failed to send message
2019-06-30 19:36:35,172 - octoprint.plugins.excluderegion - INFO - Event received: event=Startup payload=None
2019-06-30 19:36:35,529 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1561948595460 (10.0.1.132) 55.60ms
2019-06-30 19:36:35,734 - octoprint.plugins.excluderegion - INFO - Event received: event=ConnectivityChanged payload={'new': True, 'old': False}
2019-06-30 19:36:35,785 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131072, 'current_overheat': False, 'past_issue': True, 'past_overheat': True, 'current_issue': False, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:36:35,980 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.95s
2019-06-30 19:36:36,303 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-06-30 19:36:36,368 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948596158 (10.0.1.132) 131.18ms
2019-06-30 19:36:36,669 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:36:36,672 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:36:36,681 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': (u'/home/pi/.octoprint/uploads', u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'), 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:36:36,760 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.1s
2019-06-30 19:36:36,829 - octoprint.plugins.tracking - INFO - Sent tracking event system_unthrottled, payload: {'throttled_mask': 131072, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': False, 'throttled_now': False, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:36:36,924 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-06-30 19:36:37,496 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.0s
2019-06-30 19:36:37,525 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948597322 (10.0.1.132) 184.30ms
2019-06-30 19:36:37,779 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue
2019-06-30 19:36:38,187 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.94s
2019-06-30 19:36:38,590 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.97s
2019-06-30 19:36:38,630 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948598489 (10.0.1.132) 135.60ms
2019-06-30 19:36:38,737 - octoprint.util.pip - INFO - Using "/home/pi/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2019-06-30 19:36:38,739 - octoprint.util.pip - INFO - pip installs to /home/pi/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-06-30 19:36:38,739 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-06-30 19:36:38,875 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2019-06-30 19:36:38,893 - octoprint.plugins.SlicerSettingsParser - INFO - SlicerSettingsParser still active
2019-06-30 19:36:38,897 - octoprint.plugins.discordremote - INFO - DiscordRemote is started !
2019-06-30 19:36:38,922 - octoprint.plugins.excluderegion - INFO - Setting update detected: g90InfluencesExtruder=False
2019-06-30 19:36:38,926 - octoprint.plugins.octopod - INFO - OctoPod loaded!
2019-06-30 19:36:38,936 - octoprint.plugins.octorant - INFO - Octorant is started !
2019-06-30 19:36:38,964 - octoprint.plugins.stats - INFO - Printer Stats
2019-06-30 19:36:39,014 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-06-30 19:36:39,204 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.92s
2019-06-30 19:36:39,229 - octoprint.plugins.discordremote - INFO - Socket URL is wss://gateway.discord.gg
2019-06-30 19:36:39,287 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-06-30 19:36:39,665 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.91s
2019-06-30 19:36:39,760 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.9', 'ram': 901685248, 'version': u'1.3.11', 'pip': '9.0.1', 'cores': 4, 'freq': 1200.0, 'pi_model': 'Raspberry Pi 3 Model B Rev 1.2', 'os': 'linux'}
2019-06-30 19:36:39,768 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948599640 (10.0.1.132) 96.77ms
2019-06-30 19:36:40,112 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://0.0.0.0:5000/'}
2019-06-30 19:36:40,142 - octoprint.plugins.discordremote - INFO - Received HELLO message
2019-06-30 19:36:40,166 - octoprint.plugins.discordremote - INFO - Sending IDENTIFY message
2019-06-30 19:36:40,175 - octoprint.plugins.discordremote - INFO - Heartbeat thread: None
2019-06-30 19:36:40,202 - octoprint.plugins.discordremote - INFO - Starting Heartbeat thread
2019-06-30 19:36:40,218 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": null, "op": 1}
2019-06-30 19:36:40,260 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.87s
2019-06-30 19:36:40,603 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 20}
2019-06-30 19:36:40,697 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:36:40,770 - octoprint.plugins.discordremote - INFO - Received READY message
2019-06-30 19:36:40,843 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948600776 (10.0.1.132) 45.98ms
2019-06-30 19:36:41,369 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.83s
2019-06-30 19:36:41,514 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.88s
2019-06-30 19:36:41,912 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948601859 (10.0.1.132) 30.60ms
2019-06-30 19:37:22,514 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 2, "op": 1}
2019-06-30 19:37:22,606 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:37:25,107 - octoprint.server.preemptive_cache - INFO - ... done in 44.99s
2019-06-30 19:37:25,108 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.1.210:5000/'}
2019-06-30 19:37:25,532 - octoprint.server.preemptive_cache - INFO - ... done in 0.42s
2019-06-30 19:37:29,060 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 19:37:29,339 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:37:29,450 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 19:37:33,805 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 19:37:38,194 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:37:38,295 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-06-30 19:37:38,301 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Offline', 'state_id': 'OFFLINE'}
2019-06-30 19:37:38,370 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-06-30 19:37:38,376 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-06-30 19:37:38,379 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Opening serial port', 'state_id': 'OPEN_SERIAL'}
2019-06-30 19:37:38,393 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Connecting', 'state_id': 'CONNECTING'}
2019-06-30 19:37:38,395 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:39,148 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 27.83ms
2019-06-30 19:37:39,167 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 40.92ms
2019-06-30 19:37:39,499 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:41,447 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-06-30 19:37:41,455 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-06-30 19:37:41,464 - octoprint.plugins.discordremote - INFO - Received event: printer_state_operational
2019-06-30 19:37:41,468 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:41,515 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.1 based on Marlin"
2019-06-30 19:37:42,999 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Operational', 'state_id': 'OPERATIONAL'}
2019-06-30 19:37:43,585 - octoprint.plugins.excluderegion - INFO - Event received: event=Connected payload={'baudrate': 115200, 'port': u'AUTO'}
2019-06-30 19:37:43,585 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-06-30 19:37:43,586 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-06-30 19:37:43,868 - octoprint.plugins.excluderegion - INFO - Event received: event=FirmwareData payload={'data': {'EXTRUDER_COUNT': '1', 'UUID': '00000000-0000-0000-0000-000000000000', 'FIRMWARE_NAME': 'Prusa-Firmware 3.7.1 based on Marlin', 'MACHINE_TYPE': 'Prusa i3 MK3S', 'PROTOCOL_VERSION': '1.0', 'FIRMWARE_URL': 'https://github.com/prusa3d/Prusa-Firmware'}, 'name': 'Prusa-Firmware 3.7.1 based on Marlin'}
2019-06-30 19:37:43,883 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'printables'}
2019-06-30 19:37:43,888 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'gcode'}
2019-06-30 19:37:43,893 - octoprint.plugins.excluderegion - INFO - Event received: event=FirmwareData payload={'data': {'EXTRUDER_COUNT': '1', 'UUID': '00000000-0000-0000-0000-000000000000', 'FIRMWARE_NAME': 'Prusa-Firmware 3.7.1 based on Marlin', 'MACHINE_TYPE': 'Prusa i3 MK3S', 'PROTOCOL_VERSION': '1.0', 'FIRMWARE_URL': 'https://github.com/prusa3d/Prusa-Firmware'}, 'name': 'Prusa-Firmware 3.7.1 based on Marlin'}
2019-06-30 19:37:44,944 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'AUTO', 'firmware_name': 'Prusa-Firmware 3.7.1 based on Marlin'}
2019-06-30 19:37:45,526 - octoprint.server.util.flask - INFO - Passively logging in user _api from 10.0.1.84
2019-06-30 19:37:46,653 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 19:37:46,659 - octoprint.plugins.excluderegion - INFO - Event received: event=FileSelected payload={'origin': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'user': 'dummy', 'size': None, 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:37:46,659 - octoprint.plugins.excluderegion - INFO - File selected, resetting internal state
2019-06-30 19:37:46,675 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-06-30 19:37:46,682 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Starting', 'state_id': 'STARTING'}
2019-06-30 19:37:46,692 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 19:37:46,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:46,756 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-06-30 19:37:46,791 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
2019-06-30 19:37:46,810 - octoprint.plugins.discordremote - INFO - Received event: printing_started
2019-06-30 19:37:48,234 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintStarted payload={'origin': 'local', 'timeremaining': '10 hours and 30 minutes', 'user': 'dummy', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': '0 seconds'}
2019-06-30 19:37:48,236 - octoprint.plugins.excluderegion - INFO - Printing started
2019-06-30 19:37:48,271 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'local', 'throttled_now': True, 'throttled_mask': 131074, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_past': True}
2019-06-30 19:37:48,534 - octoprint.plugins.octorant - ERROR - printing_started: ConnectionError on: 'http://10.0.1.210:8081/?action=snapshot'
2019-06-30 19:37:49,026 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Printing', 'state_id': 'PRINTING'}
2019-06-30 19:37:49,187 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131074, 'current_overheat': True, 'past_issue': True, 'past_overheat': True, 'current_issue': True, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:37:49,509 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.84
2019-06-30 19:37:49,789 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:37:50,045 - octoprint.plugins.tracking - INFO - Sent tracking event system_throttled, payload: {'throttled_mask': 131074, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': True, 'throttled_now': True, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:38:03,868 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:38:03,995 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:38:44,914 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:38:45,028 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:39:25,960 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:39:26,079 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:40:07,006 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:40:07,112 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:40:29,002 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 19:40:31,247 - octoprint.plugins.excluderegion - INFO - Event received: event=Home payload=None
2019-06-30 19:40:33,288 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-06-30 19:40:48,053 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:40:48,165 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:40:58,557 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-06-30 19:41:03,158 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-06-30 19:41:03,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:41:03,180 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-06-30 19:41:03,185 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelling payload={'origin': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:41:03,190 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:41:03,196 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:41:03,205 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:41:03,211 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Cancelling', 'state_id': 'CANCELLING'}
2019-06-30 19:41:03,236 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': (u'/home/pi/.octoprint/uploads', u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'), 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:41:03,272 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: None
2019-06-30 19:41:03,418 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:41:03,430 - octoprint.plugins.discordremote - INFO - Received event: printing_cancelled
2019-06-30 19:41:04,253 - octoprint.plugins.tracking - INFO - Sent tracking event print_cancelled, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 196, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:41:04,905 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:41:04,915 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-06-30 19:41:04,960 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-06-30 19:41:05,639 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelled payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 196.59707689099997, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:41:05,640 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:41:05,657 - octoprint.plugins.octorant - ERROR - printing_cancelled: ConnectionError on: 'http://10.0.1.210:8081/?action=snapshot'
2019-06-30 19:41:06,387 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131072, 'current_overheat': False, 'past_issue': True, 'past_overheat': True, 'current_issue': False, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:41:06,397 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterReset payload={'idle': False}
2019-06-30 19:41:06,412 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataStatisticsUpdated payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'storage': 'local'}
2019-06-30 19:41:06,723 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:41:06,727 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintFailed payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 196.59707689099997, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:41:06,735 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:41:06,747 - octoprint.plugins.printhistory - INFO - Can't parse additional parameters from /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:41:07,046 - octoprint.plugins.discordremote - INFO - Received event: printer_state_operational
2019-06-30 19:41:07,277 - octoprint.plugins.tracking - INFO - Sent tracking event system_unthrottled, payload: {'throttled_mask': 131072, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': False, 'throttled_now': False, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:41:08,247 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Operational', 'state_id': 'OPERATIONAL'}
2019-06-30 19:41:08,260 - octoprint.plugins.tracking - INFO - Sent tracking event print_failed, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 196, 'reason': 'cancelled', 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:41:09,155 - octoprint.server.util.flask - INFO - Passively logging in user _api from 10.0.1.84
2019-06-30 19:41:24,994 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-06-30 19:41:24,999 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Starting', 'state_id': 'STARTING'}
2019-06-30 19:41:25,011 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 19:41:25,041 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:41:25,067 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
2019-06-30 19:41:25,069 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-06-30 19:41:25,092 - octoprint.plugins.discordremote - INFO - Periodic thread joined.
2019-06-30 19:41:25,100 - octoprint.plugins.discordremote - INFO - Received event: printing_started
2019-06-30 19:41:25,950 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'local', 'throttled_now': False, 'throttled_mask': 131072, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_past': True}
2019-06-30 19:41:27,551 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintStarted payload={'origin': 'local', 'timeremaining': '10 hours and 30 minutes', 'user': 'dummy', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': '0 seconds'}
2019-06-30 19:41:27,553 - octoprint.plugins.excluderegion - INFO - Printing started
2019-06-30 19:41:27,565 - octoprint.plugins.octorant - ERROR - printing_started: ConnectionError on: 'http://10.0.1.210:8081/?action=snapshot'
2019-06-30 19:41:28,246 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Printing', 'state_id': 'PRINTING'}
2019-06-30 19:41:29,123 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:41:29,228 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:42:10,169 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:42:10,269 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:42:17,221 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 19:42:23,769 - octoprint.plugins.excluderegion - INFO - Event received: event=Home payload=None
2019-06-30 19:42:24,746 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 19:42:44,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.4, 'old': None}
2019-06-30 19:42:44,752 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.3, 'old': 0.4}
2019-06-30 19:42:51,214 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:42:51,324 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:42:55,041 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.3}
2019-06-30 19:43:12,789 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.8, "feedRate": 2100.0, "originalCommand": "G1 E-0.80000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.80000 F2100.00000']
2019-06-30 19:43:12,808 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.6, 'old': 0.2}
2019-06-30 19:43:12,833 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.6}
2019-06-30 19:43:12,840 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:32,260 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:43:32,358 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:43:40,546 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:40,548 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:40,567 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:40,663 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:40,719 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:40,719 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:50,279 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:50,280 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:50,307 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:50,345 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:50,354 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:50,355 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:53,127 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:53,129 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:53,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:53,188 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:53,195 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:53,197 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:56,094 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:56,094 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:56,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:56,152 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:56,167 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:56,168 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:58,982 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:59,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:59,042 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:59,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:44:13,309 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:44:13,401 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:44:24,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:44:24,636 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:44:24,656 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:44:24,703 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:44:26,203 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:44:26,207 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:44:54,358 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:44:54,450 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:44:55,374 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:44:55,379 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:44:55,409 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:44:56,400 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:44:56,411 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:44:56,412 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:45:08,946 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:45:08,947 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:45:08,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:45:09,973 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:45:10,009 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:45:10,011 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:45:35,403 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:45:35,499 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:45:46,305 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:45:46,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:45:46,336 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:45:46,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:45:47,297 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:45:47,298 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:46:15,206 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.84
2019-06-30 19:46:15,210 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:46:16,443 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:46:16,539 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:46:53,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:46:53,387 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:46:53,410 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:46:54,414 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:46:54,449 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:46:54,451 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:46:57,489 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:46:57,595 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:47:34,092 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:47:34,093 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:47:34,148 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:47:34,422 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:47:34,580 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:47:34,581 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:47:38,537 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:47:38,682 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:48:19,581 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:48:19,678 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:48:42,489 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:42,490 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:42,545 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:42,883 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:43,098 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:43,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:46,810 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:46,815 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:46,838 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:46,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:46,883 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:46,885 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:49,675 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:49,676 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:49,696 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:49,733 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:49,745 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:49,746 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:52,666 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:52,667 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:52,691 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:52,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:52,736 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:52,737 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:55,550 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:55,571 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:55,608 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:55,617 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:49:00,636 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:49:00,732 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:49:21,199 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:49:21,200 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:49:21,225 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:49:21,269 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:49:22,777 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:49:22,778 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:49:41,682 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:49:41,777 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:49:51,947 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:49:51,948 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:49:51,967 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:49:52,969 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:49:52,979 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:49:52,980 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:50:05,534 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:50:05,534 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:50:05,555 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:50:06,546 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:50:07,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:50:07,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:50:22,729 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:50:22,825 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:50:42,874 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:50:42,875 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:50:42,897 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:50:42,932 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:50:43,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:50:43,815 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:51:03,775 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:51:03,870 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:51:24,173 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:51:39,756 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 920}
2019-06-30 19:51:44,821 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:51:44,940 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:51:49,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:51:49,920 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:51:49,968 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:51:50,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:51:51,017 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:51:51,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:52:25,874 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:52:25,973 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:52:30,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:52:30,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:52:30,716 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:52:30,991 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:52:31,188 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:52:31,189 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:06,925 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:53:07,025 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:53:39,056 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:39,057 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:39,113 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:39,448 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:39,666 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:39,667 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:43,696 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:43,698 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:43,725 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:43,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:43,770 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:43,771 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:46,613 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:46,614 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:46,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:46,666 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:46,673 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:46,675 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:47,978 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:53:48,073 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:53:49,566 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:49,567 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:49,591 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:49,625 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:49,636 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:49,637 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:52,446 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:52,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:52,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:52,549 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:54:18,116 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:54:18,119 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:54:18,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:54:18,169 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:54:18,916 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:54:18,918 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:54:20,243 - octoprint.server.api.system - INFO - Performing command for custom:streamon
2019-06-30 19:54:22,098 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.132
2019-06-30 19:54:22,102 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:54:25,280 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 19:54:25,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:54:25,591 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 19:54:28,574 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 19:54:29,094 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:54:29,178 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:54:48,773 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:54:48,774 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:54:48,827 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:54:49,829 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:54:49,849 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:54:49,850 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:55:02,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:55:02,387 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:55:02,407 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:55:03,392 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:55:03,427 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:55:03,431 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:55:10,152 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:55:10,252 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:55:38,767 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:55:38,769 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:55:39,708 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:55:39,740 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:55:40,643 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:55:40,644 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:55:51,198 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:55:51,293 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:56:32,245 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:56:32,340 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:56:46,613 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:56:46,614 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:56:46,642 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:56:47,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:56:47,675 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:56:47,676 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:57:13,289 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:57:13,388 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:57:27,247 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:57:27,250 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:57:27,292 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:57:27,563 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:57:27,718 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:57:27,721 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:57:54,333 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:57:54,469 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:58:31,097 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-06-30 19:58:31,113 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:58:31,121 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-06-30 19:58:31,126 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:58:31,141 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelling payload={'origin': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:58:31,148 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:58:31,151 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:58:31,164 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Cancelling', 'state_id': 'CANCELLING'}
2019-06-30 19:58:31,203 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': (u'/home/pi/.octoprint/uploads', u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'), 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:58:31,214 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: None
2019-06-30 19:58:31,355 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:58:31,361 - octoprint.plugins.discordremote - INFO - Received event: printing_cancelled
2019-06-30 19:58:32,186 - octoprint.plugins.tracking - INFO - Sent tracking event print_cancelled, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 1026, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:58:33,036 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:58:33,044 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-06-30 19:58:33,110 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-06-30 19:58:33,214 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelled payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 1026.2268927240002, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:58:33,215 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:58:33,791 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterReset payload={'idle': False}
2019-06-30 19:58:33,803 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataStatisticsUpdated payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'storage': 'local'}
2019-06-30 19:58:33,854 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:58:33,866 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintFailed payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 1026.2268927240002, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:58:33,872 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:58:33,881 - octoprint.plugins.printhistory - INFO - Can't parse additional parameters from /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:58:34,000 - octoprint.plugins.discordremote - INFO - Received event: printer_state_operational
2019-06-30 19:58:34,673 - octoprint.plugins.tracking - INFO - Sent tracking event print_failed, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 1026, 'reason': 'cancelled', 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:58:34,924 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Operational', 'state_id': 'OPERATIONAL'}
2019-06-30 19:58:35,388 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 22, "op": 1}
2019-06-30 19:58:35,495 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:59:16,431 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 23, "op": 1}
2019-06-30 19:59:16,519 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:59:57,475 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 24, "op": 1}
2019-06-30 19:59:57,568 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:00:36,336 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.132
2019-06-30 20:00:36,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.132'}
2019-06-30 20:00:37,496 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 20:00:37,785 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 20:00:37,803 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 20:00:38,990 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 25, "op": 1}
2019-06-30 20:00:38,992 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:00:41,555 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 20:00:48,850 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-06-30 20:00:48,857 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Starting', 'state_id': 'STARTING'}
2019-06-30 20:00:48,866 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 20:00:48,874 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 20:00:48,893 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-06-30 20:00:48,952 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
2019-06-30 20:00:48,957 - octoprint.plugins.discordremote - INFO - Periodic thread joined.
2019-06-30 20:00:48,961 - octoprint.plugins.discordremote - INFO - Received event: printing_started
2019-06-30 20:00:49,796 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'local', 'throttled_now': False, 'throttled_mask': 131072, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_past': True}
2019-06-30 20:00:50,573 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintStarted payload={'origin': 'local', 'timeremaining': '10 hours and 30 minutes', 'user': 'dummy', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'spent_formatted': '0:00:00', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'spent': 0, 'remaining_formatted': '10:30:00', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': '0 seconds', 'remaining': 37800}
2019-06-30 20:00:50,573 - octoprint.plugins.excluderegion - INFO - Printing started
2019-06-30 20:00:51,357 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Printing', 'state_id': 'PRINTING'}
2019-06-30 20:00:51,906 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.84
2019-06-30 20:00:52,245 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.84'}
2019-06-30 20:00:53,235 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.84
2019-06-30 20:00:53,241 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.84'}
2019-06-30 20:01:20,046 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:01:20,159 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:01:49,729 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 20:02:01,096 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:02:01,193 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:02:03,120 - octoprint.plugins.excluderegion - INFO - Event received: event=Home payload=None
2019-06-30 20:02:42,146 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:02:42,243 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:03:02,319 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.4, 'old': None}
2019-06-30 20:03:02,346 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.3, 'old': 0.4}
2019-06-30 20:03:12,712 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.3}
2019-06-30 20:03:23,193 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:03:23,283 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:03:30,430 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.8, "feedRate": 2100.0, "originalCommand": "G1 E-0.80000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.80000 F2100.00000']
2019-06-30 20:03:30,453 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.6, 'old': 0.2}
2019-06-30 20:03:30,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.6}
2019-06-30 20:03:30,479 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:03:58,159 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:03:58,161 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:03:58,180 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:03:58,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:03:58,357 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:03:58,360 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:04,244 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:04:04,344 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:04:07,922 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:07,924 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:07,946 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:08,009 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:08,014 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:08,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:10,764 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:10,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:10,799 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:10,826 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:10,837 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:10,839 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:13,738 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:13,739 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:13,762 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:13,798 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:13,840 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:13,841 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:16,617 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:16,641 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:16,679 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:16,687 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:42,285 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:42,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:42,306 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:42,455 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:43,087 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:43,089 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:45,293 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:04:45,381 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:05:12,976 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:05:12,978 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:05:13,024 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:05:14,039 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:05:14,048 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:05:14,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:05:26,339 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:05:26,436 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:05:26,593 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:05:26,594 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:05:26,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:05:27,659 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:05:28,700 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:05:28,702 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:06:03,010 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:06:03,011 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:06:03,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:06:03,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:06:04,886 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:06:04,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:06:07,377 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:06:07,470 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:06:24,174 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:06:39,749 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1820}
2019-06-30 20:06:48,425 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:06:48,520 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:07:11,027 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:07:11,029 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:07:11,049 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:07:12,095 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:07:13,153 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:07:13,154 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:07:29,472 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:07:29,573 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:07:51,778 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:07:51,780 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:07:52,012 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:07:52,060 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:07:52,222 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:07:52,223 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:08:10,521 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:08:10,623 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:08:51,568 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:08:51,666 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:09:00,134 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:00,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:00,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:00,520 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:00,739 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:00,741 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:04,447 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:04,449 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:04,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:04,509 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:04,521 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:04,521 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:07,315 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:07,317 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:07,339 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:07,381 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:07,390 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:07,393 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:10,305 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:10,306 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:10,329 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:10,367 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:10,379 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:10,381 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:13,186 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:13,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:13,242 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:13,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:32,616 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:09:32,713 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:09:38,843 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:38,845 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:38,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:38,914 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:40,428 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:40,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:10:09,588 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:10:09,590 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:10:09,610 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:10:10,610 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:10:10,625 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:10:10,627 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:10:13,663 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:10:13,761 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:10:23,173 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:10:23,175 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:10:23,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:10:24,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:10:24,226 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:10:24,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:10:54,707 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 29, "op": 1}
2019-06-30 20:10:54,798 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:11:00,517 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:11:00,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:11:00,537 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:11:00,560 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:11:01,458 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:11:01,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:11:35,754 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 34, "op": 1}
2019-06-30 20:11:35,854 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:12:07,596 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:12:07,598 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:12:07,625 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:12:08,625 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:12:08,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:12:08,661 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:12:16,796 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 34, "op": 1}
2019-06-30 20:12:16,935 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:12:48,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:12:48,304 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:12:48,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:12:48,633 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:12:48,789 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:12:48,790 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:12:57,843 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 34, "op": 1}
2019-06-30 20:12:57,945 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:13:38,892 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:13:38,993 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:13:56,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:13:56,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:13:56,755 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:13:57,319 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:13:57,327 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:13:57,329 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:01,341 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:01,343 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:01,364 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:01,400 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:01,414 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:01,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:04,248 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:04,250 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:04,270 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:04,296 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:04,306 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:04,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:07,206 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:07,207 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:07,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:07,263 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:07,276 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:07,277 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:10,085 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:10,111 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:10,146 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:10,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:19,939 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:14:20,037 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:14:35,736 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:35,738 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:35,763 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:35,808 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:36,559 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:36,560 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:15:00,986 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:15:01,077 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:15:06,436 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:15:06,437 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:15:06,492 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:15:07,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:15:07,534 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:15:07,535 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:15:20,072 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:15:20,074 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:15:20,097 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:15:21,085 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:15:21,120 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:15:21,122 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:15:42,032 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:15:42,141 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:15:56,479 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:15:56,481 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:15:57,426 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:15:57,478 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:15:58,355 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:15:58,355 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:16:23,078 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:16:23,175 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:17:04,125 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:17:04,226 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:17:04,458 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:17:04,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:17:04,504 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:17:05,520 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:17:05,555 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:17:05,556 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:17:45,174 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:17:45,194 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:17:45,196 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:17:45,251 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:17:45,278 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:17:45,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:17:45,702 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:17:45,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:18:26,222 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:18:26,319 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:18:53,590 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:18:53,592 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:18:53,648 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:18:54,088 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:18:54,202 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:18:54,203 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:18:57,795 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:18:57,799 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:18:57,822 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:18:57,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:18:57,867 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:18:57,869 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:00,656 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:00,657 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:00,685 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:00,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:00,731 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:00,732 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:03,627 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:03,628 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:03,653 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:03,688 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:03,697 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:03,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:06,498 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:06,500 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:06,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:06,567 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:06,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:06,576 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:07,271 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:19:07,372 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:19:32,175 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:32,177 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:32,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:32,251 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:32,996 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:32,999 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:48,313 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:19:48,408 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:20:02,883 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:20:02,884 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:20:02,932 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:20:03,945 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:20:03,954 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:20:03,955 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:20:16,494 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:20:16,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:20:16,517 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:20:17,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:20:18,605 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:20:18,607 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:20:29,362 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 36, "op": 1}
2019-06-30 20:20:29,464 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:20:52,916 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:20:52,918 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:20:53,859 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:20:53,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:20:54,792 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:20:54,796 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:21:10,406 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 36, "op": 1}
2019-06-30 20:21:10,512 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:21:24,175 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:21:39,722 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 2720}
2019-06-30 20:21:51,457 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 37, "op": 1}
2019-06-30 20:21:51,552 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:22:00,929 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:22:00,930 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:22:00,953 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:22:02,001 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:22:03,052 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:22:03,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:22:32,509 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:22:32,607 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:22:41,631 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:22:41,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:22:41,688 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:22:42,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:22:42,135 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:22:42,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:23:13,557 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:23:13,664 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:23:50,034 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:23:50,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:23:50,089 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:23:50,660 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 0.8}
2019-06-30 20:23:50,667 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:23:50,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:23:54,603 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:23:54,706 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:24:04,077 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:24:04,078 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:04,099 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:04,146 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:04,168 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:24:04,169 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:09,791 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.003050000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:09,810 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:09,829 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:09,841 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:12,036 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:12,061 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:12,086 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:12,096 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:14,335 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:24:14,336 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:14,355 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:14,383 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:14,392 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:24:14,393 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:16,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:24:16,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:16,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:16,678 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:16,686 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:24:16,687 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:28,265 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:28,283 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:28,992 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:30,379 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:35,655 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:24:35,749 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:25:05,221 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:25:05,223 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:25:05,270 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:25:05,417 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:25:05,480 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:25:05,481 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:25:16,701 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:25:16,809 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:25:46,526 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:25:46,527 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:25:47,007 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:25:47,033 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:25:47,041 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:25:47,042 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:25:53,366 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:25:53,369 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:25:53,409 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:25:53,887 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:25:53,895 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:25:53,897 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:25:57,747 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:25:57,846 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:26:18,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:26:18,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:19,135 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:19,155 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:19,163 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:26:19,165 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:38,791 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:26:38,887 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:26:40,509 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:26:40,510 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:40,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:40,739 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:40,833 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:26:40,835 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:43,667 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.003050000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:43,686 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:43,717 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:43,725 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:45,944 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:45,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:45,993 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:46,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:48,238 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:48,258 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:48,287 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:48,293 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:50,530 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:26:50,532 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:50,549 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:50,577 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:50,584 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:26:50,585 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:27:02,175 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:27:02,187 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:27:02,888 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:27:03,584 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:27:19,855 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:27:19,958 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:27:39,125 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:27:39,126 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:27:39,173 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:27:39,322 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:27:39,383 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:27:39,386 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:28:00,900 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:28:00,993 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:28:20,421 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:28:20,426 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:28:20,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:28:20,919 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:28:20,923 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:28:20,926 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:28:27,295 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:28:27,296 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:28:27,319 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:28:27,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:28:27,787 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:28:27,788 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:28:41,949 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:28:42,047 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:28:52,559 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:28:52,562 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:28:53,026 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:28:53,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:28:53,062 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:28:53,065 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:14,408 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:29:14,409 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:14,461 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:14,637 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:14,732 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:29:14,733 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:17,538 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.006019999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:17,557 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:17,582 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:17,595 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:19,819 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:19,831 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:19,861 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:19,868 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:22,114 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:29:22,117 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:22,135 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:22,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:22,168 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:29:22,169 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:23,003 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:29:23,094 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:29:24,411 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:29:24,412 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:24,433 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:24,456 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:24,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:29:24,466 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:36,056 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:36,086 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:36,765 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:38,160 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:30:04,050 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:30:04,148 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:30:13,001 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:30:13,002 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:30:13,050 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:30:13,196 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:30:13,259 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:30:13,260 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:30:45,096 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:30:45,187 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:30:54,295 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:30:54,296 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:30:54,768 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:30:54,792 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:30:54,799 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:30:54,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:01,135 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:31:01,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:01,188 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:01,659 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:01,666 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:31:01,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:26,146 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:31:26,249 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:31:26,427 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:31:26,429 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:26,901 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:26,922 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:26,928 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:31:26,930 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:48,285 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:31:48,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:48,334 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:48,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:48,609 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:31:48,610 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:51,274 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.005909999999999999, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:51,297 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:51,322 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:51,332 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:53,601 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:53,620 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:53,649 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:53,657 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:55,907 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:55,927 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:55,955 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:55,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:58,268 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.006030000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:58,279 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:58,295 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:58,300 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:32:07,192 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:32:07,286 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:32:09,893 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:32:09,915 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:32:10,588 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:32:11,281 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:32:46,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:32:46,824 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:32:46,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:32:47,092 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:32:47,099 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:32:47,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:32:48,242 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:32:48,343 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:33:28,126 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:33:28,127 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:33:28,604 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:33:28,623 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:33:28,630 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:33:28,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:33:29,286 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:33:29,380 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:33:34,969 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:33:34,970 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:33:35,014 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:33:35,489 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:33:35,497 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:33:35,499 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:00,269 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:00,270 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:00,737 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:34:00,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:34:00,763 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:00,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:10,329 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:34:10,430 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:34:22,162 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:22,162 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:22,305 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:34:22,344 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.1}
2019-06-30 20:34:22,443 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:22,444 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:35,023 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:35,024 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:35,042 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:35,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:35,088 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:35,088 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:40,616 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:40,617 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:40,633 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:40,661 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:40,669 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:40,671 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:42,836 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:42,837 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:42,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:42,881 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:42,889 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:42,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:45,080 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01413, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:45,098 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:45,124 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:45,130 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:47,497 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:47,497 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:47,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:47,540 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:47,547 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:47,547 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:51,372 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:34:51,470 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:34:53,474 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:53,477 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:53,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:53,507 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:53,512 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:53,513 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:35:01,478 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:35:01,479 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:35:01,508 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:35:01,522 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:35:01,899 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:35:01,901 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:35:32,420 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:35:32,521 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:35:33,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:35:33,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:35:33,168 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:35:33,644 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:35:33,678 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:35:33,679 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:35:58,801 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:35:58,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:35:58,822 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:35:58,844 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:35:59,317 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:35:59,318 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:36:06,561 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 20:36:13,469 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:36:13,567 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:36:15,500 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:36:15,502 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:36:15,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:36:16,270 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:36:16,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:36:16,649 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:36:24,177 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:36:39,757 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 3620}
2019-06-30 20:36:52,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:36:52,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:36:52,762 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:36:52,781 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:36:52,789 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:36:52,790 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:36:54,515 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:36:54,619 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:37:14,266 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:14,267 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:14,323 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:14,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:14,657 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:14,659 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:17,448 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:17,449 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:17,469 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:17,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:17,502 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:17,504 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:19,649 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:19,650 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:19,668 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:19,820 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:19,825 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:19,826 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:21,872 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:21,874 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:21,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:21,913 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:21,922 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:21,923 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:24,339 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01878, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:24,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:24,385 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:24,391 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:30,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:30,334 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:30,356 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:30,378 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:30,381 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:30,383 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:35,574 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:37:35,673 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:37:38,255 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:38,257 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:38,276 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:38,310 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:38,718 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:38,721 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:09,967 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:38:09,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:38:09,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:38:10,464 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:38:10,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:38:10,498 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:16,621 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:38:16,821 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:38:35,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:38:35,611 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:38:35,637 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:38:35,659 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:38:36,129 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:38:36,131 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:52,694 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:38:52,696 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:38:52,721 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:38:53,083 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:38:53,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:38:53,465 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:57,671 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:38:57,770 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:39:29,087 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:29,089 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:29,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:29,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:29,606 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:29,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:38,714 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:39:38,813 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:39:51,073 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:51,075 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:51,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:51,332 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:51,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:51,467 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:54,237 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:54,238 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:54,254 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:54,281 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:54,286 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:54,287 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:56,440 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:56,441 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:56,458 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:56,485 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:56,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:56,497 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:58,677 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:58,678 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:58,689 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:58,712 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:58,718 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:58,719 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:01,114 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:01,114 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:01,133 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:01,156 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:01,162 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:01,163 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:05,612 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:05,613 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:05,624 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:06,153 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:06,695 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:06,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:19,760 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:40:19,859 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:40:29,971 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:29,972 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:30,007 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:30,462 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:30,890 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:30,893 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:57,694 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:57,696 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:57,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:57,737 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:58,200 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:58,201 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:41:00,804 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:41:00,895 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:41:14,386 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:41:14,388 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:41:14,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:41:15,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:41:15,531 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:41:15,531 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:41:41,851 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:41:41,956 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:41:51,154 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:41:51,157 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:41:51,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:41:51,663 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:41:51,670 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:41:51,673 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:22,903 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:42:22,996 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:42:25,070 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:25,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:25,109 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:25,597 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:25,607 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:25,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:30,509 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:30,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:30,526 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:30,550 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:30,558 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:30,559 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:32,742 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:32,743 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:32,758 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:32,783 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:32,795 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:32,796 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:34,970 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:34,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:34,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:35,011 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:35,019 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:35,019 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:37,439 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:37,440 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:37,453 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:37,476 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:37,485 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:37,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:41,945 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:41,946 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:41,962 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:43,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:43,630 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:43,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:43:03,952 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:43:04,048 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:43:06,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:43:06,310 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:43:06,345 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:43:06,804 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:43:07,314 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:43:07,317 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:43:34,032 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:43:34,032 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:43:34,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:43:34,077 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:43:34,550 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:43:34,551 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:43:45,003 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:43:45,101 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:43:51,115 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:43:51,116 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:43:51,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:43:51,503 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:43:51,885 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:43:51,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:44:26,050 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:44:26,146 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:44:27,520 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:44:27,521 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:44:27,996 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:44:28,018 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:44:28,026 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:44:28,027 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:01,451 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:01,454 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:01,478 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:45:01,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.4}
2019-06-30 20:45:01,972 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:01,975 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:07,095 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:45:07,104 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:07,105 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:07,120 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:07,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:07,144 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:07,145 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:07,187 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:45:09,311 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:09,312 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:09,332 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:09,358 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:09,365 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:09,366 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:11,556 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014080000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:11,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:11,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:11,606 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:13,753 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:13,755 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:13,774 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:13,829 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:13,842 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:13,846 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:19,766 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:19,767 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:19,797 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:19,816 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:19,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:19,825 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:27,782 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:27,783 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:27,803 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:27,819 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:28,216 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:28,217 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:48,141 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:45:48,229 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:45:53,322 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:53,323 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:53,347 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:53,367 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:53,847 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:53,848 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:59,839 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:59,842 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:59,880 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:00,399 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:00,409 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:00,412 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:19,841 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:19,842 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:19,870 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:19,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:20,405 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:20,408 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:26,345 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:26,351 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:26,387 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:26,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:26,898 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:26,900 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:29,186 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:46:29,282 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:46:46,358 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:46,361 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:46,382 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:46,407 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:46,883 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:46,884 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:52,896 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:52,901 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:53,396 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:53,421 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:53,429 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:53,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:10,231 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:47:10,337 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:47:12,892 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:12,894 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:12,917 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:12,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:13,409 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:13,410 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:19,302 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:19,303 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:19,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:19,825 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:19,831 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:19,833 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:43,987 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:43,990 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:44,041 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:44,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:44,139 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:44,142 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:46,743 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:46,743 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:46,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:46,789 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:46,795 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:46,796 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:48,946 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:48,948 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:48,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:48,987 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:49,029 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:49,030 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:51,167 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:51,168 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:51,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:51,212 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:51,219 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:51,219 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:51,280 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:47:51,374 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:47:53,412 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014110000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:53,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:53,457 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:53,465 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:59,380 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:59,381 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:59,401 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:59,413 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:59,418 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:59,419 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:07,374 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:07,375 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:07,386 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:07,412 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:07,846 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:48:07,847 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:32,329 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:48:32,420 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:48:32,954 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:32,955 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:32,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:33,005 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:33,483 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:48:33,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:39,477 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:39,478 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:39,515 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:40,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:40,034 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:48:40,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:59,473 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:59,474 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:59,510 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:59,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:59,999 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:00,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:05,979 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:05,980 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:06,025 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:06,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:06,536 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:06,537 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:13,379 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:49:13,476 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:49:25,990 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:25,992 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:26,013 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:26,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:26,518 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:26,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:32,539 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:32,541 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:33,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:33,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:33,063 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:33,064 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:52,524 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:52,526 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:52,545 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:52,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:53,041 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:53,042 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:54,423 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:49:54,549 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:49:58,934 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:58,935 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:59,432 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:59,455 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:59,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:59,467 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:23,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:23,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:23,671 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:23,760 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:23,769 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:23,769 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:26,348 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:26,349 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:26,366 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:26,390 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:26,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:26,407 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:28,548 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:28,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:28,565 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:28,589 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:28,601 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:28,603 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:30,809 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014080000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:30,827 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:30,855 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:30,863 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:33,005 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:33,007 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:33,021 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:33,051 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:33,058 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:33,059 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:35,477 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:50:35,617 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:50:38,981 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:38,981 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:38,994 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:39,010 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:39,014 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:39,015 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:46,977 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:46,979 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:47,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:47,031 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:47,888 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:47,890 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:12,551 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:12,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:12,572 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:12,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:13,062 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:13,063 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:16,524 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:51:16,693 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:51:19,059 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:19,062 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:19,107 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:19,612 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:19,620 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:19,622 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:24,179 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:51:39,057 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:39,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:39,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:39,110 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:39,580 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:39,581 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:39,764 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 4520}
2019-06-30 20:51:45,561 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:45,562 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:45,610 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:46,107 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:46,115 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:46,116 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:57,577 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:51:57,674 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:52:05,573 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:05,574 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:05,594 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:05,617 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:52:06,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:06,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:12,115 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:12,116 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:12,619 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:12,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:12,650 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:12,656 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:52:32,096 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:32,097 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:32,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:32,145 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:52:32,667 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:32,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:38,519 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:38,522 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:38,624 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:52:38,747 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:52:39,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:39,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:39,067 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:39,081 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:03,207 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:03,208 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:03,401 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:03,427 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:03,435 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:03,436 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:05,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:05,816 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:05,832 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:05,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:05,864 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:05,866 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:08,049 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:08,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:08,069 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:08,096 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:08,104 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:08,105 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:10,293 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:10,294 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:10,308 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:10,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:10,339 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:10,340 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:12,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:12,498 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:12,520 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:12,548 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:12,555 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:12,555 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:18,488 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:18,489 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:18,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:18,523 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:18,528 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:18,528 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:19,674 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:53:19,771 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:53:26,473 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:26,474 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:26,500 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:26,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:26,944 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:26,945 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:52,037 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:52,039 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:52,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:52,081 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:52,599 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:52,600 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:58,549 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:58,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:58,591 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:59,099 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:59,107 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:59,108 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:00,724 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:54:00,820 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:54:18,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:18,553 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:18,578 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:18,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:19,083 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:19,085 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:25,059 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:25,060 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:25,105 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:25,605 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:25,607 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:25,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:41,772 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:54:41,873 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:54:45,072 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:45,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:45,093 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:45,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:45,603 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:45,604 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:51,617 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:51,620 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:52,114 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:52,141 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:52,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:52,151 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:11,601 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:11,602 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:11,626 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:55:11,645 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:55:12,125 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:12,126 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:18,018 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:18,019 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:18,515 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:55:18,542 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:55:18,551 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:18,553 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:22,824 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:55:22,921 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:55:42,711 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:42,712 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:42,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:55:42,849 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 1.7}
2019-06-30 20:55:42,857 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:42,859 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:45,618 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:45,620 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:45,642 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:45,667 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:45,675 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:45,676 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:47,842 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:47,843 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:47,862 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:47,885 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:47,891 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:47,891 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:50,083 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014100000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:50,099 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:50,123 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:50,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:52,360 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:52,361 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:52,374 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:52,394 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:52,398 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:52,399 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:58,310 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:58,311 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:58,329 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:58,344 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:58,346 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:58,349 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:03,876 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:56:03,974 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:56:06,330 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:06,330 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:06,354 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:06,377 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:06,811 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:06,812 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:14,059 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:14,060 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:14,111 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:14,174 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:14,218 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:14,221 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:21,992 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:21,994 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:22,016 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:22,061 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:22,066 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:22,068 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:24,584 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:24,597 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:24,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:24,658 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:25,424 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:25,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:25,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:25,499 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:29,654 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 20:56:33,239 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:33,240 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:33,256 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:33,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:33,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:33,305 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:34,158 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:34,161 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:34,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:34,221 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:34,228 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:34,230 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:35,226 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:35,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:35,245 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:35,295 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:35,301 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:35,301 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:44,930 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:56:45,026 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:56:45,581 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:45,584 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:45,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:45,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:45,641 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:45,643 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:46,981 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:47,004 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:47,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:47,028 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:47,862 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:47,873 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:47,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:47,900 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:48,984 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:49,002 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:49,030 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:49,035 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:50,025 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:50,026 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:50,037 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:50,092 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:50,096 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:50,097 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:52,721 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:52,723 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:52,746 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:52,776 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:52,784 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:52,787 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:54,908 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:54,908 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:54,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:54,954 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:54,962 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:54,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:57,128 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:57,129 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:57,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:57,174 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:57,181 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:57,182 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:59,374 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:59,398 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:59,422 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:59,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:05,367 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:05,368 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:05,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:05,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:05,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:05,413 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:13,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:13,405 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:13,424 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:13,449 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:13,869 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:13,870 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:21,136 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:21,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:21,185 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:21,247 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:21,263 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:21,264 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:25,981 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:57:26,076 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:57:29,054 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:29,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:29,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:29,123 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:29,131 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:29,132 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:31,580 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:31,594 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:31,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:31,651 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:32,422 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:32,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:32,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:32,488 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:40,223 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:40,224 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:40,235 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:40,268 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:40,278 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:40,279 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:41,131 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:41,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:41,160 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:41,178 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:41,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:41,183 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:42,214 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:42,215 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:42,235 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:42,267 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:42,272 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:42,273 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:52,542 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:52,543 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:52,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:52,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:52,606 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:52,607 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:53,959 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:53,990 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:54,006 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:54,014 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:54,831 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:54,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:54,879 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:54,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:55,955 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:55,975 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:55,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:56,003 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:56,985 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:56,986 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:56,997 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:57,027 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:57,038 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:57,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:00,085 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:00,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:00,103 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:00,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:00,168 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:00,168 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:02,289 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:02,291 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:02,306 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:02,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:02,343 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:02,344 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:04,583 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014100000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:04,595 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:04,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:04,614 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:06,791 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:06,792 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:06,803 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:06,817 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:06,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:06,823 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:07,037 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:58:07,131 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:58:12,752 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:12,753 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:12,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:12,796 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:12,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:12,799 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:20,813 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:20,814 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:20,833 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:20,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:21,246 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:21,247 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:28,502 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:28,503 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:28,556 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:28,617 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:28,631 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:28,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:36,479 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:36,483 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:36,499 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:36,546 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:36,554 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:36,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:39,004 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:39,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:39,068 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:39,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:39,830 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:39,849 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:39,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:39,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:47,612 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:47,619 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:47,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:47,662 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:47,665 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:47,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:48,084 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:58:48,177 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:58:48,511 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:48,514 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:48,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:48,559 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:48,564 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:48,567 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:49,562 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:49,563 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:49,586 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:49,633 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:49,640 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:49,641 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:59,910 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:59,911 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:59,935 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:59,963 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:59,967 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:59,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:01,319 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:01,340 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:01,360 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:01,365 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:02,199 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:02,214 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:02,226 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:02,234 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:03,343 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:03,362 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:03,384 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:03,392 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:04,355 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:04,356 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:04,377 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:04,541 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:04,548 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:04,549 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:07,085 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:07,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:07,103 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:07,128 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:07,135 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:07,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:09,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:09,304 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:09,324 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:09,351 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:09,367 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:09,369 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:11,527 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:11,527 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:11,548 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:11,577 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:11,584 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:11,585 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:13,752 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:13,753 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:13,777 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:13,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:13,810 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:13,811 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:19,741 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:19,742 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:19,761 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:19,782 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:19,787 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:19,789 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:27,818 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:27,819 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:27,831 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:27,844 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:28,252 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:28,252 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:29,142 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:59:29,231 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:59:35,509 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:35,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:35,559 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:35,627 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:35,638 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:35,639 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:43,407 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:43,408 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:43,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:43,477 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:43,486 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:43,487 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:45,973 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:45,984 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:46,017 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:46,044 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:46,805 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:46,817 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:46,836 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:46,859 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:54,577 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:54,578 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:54,593 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:54,635 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:54,639 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:54,640 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:55,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:55,498 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:55,516 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:55,544 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:55,546 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:55,553 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:56,571 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:56,573 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:56,597 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:56,634 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:56,641 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:56,644 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:06,910 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:06,911 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:06,935 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:06,959 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:06,965 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:06,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:08,319 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:08,340 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:08,361 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:08,367 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:09,204 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:09,216 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:09,234 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:09,239 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:10,193 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:00:10,292 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:00:10,314 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:10,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:10,364 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:10,369 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:11,350 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:11,351 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:11,362 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:11,389 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.0}
2019-06-30 21:00:11,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:11,405 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:13,727 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02198, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:13,742 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:13,768 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:13,775 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:15,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:15,918 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:15,939 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:15,963 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:15,971 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:15,972 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:18,146 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:18,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:18,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:18,191 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:18,199 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:18,200 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:19,356 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:00:20,377 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:20,378 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:20,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:20,416 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:20,424 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:20,425 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:26,362 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:26,364 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:26,383 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:26,395 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:26,399 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:26,400 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:34,423 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:34,427 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:34,438 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:34,456 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:34,900 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:34,901 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:42,142 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:42,143 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:42,192 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:42,273 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:42,309 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:42,311 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:49,387 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:49,388 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:49,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:49,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:49,433 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:49,433 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:51,241 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:00:51,330 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:00:51,513 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:51,525 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:51,551 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:51,558 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:52,353 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:52,353 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:52,365 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:52,384 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:52,390 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:52,392 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:53,189 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:53,202 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:53,216 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:53,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:00,752 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:00,753 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:00,780 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:00,795 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:00,803 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:00,805 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:10,724 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:10,737 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:10,752 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:10,761 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:12,005 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:12,019 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:12,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:12,039 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:12,858 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:12,874 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:12,884 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:12,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:13,862 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:13,863 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:13,877 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:13,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:13,894 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:13,895 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:14,910 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:14,923 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:14,938 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:14,941 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:17,586 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:17,588 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:17,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:17,635 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:17,643 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:17,644 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:19,778 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:19,781 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:19,795 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:19,818 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:19,826 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:19,827 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:22,021 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:22,023 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:22,046 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:22,066 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:22,074 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:22,076 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:24,364 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:24,377 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:24,393 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:24,399 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:30,227 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:30,229 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:30,254 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:30,268 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:30,270 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:30,274 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:32,296 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:01:32,387 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:01:38,281 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:38,281 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:38,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:38,312 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:38,758 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:38,759 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:46,005 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:46,007 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:46,058 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:46,120 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:46,132 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:46,135 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:53,307 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:53,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:53,320 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:53,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:53,343 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:53,345 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:55,528 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:55,539 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:55,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:55,569 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:56,347 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:56,347 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:56,368 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:56,390 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:56,395 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:56,396 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:57,186 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:57,198 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:57,212 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:57,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:04,764 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:04,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:04,785 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:04,806 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:04,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:04,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:13,351 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:02:13,450 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:02:14,789 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:14,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:14,821 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:14,828 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:16,065 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:16,081 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:16,093 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:16,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:16,914 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:16,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:16,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:16,945 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:17,946 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:17,946 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:17,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:17,972 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:17,976 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:17,976 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:18,851 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:18,866 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:18,880 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:18,885 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:21,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:21,961 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:21,972 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:21,989 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:21,994 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:21,994 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:24,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:24,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:24,166 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:24,189 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:24,198 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:24,198 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:26,392 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:26,413 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:26,437 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:26,446 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:28,593 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:28,593 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:28,608 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:28,634 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:28,641 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:28,641 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:34,598 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:34,600 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:34,619 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:34,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:34,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:34,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:42,689 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:42,690 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:42,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:42,735 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:43,134 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:43,135 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:50,372 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:50,373 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:50,425 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:50,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:50,499 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:50,501 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:54,401 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:02:54,490 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:02:57,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:57,625 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:57,646 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:57,672 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:57,676 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:57,679 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:59,739 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:59,751 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:59,772 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:59,780 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:00,570 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:00,571 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:00,586 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:00,616 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:00,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:00,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:01,389 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:01,402 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:01,417 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:01,421 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:08,963 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:08,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:08,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:09,005 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:09,009 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:09,010 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:18,974 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:18,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:18,999 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:19,007 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:20,284 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:20,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:20,309 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:20,313 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:21,131 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:21,153 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:21,175 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:21,177 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:22,113 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:22,114 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:22,136 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:22,153 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:22,154 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:22,164 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:23,052 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:23,074 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:23,090 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:23,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:25,762 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:25,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:25,774 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:25,790 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:25,798 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:25,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:27,961 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:27,962 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:27,978 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:28,002 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:28,015 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:28,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:30,188 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:30,190 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:30,206 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:30,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:30,239 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:30,241 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:32,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:32,413 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:32,430 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:32,457 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:32,466 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:32,467 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:35,456 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:03:35,566 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:03:38,426 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:38,427 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:38,446 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:38,472 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:38,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:38,485 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:46,451 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:46,451 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:46,468 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:46,496 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:46,947 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:46,948 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:54,190 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:54,191 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:54,246 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:54,327 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:54,329 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:54,333 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:01,487 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:01,488 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:01,509 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:01,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:01,533 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:01,534 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:03,614 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:03,626 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:03,652 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:03,658 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:03,794 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:04:04,457 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:04,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:04,470 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:04,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:04,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:04,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:05,269 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:05,282 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:05,297 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:05,300 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:12,746 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:12,747 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:12,761 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:12,781 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:12,786 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:12,787 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:16,507 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:04:16,596 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:04:22,742 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:22,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:22,776 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:22,784 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:24,025 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:24,038 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:24,051 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:24,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:24,875 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:24,895 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:24,916 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:24,924 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:25,942 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:25,944 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:25,955 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:25,974 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:25,980 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:25,981 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:26,922 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:26,933 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:26,947 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.3}
2019-06-30 21:04:26,954 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:29,329 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:29,329 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:29,347 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:29,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:29,387 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:29,388 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:31,534 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:31,536 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:31,553 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:31,584 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:31,594 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:31,596 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:33,884 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018670000000000003, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:33,907 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:33,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:33,938 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:36,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:36,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:36,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:36,145 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:36,154 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:36,155 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:42,150 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:42,151 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:42,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:42,177 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:42,182 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:42,183 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:50,173 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:50,174 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:50,197 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:51,137 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:51,143 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:51,145 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:57,559 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:04:57,657 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:04:57,938 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:57,941 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:57,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:58,049 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:58,065 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:58,067 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:04,815 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:04,836 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:04,859 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:04,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:06,961 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:06,973 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:06,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:06,993 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:07,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:07,919 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:07,936 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:07,970 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:07,975 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:07,975 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:09,473 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:09,499 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:09,514 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:09,525 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:10,341 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:10,343 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:10,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:10,376 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:10,381 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:10,382 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:11,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:11,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:11,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:11,175 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:11,180 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:11,180 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:11,938 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:11,939 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:11,976 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:11,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:11,993 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:11,993 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:28,744 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:28,745 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:28,794 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:28,855 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:28,872 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:28,874 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:29,059 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:05:29,078 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:29,114 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:29,134 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:32,213 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:32,214 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:32,233 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:32,251 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:32,258 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:32,260 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:34,438 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:34,441 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:34,456 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:34,475 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:34,487 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:34,488 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:36,774 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:36,775 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:36,798 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:36,823 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:36,831 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:36,832 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:38,613 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:05:38,703 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:05:39,041 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:39,054 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:39,070 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:39,076 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:44,998 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:45,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:45,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:45,037 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:45,042 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:45,043 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:53,098 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:53,100 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:53,110 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:53,551 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:54,011 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:54,014 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:00,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:00,823 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:00,874 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:00,954 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:00,961 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:00,963 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:07,755 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:07,773 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:07,798 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:07,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:09,849 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:09,861 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:09,878 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:09,882 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:10,799 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:10,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:10,812 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:10,828 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:10,832 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:10,833 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:12,381 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:12,399 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:12,422 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:12,426 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:13,245 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:13,247 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:13,269 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:13,287 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:13,294 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:13,290 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:13,997 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:13,998 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:14,015 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:14,047 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:14,062 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:14,064 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:14,826 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:14,827 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:14,846 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:14,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:14,878 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:14,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:19,661 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:06:19,756 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:06:24,181 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 21:06:31,600 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:31,601 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:31,653 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:31,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:31,728 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:31,728 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:31,907 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:06:31,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:31,971 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:31,993 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:35,096 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:35,098 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:35,117 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:35,139 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:35,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:35,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:37,317 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:37,318 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:37,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:37,350 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:37,356 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:37,356 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:39,636 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:39,638 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:39,653 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:39,677 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:39,685 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:39,687 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:39,721 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 5420}
2019-06-30 21:06:41,877 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:41,893 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:41,922 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:41,929 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:47,881 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:47,883 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:47,896 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:47,943 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:47,948 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:47,949 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:55,980 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:55,982 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:56,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:56,464 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:56,924 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:56,927 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:00,714 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:07:00,812 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:07:03,739 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:03,739 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:03,787 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:03,849 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:03,865 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:03,867 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:10,717 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:10,735 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:10,747 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:10,791 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:12,761 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:12,775 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:12,790 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:12,795 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:13,691 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:13,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:13,703 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:13,717 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:13,721 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:13,722 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:15,269 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:15,281 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:15,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:15,303 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:16,128 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:16,129 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:16,142 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:16,161 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:16,169 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:16,170 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:16,937 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:16,938 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:16,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:16,978 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:16,982 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:16,985 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:17,731 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:17,732 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:17,756 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:17,772 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:17,773 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:17,785 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:34,480 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:34,484 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:34,511 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:34,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:34,586 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:34,588 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:34,770 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:07:34,793 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:34,830 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:34,857 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:37,949 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:37,949 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:37,966 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:37,990 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:37,998 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:37,999 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:40,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:40,140 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:40,161 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:40,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:40,189 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:40,191 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:40,358 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:07:41,766 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:07:41,860 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:07:42,470 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:42,471 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:42,491 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:42,516 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:42,524 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:42,526 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:44,695 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:44,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:44,712 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:44,740 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:44,749 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:44,750 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:50,712 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:50,713 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:50,747 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:50,760 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:50,763 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:50,766 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:58,782 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:58,783 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:58,794 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:59,261 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:59,717 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:59,719 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:06,531 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:06,533 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:06,581 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:06,643 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:06,661 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:06,662 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:13,417 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:13,432 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:13,454 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:13,475 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:15,477 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:15,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:15,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:15,518 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:16,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:16,405 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:16,416 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:16,430 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:16,436 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:16,437 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:17,980 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:17,993 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:18,010 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:18,015 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:18,840 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:18,841 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:18,855 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:18,870 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:18,877 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:18,878 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:19,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:19,612 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:19,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:19,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:19,668 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:19,670 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:20,462 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:20,465 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:20,493 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:20,511 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:20,514 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:20,518 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:22,815 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:08:22,913 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:08:37,191 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:37,193 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:37,241 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:37,304 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:37,382 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:37,384 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:37,514 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:08:37,532 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:37,557 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.6}
2019-06-30 21:08:37,585 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:40,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:40,921 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:40,932 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:40,951 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:40,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:40,961 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:43,116 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:43,117 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:43,143 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:43,171 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:43,172 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:43,183 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:45,466 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01866, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:45,481 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:45,507 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:45,519 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:47,670 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:47,670 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:47,686 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:47,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:47,722 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:47,722 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:53,693 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:53,695 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:53,720 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:53,739 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:53,741 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:53,749 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:01,816 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:01,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:01,836 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:02,293 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:02,766 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:02,768 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:03,867 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:09:03,962 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:09:09,561 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:09,563 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:09,615 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:09,675 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:09,688 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:09,689 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:16,051 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:16,052 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:16,065 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:16,085 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:16,105 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:16,105 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:18,180 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:18,182 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:18,209 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:18,235 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:18,242 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:18,245 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:19,078 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:19,081 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:19,096 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:19,110 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:19,113 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:19,113 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:20,644 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:20,666 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:20,687 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:20,691 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:21,463 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:21,464 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:21,475 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:21,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:21,502 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:21,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:22,287 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:22,288 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:22,309 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:22,325 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:22,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:22,333 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:23,098 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:23,116 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:23,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:23,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:33,179 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:33,181 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:33,207 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:33,227 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:33,233 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:33,233 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:40,015 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:40,016 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:40,068 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:40,128 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:40,143 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:40,143 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:43,049 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:43,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:43,065 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:43,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:43,098 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:43,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:44,930 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:09:45,023 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:09:45,269 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:45,269 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:45,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:45,315 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:45,322 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:45,323 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:47,604 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:47,606 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:47,621 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:47,645 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:47,653 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:47,654 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:49,849 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:49,865 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:49,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:49,902 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:55,852 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:55,853 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:55,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:55,881 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:55,886 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:55,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:03,979 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:03,981 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:04,013 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:04,452 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:04,923 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:04,924 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:11,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:11,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:11,757 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:11,818 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:11,830 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:11,831 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:18,191 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:18,191 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:18,207 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:18,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:18,247 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:18,248 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:20,205 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:20,206 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:20,227 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:20,258 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:20,408 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:20,410 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:21,123 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:21,124 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:21,136 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:21,154 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:21,158 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:21,160 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:22,700 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:22,717 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:22,731 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:22,736 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:23,515 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:23,516 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:23,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:23,548 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:23,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:23,556 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:24,301 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:24,303 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:24,316 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:24,328 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:24,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:24,334 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:25,128 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:25,142 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:25,156 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:25,161 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:25,980 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:10:26,082 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:10:35,201 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:35,201 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:35,213 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:35,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:35,234 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:35,235 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:42,035 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:42,036 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:42,084 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:42,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:42,162 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:42,163 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:44,934 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.039420000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:44,955 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:44,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:44,994 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:47,151 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:47,153 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:47,171 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:47,195 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:47,204 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:47,205 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:49,468 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:49,470 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:49,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:49,513 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:49,524 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:49,525 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:51,719 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:51,740 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:51,765 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:51,771 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:57,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:57,704 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:57,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:57,731 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:57,735 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:57,736 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:05,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:05,816 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:05,835 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:06,304 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:06,772 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:06,773 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:07,032 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:11:07,122 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:11:13,563 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:13,565 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:13,612 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:13,679 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:13,689 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:13,690 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:20,042 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:20,043 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:20,054 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:20,078 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:20,095 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:20,096 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:22,057 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:22,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:22,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:22,111 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:22,118 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:22,119 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:22,966 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:22,967 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:22,990 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:23,015 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:23,016 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:23,026 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:24,530 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:24,544 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:24,560 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:24,600 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:25,346 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:25,347 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:25,363 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:25,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:25,385 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:25,386 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:26,142 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:26,144 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:26,168 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:26,191 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:26,195 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:26,197 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:26,964 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:26,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:26,991 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:26,995 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:27,118 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:11:37,010 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:37,013 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:37,034 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:37,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:37,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:37,065 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:43,842 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:43,843 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:43,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:43,959 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:43,968 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:43,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:46,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:46,704 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:46,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:46,749 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:46,756 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:46,757 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:48,094 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:11:48,190 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:11:48,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:48,902 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:48,924 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:48,945 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:48,954 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:48,956 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:51,229 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:51,230 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:51,250 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:51,275 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:51,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:51,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:53,458 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:53,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:53,474 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:53,500 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:53,507 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:53,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:59,489 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:59,494 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:59,515 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:59,539 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:59,545 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:59,548 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:07,578 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:07,578 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:07,594 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:08,083 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:08,542 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:08,543 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:15,329 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:15,331 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:15,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:15,444 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:15,457 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:15,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:21,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:21,902 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:21,919 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:21,948 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:21,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:21,961 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:23,931 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:23,931 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:23,944 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:23,971 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:23,978 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:23,978 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:24,817 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:24,818 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:24,830 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:24,854 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:24,854 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:24,860 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:26,405 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:26,429 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:26,447 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:26,454 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:27,215 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:27,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:27,236 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:27,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:27,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:27,277 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:27,985 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:27,986 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:28,034 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:28,051 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:28,055 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:28,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:28,824 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:28,838 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:28,851 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:28,855 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:29,152 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:12:29,248 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:12:42,081 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:42,082 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:42,113 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:42,146 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:42,155 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:42,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:48,855 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:48,856 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:48,908 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:49,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.9}
2019-06-30 21:12:49,151 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:49,152 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:52,591 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:52,592 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:52,620 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:12:52,658 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:12:52,665 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:52,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:55,077 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:55,080 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:55,107 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:12:55,143 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:12:55,151 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:55,154 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:57,677 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:57,678 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:57,699 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:12:57,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:12:57,730 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:57,732 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:00,230 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:00,259 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:00,296 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:00,305 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:06,277 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:06,277 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:06,305 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:06,506 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:06,868 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:06,869 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:10,207 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:13:10,298 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:13:14,414 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:14,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:14,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:15,250 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:15,260 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:15,261 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:22,079 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:22,082 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:22,129 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:22,190 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:22,203 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:22,204 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:31,825 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:31,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:31,886 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:31,895 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:34,720 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:34,748 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:34,786 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:34,795 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:35,814 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:35,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:35,842 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:35,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:35,879 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:35,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:37,738 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:37,740 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:37,768 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:37,799 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:37,809 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:37,811 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:38,603 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:38,604 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:38,631 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:38,664 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:38,673 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:38,674 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:39,546 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:39,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:39,603 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:39,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:40,573 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:40,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:40,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:40,649 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:51,262 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:13:51,373 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:13:53,848 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:53,877 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:53,913 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:53,920 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:00,701 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:00,701 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:00,730 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:00,924 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:00,932 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:00,933 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:04,110 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:04,113 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:04,138 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:04,177 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:04,182 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:04,183 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:06,605 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:06,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:06,638 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:06,674 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:06,683 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:06,686 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:09,155 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:09,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:09,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:09,227 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:09,238 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:09,240 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:11,864 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:11,892 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:11,926 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:11,933 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:17,874 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:17,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:17,909 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:18,130 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:18,493 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:18,495 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:26,046 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:26,047 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:26,381 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:26,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:26,876 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:26,878 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:32,322 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:14:32,410 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:14:33,705 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:33,706 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:33,753 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:33,819 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:33,830 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:33,832 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:43,304 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:43,325 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:43,349 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:43,358 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:46,155 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:46,176 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:46,201 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:46,209 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:47,228 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:47,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:47,249 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:47,273 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:47,281 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:47,282 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:49,131 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:49,132 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:49,159 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:49,192 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:49,201 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:49,201 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:49,982 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:49,985 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:50,018 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:50,056 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:50,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:50,066 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:50,890 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:50,911 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:50,957 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:50,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:51,896 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:51,925 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:51,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:51,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:04,938 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:04,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:04,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:05,005 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:11,733 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:11,733 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:11,784 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:11,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:11,963 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:11,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:13,368 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:15:13,468 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:15:14,935 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:14,936 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:14,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:15,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:15,009 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:15,010 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:17,430 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:17,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:17,449 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:17,479 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:17,487 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:17,487 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:19,919 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:19,920 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:19,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:19,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:19,973 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:19,973 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:22,646 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:22,678 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:22,714 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:22,724 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:28,646 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:28,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:28,688 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:28,910 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:29,273 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:29,274 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:36,825 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:36,826 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:37,163 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:37,669 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:37,678 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:37,680 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:40,628 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:15:44,482 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:44,484 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:44,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:44,596 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:44,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:44,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:54,051 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:54,083 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:54,116 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:54,124 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:54,427 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:15:54,519 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:15:56,914 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:56,942 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:56,980 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:57,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:58,032 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:58,033 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:58,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:58,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:58,101 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:58,102 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:00,026 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:00,030 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:00,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:00,092 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:00,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:00,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:01,054 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:01,057 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:01,084 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:01,116 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:01,124 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:01,127 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:01,807 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:01,828 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:01,866 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:01,874 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:02,881 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:02,911 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:02,947 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:02,954 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:16,026 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:16,058 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:16,091 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:16,100 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:22,821 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:22,822 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:22,874 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:23,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:23,055 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:23,057 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:26,049 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:26,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:26,078 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:26,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:26,123 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:26,125 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:28,478 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:28,483 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:28,510 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:28,545 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:28,553 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:28,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:31,169 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:31,171 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:31,198 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:31,258 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:31,266 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:31,267 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:33,680 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:33,682 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:33,709 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:33,746 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:33,754 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:33,755 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:35,489 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:16:35,582 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:16:39,673 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:39,674 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:39,701 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:39,928 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:40,280 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:40,281 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:47,845 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:47,847 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:48,173 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:48,660 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:48,669 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:48,669 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:55,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:55,497 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:55,546 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:55,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:55,619 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:55,620 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:05,127 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:05,155 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:05,200 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:05,209 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:08,079 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:08,108 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:08,141 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:08,150 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:09,136 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:09,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:09,166 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:09,199 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:09,205 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:09,206 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:11,210 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:11,211 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:11,239 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:11,300 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:11,309 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:11,310 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:12,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:12,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:12,171 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:12,203 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:12,211 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:12,214 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:12,991 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:13,020 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:13,054 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:13,062 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:13,948 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:13,969 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:13,994 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:14,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:16,539 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:17:16,716 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:17:26,795 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:26,848 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:26,881 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:26,887 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:33,603 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:33,605 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:33,647 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:33,839 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.2}
2019-06-30 21:17:33,853 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:33,855 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:37,084 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:37,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:37,117 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:37,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:37,157 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:37,159 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:39,537 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:39,539 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:39,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:39,600 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:39,606 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:39,608 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:42,193 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:42,215 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:42,245 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:42,252 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:44,625 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:44,627 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:44,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:44,690 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:44,698 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:44,701 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:50,749 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:50,751 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:50,776 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:50,810 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:50,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:50,904 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:57,590 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:17:57,728 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:17:58,843 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:58,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:59,703 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:59,711 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:04,402 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:04,403 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:04,429 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:04,463 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:04,472 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:04,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:06,523 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:06,525 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:06,572 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:06,638 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:06,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:06,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:09,816 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:09,819 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:09,845 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:09,879 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:09,887 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:09,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:10,829 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:10,830 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:10,857 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:10,889 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:10,899 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:10,899 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:11,965 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:11,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:11,987 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:12,012 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:12,019 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:12,020 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:12,983 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:12,984 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:13,012 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:13,045 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:13,053 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:13,054 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:18,464 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:18,466 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:18,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:18,533 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:18,549 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:18,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:21,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:21,466 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:21,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:21,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:21,535 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:21,537 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:23,588 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:23,589 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:23,637 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:23,725 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:23,756 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:23,757 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:34,577 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:34,606 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:34,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:34,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:35,523 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:35,524 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:35,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:35,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:35,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:35,576 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:36,347 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:36,349 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:36,375 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:36,413 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:36,421 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:36,423 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:38,648 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:18:38,674 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:38,675 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:38,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:38,748 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:18:38,870 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:38,908 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:38,910 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:41,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:41,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:41,711 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:41,905 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:41,914 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:41,916 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:44,986 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:44,988 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:45,015 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:45,048 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:45,056 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:45,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:47,631 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.00315, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:47,652 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:47,677 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:47,685 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:50,101 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:50,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:50,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:50,163 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:50,171 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:50,173 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:52,749 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:52,777 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:52,814 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:52,822 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:58,713 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:58,714 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:58,743 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:58,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:59,003 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:59,005 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:06,954 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:06,983 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:07,813 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:07,821 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:12,504 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:12,506 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:12,533 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:12,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:12,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:12,576 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:14,594 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:14,596 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:14,647 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:14,707 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:14,745 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:14,746 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:17,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:17,963 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:17,989 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:18,022 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:18,030 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:18,032 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:18,893 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:18,896 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:18,930 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:18,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:18,972 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:18,975 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:19,701 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 41, "op": 1}
2019-06-30 21:19:19,801 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:19:20,036 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:20,038 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:20,065 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:20,097 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:20,106 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:20,108 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:21,192 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:21,193 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:21,219 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:21,252 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:21,261 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:21,262 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:26,505 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:26,507 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:26,532 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:26,565 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:26,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:26,577 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:29,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:29,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:29,442 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:29,474 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:29,482 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:29,486 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:31,523 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:31,525 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:31,571 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:31,657 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:31,690 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:31,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:42,573 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:42,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:42,647 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:42,655 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:43,483 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:43,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:43,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:43,540 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:43,547 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:43,548 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:44,289 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:44,291 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:44,318 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:44,356 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:44,364 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:44,366 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:46,608 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:46,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:46,657 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:46,805 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:46,843 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:46,845 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:49,590 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:49,593 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:49,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:49,897 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:49,922 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:49,925 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:53,321 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:19:53,440 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:53,441 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:53,471 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:53,501 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:53,510 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:53,511 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:55,932 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01864, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:55,976 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:56,009 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:56,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:58,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:58,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:58,442 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:58,475 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:58,483 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:58,484 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:00,749 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 41, "op": 1}
2019-06-30 21:20:00,846 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:20:00,985 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:00,987 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:01,015 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:01,052 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:01,061 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:01,063 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:06,963 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:06,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:06,995 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:07,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:07,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:07,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:15,221 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:15,253 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:16,044 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:16,052 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:20,861 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:20,862 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:20,889 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:20,920 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:20,930 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:20,932 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:22,966 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:22,967 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:23,019 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:23,084 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:23,093 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:23,094 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:26,247 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:26,248 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:26,275 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:26,309 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:26,316 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:26,318 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:27,176 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:27,178 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:27,205 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:27,238 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:27,246 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:27,247 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:28,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:28,386 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:28,414 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:28,447 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:28,462 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:28,464 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:29,403 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:29,404 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:29,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:29,470 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:29,478 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:29,478 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:34,987 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:34,988 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:35,016 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:35,049 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:35,063 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:35,064 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:37,776 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:37,776 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:37,797 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:37,830 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:37,837 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:37,838 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:39,924 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:39,925 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:39,974 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:40,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:40,092 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:40,093 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:41,869 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 41, "op": 1}
2019-06-30 21:20:41,963 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:20:51,283 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:51,314 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:51,347 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:51,356 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:52,188 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:52,189 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:52,215 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:52,248 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:52,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:52,260 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:53,036 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:53,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:53,064 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:53,101 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:53,109 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:53,110 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:55,340 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:55,341 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:55,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:55,537 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:55,578 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:55,579 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:58,352 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:58,353 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:58,389 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:58,586 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:58,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:58,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:01,928 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:01,929 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:01,961 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:01,994 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:02,000 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:02,003 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:04,406 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:04,407 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:04,437 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:04,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:04,476 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:04,477 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:06,850 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:06,851 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:06,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:06,895 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:06,904 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:06,905 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:09,304 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:09,307 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:09,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:09,370 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:09,403 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:09,406 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:15,265 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:15,267 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:15,294 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:15,327 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:15,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:15,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:22,921 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:21:23,019 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:21:23,506 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:23,534 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:24,182 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 21:21:24,339 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:24,347 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:28,762 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:28,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:28,790 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:28,824 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:28,832 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:28,833 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:30,970 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:30,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:30,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:31,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:31,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:31,041 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:34,169 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:34,171 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:34,205 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:34,233 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:34,243 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:34,244 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:35,034 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:35,035 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:35,062 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:35,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:35,103 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:35,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:36,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:36,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:36,176 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:36,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:36,216 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:36,219 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:37,086 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:37,087 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:37,117 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:37,179 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:37,187 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:37,188 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:39,803 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 6320}
2019-06-30 21:21:42,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:42,649 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:42,676 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:42,708 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:42,723 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:42,724 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:45,400 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:45,401 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:45,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:45,462 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:45,470 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:45,472 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:47,550 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:47,552 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:47,583 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:47,667 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:47,704 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:47,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:58,578 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:58,606 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:58,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:58,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:59,548 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:59,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:59,577 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:59,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:59,618 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:59,619 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:00,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:00,385 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:00,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:22:00,437 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:22:00,444 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:00,445 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:02,694 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:02,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:02,747 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:22:02,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:22:02,931 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:02,933 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:03,985 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:22:04,093 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:22:05,680 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:05,681 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:05,729 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:22:05,815 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.5}
2019-06-30 21:22:05,848 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:05,849 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:08,679 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:08,679 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:08,707 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:08,739 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:08,748 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:08,750 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:11,386 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:11,387 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:11,414 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:11,448 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:11,456 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:11,457 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:13,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:13,903 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:13,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:13,961 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:13,969 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:13,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:16,363 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:16,364 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:16,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:16,427 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:16,437 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:16,438 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:22,400 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:22,402 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:22,430 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:22,711 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:23,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:23,065 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:30,592 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:30,593 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:30,621 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:31,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:31,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:31,499 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:33,563 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:33,564 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:33,616 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:33,677 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:33,690 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:33,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:35,275 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:35,304 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:35,337 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:35,345 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:36,467 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:36,468 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:36,496 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:36,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:36,537 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:36,538 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:39,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:39,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:39,285 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:39,317 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:39,326 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:39,327 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:40,214 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:40,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:40,243 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:40,276 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:40,282 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:40,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:41,243 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:41,245 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:41,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:41,324 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:41,332 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:41,335 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:42,209 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:42,210 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:42,233 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:42,266 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:42,275 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:42,276 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:45,054 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:22:45,149 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:22:47,987 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:48,009 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:48,038 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:48,045 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:53,202 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:53,223 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:53,247 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:53,256 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:05,029 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:05,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:05,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:05,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:07,065 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:07,068 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:07,147 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:07,179 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:07,192 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:07,195 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:10,751 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:10,780 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:10,813 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:10,822 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:12,733 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:12,734 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:12,782 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:12,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:12,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:12,905 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:15,327 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:15,328 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:15,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:15,508 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:15,519 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:15,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:18,555 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:18,556 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:18,585 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:18,616 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:18,624 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:18,626 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:21,102 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:21,104 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:21,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:21,164 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:21,172 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:21,175 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:23,556 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:23,558 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:23,584 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:23,617 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:23,626 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:23,628 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:26,040 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:26,066 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:26,123 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:26,125 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:23:26,134 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:26,210 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:23:32,101 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:32,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:32,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:32,374 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:32,764 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:32,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:40,263 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:40,265 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:40,297 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:41,136 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:41,145 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:41,147 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:43,230 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:43,231 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:43,278 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:43,344 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:43,357 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:43,359 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:44,932 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:44,953 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:44,977 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:44,985 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:46,076 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:46,077 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:46,104 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:46,138 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:46,146 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:46,147 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:48,988 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:48,989 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:49,017 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:49,050 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:49,060 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:49,061 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:49,969 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:49,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:49,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:50,029 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:50,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:50,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:50,973 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:50,974 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:51,001 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:51,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:51,042 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:51,043 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:52,000 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:52,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:52,030 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:52,061 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:52,071 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:52,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:57,808 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:57,837 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:57,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:57,887 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:02,929 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:02,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:02,989 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:02,999 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:07,180 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:24:07,275 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:24:09,510 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:24:14,573 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:14,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:14,645 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:14,654 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:16,635 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:16,636 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:16,682 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:16,743 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:16,761 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:16,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:20,115 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:20,143 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:20,176 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:20,193 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:22,217 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:22,220 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:22,261 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:22,348 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:22,380 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:22,381 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:24,805 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:24,806 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:24,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:25,021 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:25,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:25,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:28,090 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:28,091 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:28,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:28,153 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:28,160 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:28,162 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:30,519 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:30,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:30,544 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:30,580 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:30,587 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:30,589 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:33,079 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:33,081 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:33,108 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:33,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:33,149 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:33,150 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:35,558 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:35,559 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:35,587 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:35,623 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:35,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:35,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:41,646 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:41,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:41,705 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:41,886 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:42,255 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:42,257 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:48,234 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:24:48,326 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:24:49,816 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:49,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:49,844 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:50,648 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:50,657 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:50,657 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:52,750 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:52,751 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:52,799 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:52,859 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:52,871 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:52,872 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:54,466 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:54,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:54,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:54,534 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:55,638 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:55,639 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:55,667 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:55,698 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:55,708 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:55,709 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:58,500 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:58,502 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:58,528 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:58,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:58,571 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:58,571 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:59,471 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:59,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:59,524 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:59,556 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:59,566 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:59,568 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:00,352 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:00,353 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:00,382 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:00,412 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:00,420 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:00,421 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:01,484 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:01,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:01,510 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:01,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:01,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:01,553 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:07,464 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:07,492 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:07,544 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:07,552 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:12,648 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:12,683 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:12,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:12,727 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:24,466 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:24,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:24,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:24,536 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:26,518 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:26,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:26,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:26,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:26,644 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:26,646 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:29,287 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:25:29,384 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:25:30,016 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:30,044 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:30,077 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:30,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:32,118 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:32,121 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:32,166 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:32,248 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:32,286 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:32,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:34,715 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:34,716 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:34,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:34,911 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:34,949 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:34,950 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:38,157 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:38,158 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:38,187 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:38,221 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:38,230 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:38,231 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:40,621 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:40,623 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:40,649 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:40,684 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:40,697 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:40,698 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:43,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:43,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:43,177 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:43,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:43,215 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:43,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:45,540 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:45,542 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:45,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:45,603 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:45,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:45,611 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:51,618 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:51,619 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:51,648 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:51,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:52,217 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:52,218 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:59,758 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:59,759 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:59,786 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:00,618 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:00,626 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:00,627 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:02,715 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:02,716 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:02,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:02,831 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:02,839 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:02,839 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:04,394 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:04,419 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:04,452 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:04,462 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:05,576 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:05,577 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:05,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:05,628 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:05,635 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:05,635 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:08,409 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:08,410 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:08,438 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:08,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:08,480 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:08,481 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:09,356 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:09,357 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:09,390 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:09,424 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:09,432 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:09,434 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:10,217 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:10,218 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:10,249 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:10,280 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:10,289 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:10,290 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:10,349 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:26:10,444 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:26:11,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:11,334 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:11,358 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:11,392 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:11,400 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:11,401 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:17,235 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:17,259 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:17,293 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:17,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:22,423 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:22,451 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:22,487 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:22,494 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:34,112 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:34,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:34,174 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:34,182 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:36,174 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:36,175 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:36,206 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:36,267 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:36,284 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:36,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:39,821 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:39,841 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:39,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:39,878 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:41,879 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:41,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:41,928 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:42,014 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:42,047 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:42,047 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:44,471 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:44,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:44,521 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:44,709 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 3.8}
2019-06-30 21:26:44,724 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:44,726 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:47,968 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:47,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:47,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:48,031 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:48,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:48,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:50,442 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:50,444 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:50,464 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:50,489 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:50,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:50,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:51,412 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:26:51,501 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:26:52,912 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:52,913 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:52,933 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:52,957 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:52,966 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:52,967 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:55,379 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:55,380 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:55,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:55,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:55,453 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:55,455 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:01,433 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:01,434 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:01,468 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:01,547 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:01,561 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:01,562 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:09,696 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:09,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:09,727 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:10,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:10,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:10,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:12,562 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:12,565 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:12,590 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:12,657 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:12,690 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:12,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:21,075 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:21,077 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:21,102 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:21,135 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:21,145 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:21,146 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:21,937 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:21,938 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:21,957 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:21,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:21,990 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:21,990 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:23,163 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0016299999999999995, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:23,188 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:23,217 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:23,225 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:28,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:28,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:28,311 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:28,344 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:28,355 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:28,357 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:30,311 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:30,313 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:30,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:30,373 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:30,382 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:30,383 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:31,581 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:31,583 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:31,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:31,642 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:31,651 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:31,652 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:32,429 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03784, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:32,457 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:32,469 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:27:32,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:32,503 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:32,556 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:27:33,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:33,413 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:33,440 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:33,473 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:33,482 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:33,483 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:39,507 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:39,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:39,535 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:39,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:39,576 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:39,579 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:44,501 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014170000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:44,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:44,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:44,570 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:46,491 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:46,492 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:46,540 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:46,626 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:46,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:46,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:49,075 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:49,076 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:49,125 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:49,271 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:49,305 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:49,306 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:51,890 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:51,891 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:51,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:52,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:52,144 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:52,145 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:55,269 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:55,271 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:55,296 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:55,329 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:55,339 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:55,341 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:57,743 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.003140000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:57,767 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:57,801 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:57,808 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:00,213 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:00,214 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:00,241 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:00,274 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:00,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:00,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:02,912 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:02,937 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:02,974 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:02,983 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:08,976 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:08,977 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:09,007 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:09,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:09,080 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:09,080 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:13,526 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:28:13,617 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:28:17,204 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:17,205 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:17,237 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:18,071 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:18,079 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:18,080 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:20,083 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:20,085 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:20,133 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:20,198 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:20,207 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:20,210 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:27,158 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:28:28,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:28,611 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:28,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:28,656 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:28,664 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:28,665 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:29,550 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:29,551 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:29,580 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:29,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:29,621 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:29,622 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:30,693 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0016299999999999995, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:30,723 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:30,755 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:30,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:36,026 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:36,027 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:36,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:36,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:36,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:36,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:38,057 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:38,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:38,087 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:38,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:38,127 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:38,128 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:39,154 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:39,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:39,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:39,216 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:39,224 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:39,226 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:40,065 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03784, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:40,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:40,128 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:40,137 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:41,149 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:41,151 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:41,178 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:41,210 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:41,220 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:41,220 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:47,310 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:47,312 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:47,348 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:47,415 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:47,422 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:47,425 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:52,262 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014170000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:52,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:52,324 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:52,333 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:54,254 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:54,254 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:54,303 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:54,389 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:54,421 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:54,422 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:54,582 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 46, "op": 1}
2019-06-30 21:28:54,688 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:28:56,843 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:56,845 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommand
|
AttributeError
|
def default(_, port, baudrate, read_timeout):
if port is None or port == "AUTO":
# no known port, try auto detection
self._changeState(self.STATE_DETECT_SERIAL)
port = self._detect_port()
if port is None:
error_text = "Failed to autodetect serial port, please set it manually."
self._trigger_error(error_text, "autodetect_port")
self._log(error_text)
return None
# connect to regular serial port
self._log("Connecting to: %s" % port)
serial_port_args = {
"baudrate": baudrateList()[0] if baudrate == 0 else baudrate,
"timeout": read_timeout,
"write_timeout": 0,
}
if settings().getBoolean(["serial", "exclusive"]):
serial_port_args["exclusive"] = True
serial_obj = serial.Serial(**serial_port_args)
serial_obj.port = str(port)
use_parity_workaround = settings().get(["serial", "useParityWorkaround"])
needs_parity_workaround = get_os() == "linux" and os.path.exists(
"/etc/debian_version"
) # See #673
if use_parity_workaround == "always" or (
needs_parity_workaround and use_parity_workaround == "detect"
):
serial_obj.parity = serial.PARITY_ODD
serial_obj.open()
serial_obj.close()
serial_obj.parity = serial.PARITY_NONE
serial_obj.open()
# Set close_exec flag on serial handle, see #3212
if hasattr(serial_obj, "fd"):
# posix
set_close_exec(serial_obj.fd)
elif hasattr(serial_obj, "_port_handle"):
# win32
# noinspection PyProtectedMember
set_close_exec(serial_obj._port_handle)
return BufferedReadlineWrapper(serial_obj)
|
def default(_, port, baudrate, read_timeout):
if port is None or port == "AUTO":
# no known port, try auto detection
self._changeState(self.STATE_DETECT_SERIAL)
port = self._detect_port()
if port is None:
error_text = "Failed to autodetect serial port, please set it manually."
self._trigger_error(error_text, "autodetect_port")
self._log(error_text)
return None
# connect to regular serial port
self._log("Connecting to: %s" % port)
serial_port_args = {
"baudrate": baudrateList()[0] if baudrate == 0 else baudrate,
"timeout": read_timeout,
"write_timeout": 0,
}
if settings().getBoolean(["serial", "exclusive"]):
serial_port_args["exclusive"] = True
serial_obj = serial.Serial(**serial_port_args)
serial_obj.port = str(port)
use_parity_workaround = settings().get(["serial", "useParityWorkaround"])
needs_parity_workaround = get_os() == "linux" and os.path.exists(
"/etc/debian_version"
) # See #673
if use_parity_workaround == "always" or (
needs_parity_workaround and use_parity_workaround == "detect"
):
serial_obj.parity = serial.PARITY_ODD
serial_obj.open()
serial_obj.close()
serial_obj.parity = serial.PARITY_NONE
serial_obj.open()
return BufferedReadlineWrapper(serial_obj)
|
https://github.com/OctoPrint/OctoPrint/issues/3212
|
2019-06-30 17:15:24,613 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 17:15:24,617 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-06-30 17:15:24,617 - octoprint.server - INFO - OctoPrint 1.3.11
2019-06-30 17:15:24,633 - octoprint.plugin.core - INFO - 58 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Active Filters Extended (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_active_filters_extended
| Announcement Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Autoscroll (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoscroll
| Autoselect Plugin (0.2.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !DeleteAfterPrint Plugin (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_DeleteAfterPrint
| Detailed Progress Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_detailedprogress
| DiscordRemote (2.40.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_discordremote
| Discovery (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_displayz
| Dragon Order (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_dragon_order
| EEPROM Marlin Editor Plugin (1.2.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Error Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Exclude Region (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_excluderegion
| FileManager (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_filemanager
| Firmware Updater (1.4.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fullscreen
| GCODE System Commands (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands
| Gcodebar Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GCodeBar
| GcodeEditor (0.2.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GcodeEditor
| HeaterTimeout (0.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Kronos Data Collector (1.2.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_kronos_data_collector
| Logging (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/logging
| M117PopUp (0.6.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_M117PopUp
| M73 ETA Override (1.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Multi Colors (1.0.16) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_multi_colors
| MultipleUpload Plugin (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_MultipleUpload
| !Octolapse (v0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octolapse
| OctoPod Plugin (0.1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octopod
| OctoRant (1.2.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octorant
| Pi Support Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_preheat
| Print History Plugin (1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Printer Stats (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_stats
| PrinterAlerts (0.7.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrinterAlerts
| !PrintTimeGenius Plugin (1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| Prusa Mesh Leveling (0.3.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| !Pushbullet (0.1.9) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octobullet
| Sidebar Temp Graph (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_sidebartempgraph
| Slic3r (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slic3r
| Slicer (1.4.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slicer
| SlicerSettingsParser (2.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsParser
| SlicerSettingsTab (1.0.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsTab
| SnapStream (0.2.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Stateful Sidebar (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/statefulsidebar
| Terminal Commands (0.1.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| !Themeify (1.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_themeify
| TouchUI (0.3.13) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_touchui
| Upload Anything (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything
| Virtual Printer (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-06-30 17:15:24,654 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/OctoPrint/venv
2019-06-30 17:15:24,655 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-06-30 17:15:46,715 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:15:46,814 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:16:02,054 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1036844}
2019-06-30 17:16:27,761 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:16:27,863 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:17:08,809 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:17:08,908 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:17:49,855 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:17:49,952 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:18:30,901 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:18:31,075 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:19:11,948 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:19:12,049 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:19:52,994 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:19:53,100 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:20:34,041 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:20:34,141 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:21:15,086 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:21:15,186 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:21:56,133 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:21:56,231 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:22:37,180 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:22:37,280 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:23:18,228 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:23:18,328 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:23:59,275 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:23:59,377 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:24:40,321 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:24:40,422 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:25:21,363 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:25:21,464 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:26:02,410 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:26:02,513 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:26:43,454 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:26:43,554 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:27:24,499 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:27:24,599 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:28:05,545 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:28:05,667 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:28:46,591 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:28:46,688 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:29:27,628 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:29:27,731 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:30:08,674 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:30:08,776 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:30:24,644 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 17:30:49,725 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:30:49,823 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:31:02,039 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1037744}
2019-06-30 17:31:30,771 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:31:30,976 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:32:11,816 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:32:11,917 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:32:52,861 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:32:52,960 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:33:33,908 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:33:34,008 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:34:14,955 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:34:15,054 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:34:56,002 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:34:56,097 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:35:37,048 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:35:37,156 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:36:18,094 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:36:18,186 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:36:59,141 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:36:59,239 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:37:40,200 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:37:40,299 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:38:21,247 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:38:21,344 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:39:02,293 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:39:02,401 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:39:43,340 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:39:43,443 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:40:24,387 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:40:24,497 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:41:05,434 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:41:05,535 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:41:46,480 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 344, "op": 1}
2019-06-30 17:41:46,577 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:42:17,168 - octoprint.plugins.discordremote - ERROR - Connection error: [Errno 104] Connection reset by peer
2019-06-30 17:42:17,172 - octoprint.plugins.discordremote - INFO - WebSocket Closed
2019-06-30 17:42:17,174 - octoprint.plugins.discordremote - INFO - Restart Triggered
2019-06-30 17:42:17,178 - octoprint.plugins.discordremote - INFO - Waiting for listener thread to join.
2019-06-30 17:42:17,180 - octoprint.plugins.discordremote - INFO - Listener thread joined.
2019-06-30 17:42:22,491 - octoprint.plugins.discordremote - INFO - Socket URL is wss://gateway.discord.gg
2019-06-30 17:42:22,830 - octoprint.plugins.discordremote - INFO - Received HELLO message
2019-06-30 17:42:22,832 - octoprint.plugins.discordremote - INFO - Sending RESUME message
2019-06-30 17:42:22,834 - octoprint.plugins.discordremote - INFO - Heartbeat thread: <Thread(Thread-50, started 1768940640)>
2019-06-30 17:42:22,835 - octoprint.plugins.discordremote - INFO - Heartbeat thread is_alive(): True
2019-06-30 17:42:22,932 - octoprint.plugins.discordremote - INFO - Successfully resumed
2019-06-30 17:42:27,526 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:42:27,623 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:43:08,572 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:43:08,674 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:43:49,619 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:43:49,719 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:44:30,666 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:44:30,838 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:45:11,713 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:45:11,809 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:45:24,646 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 17:45:52,758 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:45:52,859 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:46:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1038644}
2019-06-30 17:46:33,798 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:46:33,894 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:47:14,845 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:47:14,959 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:47:55,890 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:47:55,986 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:48:36,955 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:48:37,054 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:49:18,002 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:49:18,114 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:49:59,047 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:49:59,147 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:50:40,093 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:50:40,192 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:51:21,137 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:51:21,236 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:52:02,183 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:52:02,286 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:52:43,247 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:52:43,347 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:53:24,293 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:53:24,400 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:54:05,340 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:54:05,480 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:54:46,388 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:54:46,490 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:55:27,435 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:55:27,538 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:56:08,474 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:56:08,574 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:56:49,519 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:56:49,621 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:57:30,565 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:57:30,721 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:58:11,612 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:58:11,711 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:58:52,658 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:58:52,760 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 17:59:33,706 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 17:59:33,805 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:00:14,752 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:00:14,850 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:00:24,648 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:00:55,799 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:00:55,898 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:01:02,056 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1039544}
2019-06-30 18:01:36,845 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:01:36,944 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:02:17,892 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:02:17,991 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:02:58,938 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:02:59,036 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:03:39,974 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:03:40,091 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:04:21,020 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:04:21,118 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:05:02,066 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:05:02,165 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:05:43,111 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:05:43,211 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:06:24,157 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:06:24,259 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:07:05,203 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:07:05,302 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:07:46,272 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:07:46,372 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:08:27,290 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:08:27,390 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:09:08,335 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:09:08,435 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:09:49,381 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:09:49,485 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:10:30,432 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:10:30,533 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:11:11,472 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:11:11,578 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:11:52,517 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:11:52,615 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:12:33,556 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:12:33,659 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:13:14,600 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:13:14,699 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:13:55,646 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:13:55,760 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:14:36,692 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:14:36,792 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:15:17,737 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:15:17,837 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:15:24,651 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:15:58,782 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:15:58,882 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:16:02,057 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1040444}
2019-06-30 18:16:39,827 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:16:39,925 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:17:20,872 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:17:20,971 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:18:01,919 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:18:02,043 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:18:42,965 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:18:43,060 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:19:24,011 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:19:24,110 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:20:05,056 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:20:05,182 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:20:46,102 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:20:46,201 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:21:27,148 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:21:27,239 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:22:08,193 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:22:08,313 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:22:49,239 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:22:49,336 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:23:30,286 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:23:30,387 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:24:11,320 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:24:11,419 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:24:52,367 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:24:52,468 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:25:33,403 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:25:33,499 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:26:14,448 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:26:14,545 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:26:55,490 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:26:55,592 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:27:36,535 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:27:36,632 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:28:17,581 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:28:17,684 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:28:58,624 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:28:58,723 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:29:39,669 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:29:39,766 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:30:20,714 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:30:20,813 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:30:24,653 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:31:01,752 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:31:01,846 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:31:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1041344}
2019-06-30 18:31:42,767 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:31:42,867 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:32:23,814 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:32:23,911 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:33:04,859 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:33:04,967 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:33:45,905 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:33:46,001 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:34:26,950 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:34:27,046 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:35:07,995 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:35:08,092 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:35:49,040 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:35:49,148 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:36:30,085 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:36:30,189 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:37:11,126 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:37:11,223 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:37:52,171 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:37:52,268 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:38:33,210 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:38:33,311 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:39:14,255 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:39:14,354 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:39:55,302 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:39:55,408 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:40:36,350 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:40:36,449 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:41:17,395 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:41:17,491 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:41:58,441 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:41:58,606 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:42:39,487 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:42:39,589 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:43:20,533 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:43:20,631 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:44:01,580 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:44:01,678 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:44:42,621 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:44:42,718 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:45:23,668 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:45:23,767 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:45:24,654 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 18:46:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1042244}
2019-06-30 18:46:04,713 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:46:04,812 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:46:45,758 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:46:45,861 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:47:26,805 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:47:26,907 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:48:07,851 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:48:07,949 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:48:48,897 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:48:49,012 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:49:29,943 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:49:30,042 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:50:10,989 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:50:11,088 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:50:52,035 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:50:52,127 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:51:33,080 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:51:33,175 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:52:14,125 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:52:14,227 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:52:55,171 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:52:55,269 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:53:36,206 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:53:36,308 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:54:17,252 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:54:17,352 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:54:58,297 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:54:58,391 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:55:39,341 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:55:39,451 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:56:20,387 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 345, "op": 1}
2019-06-30 18:56:20,490 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:56:44,074 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 18:56:44,427 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 18:56:44,581 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 18:57:01,433 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 346, "op": 1}
2019-06-30 18:57:01,541 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:57:42,468 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:57:42,577 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:58:23,513 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:58:23,617 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:59:04,558 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:59:04,662 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 18:59:45,605 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 18:59:45,701 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:00:24,656 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:00:26,651 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:00:26,748 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:01:02,061 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1043144}
2019-06-30 19:01:07,696 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:01:07,796 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:01:48,742 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:01:48,836 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:02:29,787 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:02:29,886 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:03:10,815 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:03:10,927 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:03:51,861 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:03:51,967 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:04:32,907 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:04:33,004 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:05:13,952 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:05:14,051 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:05:54,997 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:05:55,096 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:06:36,042 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:06:36,155 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:07:17,088 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:07:17,187 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:07:58,134 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:07:58,235 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:08:39,180 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:08:39,307 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:09:20,227 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:09:20,329 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:10:01,273 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:10:01,369 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:10:42,319 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:10:42,422 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:11:23,365 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:11:23,469 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:12:04,411 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:12:04,511 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:12:45,458 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:12:45,557 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:13:26,504 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:13:26,606 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:14:07,550 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:14:07,652 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:14:48,597 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:14:48,692 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:15:24,659 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:15:29,644 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:15:29,753 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:16:02,075 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1044044}
2019-06-30 19:16:10,689 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:16:10,787 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:16:51,735 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:16:51,835 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:17:32,780 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:17:32,880 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:18:13,812 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:18:13,905 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:18:54,858 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:18:54,955 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:19:35,904 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:19:36,005 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:20:16,950 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:20:17,047 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:20:57,996 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:20:58,093 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:21:39,042 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:21:39,141 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:22:20,087 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:22:20,191 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:23:01,133 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:23:01,233 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:23:42,179 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:23:42,280 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:24:23,226 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:24:23,325 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:25:04,273 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:25:04,373 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:25:45,318 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:25:45,418 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:26:26,364 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:26:26,461 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:27:07,409 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:27:07,511 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:27:48,456 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:27:48,554 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:28:29,502 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:28:29,602 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:29:10,548 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:29:10,653 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:29:51,594 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:29:51,696 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:30:24,660 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:30:32,641 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:30:32,739 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:31:02,097 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1044944}
2019-06-30 19:31:13,675 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:31:13,777 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:31:54,724 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:31:54,822 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:32:35,765 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:32:35,878 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:33:09,418 - octoprint.plugins.excluderegion - INFO - Event received: event=FileAdded payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'storage': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': ['machinecode', 'gcode']}
2019-06-30 19:33:09,420 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:09,423 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'printables'}
2019-06-30 19:33:09,430 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:09,458 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'gcode'}
2019-06-30 19:33:09,466 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:33:09,472 - octoprint.printer.standard - INFO - Cannot load file: printer not connected or currently busy
2019-06-30 19:33:09,490 - octoprint.plugins.SlicerSettingsParser - INFO - Analyzing file: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:16,951 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:33:17,127 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:33:58,091 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 347, "op": 1}
2019-06-30 19:33:58,189 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:33:58,834 - octoprint.plugins.SlicerSettingsParser - INFO - Saved slicer settings metadata for file: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:33:58,835 - octoprint.plugins.excluderegion - INFO - Event received: event=Upload payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'target': u'local'}
2019-06-30 19:34:03,138 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:34:03,272 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Error: Connection error, see Terminal tab"
2019-06-30 19:34:03,275 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: /dev/ttyACM0 SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2611 (hook default)
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2611, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2600, in default
serial_obj = serial.Serial(**serial_port_args)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialutil.py", line 240, in __init__
self.open()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-06-30 19:34:03,279 - octoprint.plugins.discordremote - INFO - Received event: printer_state_error
2019-06-30 19:34:04,110 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Error: Connection error, see Terminal tab', 'state_id': 'ERROR'}
2019-06-30 19:34:04,991 - octoprint.plugins.excluderegion - INFO - Event received: event=Error payload={'reason': 'connection', 'error': 'Connection error, see Terminal tab'}
2019-06-30 19:34:04,992 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:34:05,793 - octoprint.plugins.tracking - INFO - Sent tracking event commerror_connection, payload: {'throttled_now': False, 'throttled_past': True, 'commerror_text': 'Connection error, see Terminal tab', 'throttled_mask': 131072}
2019-06-30 19:34:07,390 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.84
2019-06-30 19:34:07,701 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:34:08,348 - tornado.access - WARNING - 409 GET /api/printer (10.0.1.84) 11.65ms
2019-06-30 19:34:08,721 - octoprint.server.util.sockjs - WARNING - Could not send message to client 10.0.1.84: 'NoneType' object has no attribute 'send_pack'
2019-06-30 19:34:08,723 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:34:08,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.84
2019-06-30 19:34:12,868 - octoprint.plugins.excluderegion - INFO - Event received: event=Disconnecting payload=None
2019-06-30 19:34:12,871 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:34:12,973 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Error: Connection error, see Terminal tab"
2019-06-30 19:34:12,982 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: /dev/ttyACM0 SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2611 (hook default)
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2611, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2600, in default
serial_obj = serial.Serial(**serial_port_args)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialutil.py", line 240, in __init__
self.open()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-06-30 19:34:12,985 - octoprint.plugins.discordremote - INFO - Received event: printer_state_error
2019-06-30 19:34:14,051 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Error: Connection error, see Terminal tab', 'state_id': 'ERROR'}
2019-06-30 19:34:14,739 - octoprint.plugins.excluderegion - INFO - Event received: event=Error payload={'reason': 'connection', 'error': 'Connection error, see Terminal tab'}
2019-06-30 19:34:14,739 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:34:15,579 - octoprint.plugins.tracking - INFO - Sent tracking event commerror_connection, payload: {'throttled_now': False, 'throttled_past': True, 'commerror_text': 'Connection error, see Terminal tab', 'throttled_mask': 131072}
2019-06-30 19:34:18,291 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.132
2019-06-30 19:34:18,295 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:34:19,243 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 19:34:19,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:34:19,587 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 19:34:22,615 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 19:34:24,390 - octoprint.plugins.excluderegion - INFO - Event received: event=Disconnecting payload=None
2019-06-30 19:34:24,393 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:34:24,497 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Error: Connection error, see Terminal tab"
2019-06-30 19:34:24,500 - octoprint.util.comm - ERROR - Unexpected error while connecting to serial port: /dev/ttyACM0 SerialException: '[Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable' @ comm.py:_openSerial:2611 (hook default)
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2611, in _openSerial
serial_obj = factory(self, self._port, self._baudrate, settings().getFloat(["serial", "timeout", "connection"]))
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2600, in default
serial_obj = serial.Serial(**serial_port_args)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialutil.py", line 240, in __init__
self.open()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 272, in open
self._reconfigure_port(force_update=True)
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/serial/serialposix.py", line 312, in _reconfigure_port
raise SerialException(msg.errno, "Could not exclusively lock port {}: {}".format(self._port, msg))
SerialException: [Errno 11] Could not exclusively lock port /dev/ttyACM0: [Errno 11] Resource temporarily unavailable
2019-06-30 19:34:24,504 - octoprint.plugins.discordremote - INFO - Received event: printer_state_error
2019-06-30 19:34:25,433 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Error: Connection error, see Terminal tab', 'state_id': 'ERROR'}
2019-06-30 19:34:25,674 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 20.08ms
2019-06-30 19:34:25,698 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 18.58ms
2019-06-30 19:34:26,079 - octoprint.plugins.excluderegion - INFO - Event received: event=Error payload={'reason': 'connection', 'error': 'Connection error, see Terminal tab'}
2019-06-30 19:34:26,080 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:34:26,191 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131074, 'current_overheat': True, 'past_issue': True, 'past_overheat': True, 'current_issue': True, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:34:26,890 - octoprint.plugins.tracking - INFO - Sent tracking event commerror_connection, payload: {'throttled_now': True, 'throttled_past': True, 'commerror_text': 'Connection error, see Terminal tab', 'throttled_mask': 131074}
2019-06-30 19:34:27,696 - octoprint.plugins.tracking - INFO - Sent tracking event system_throttled, payload: {'throttled_mask': 131074, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': True, 'throttled_now': True, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:34:39,183 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 356, "op": 1}
2019-06-30 19:34:39,306 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:35:06,104 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo reboot now
2019-06-30 19:35:20,234 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 356, "op": 1}
2019-06-30 19:35:20,338 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:35:51,128 - octoprint.startup - INFO - ******************************************************************************
2019-06-30 19:35:51,134 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-06-30 19:35:51,179 - octoprint.startup - INFO - ******************************************************************************
2019-06-30 19:35:51,496 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-06-30 19:35:51,719 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-06-30 19:35:51,830 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-06-30 19:36:20,073 - octoprint.plugin.core - INFO - Plugin Pushbullet (0.1.9) is disabled.
2019-06-30 19:36:20,376 - octoprint.plugin.core - INFO - Plugin PrintTimeGenius Plugin (1.3) is disabled.
2019-06-30 19:36:20,954 - octoprint.plugin.core - INFO - Plugin Themeify (1.1.0) is disabled.
2019-06-30 19:36:20,974 - octoprint.plugin.core - INFO - Plugin DeleteAfterPrint Plugin (1.1.1) is disabled.
2019-06-30 19:36:23,473 - octoprint.plugin.core - INFO - Plugin Octolapse (v0.3.1) is disabled.
2019-06-30 19:36:23,556 - octoprint.plugins.octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-06-30 19:36:23,591 - octoprint.plugin.core - INFO - Found 58 plugin(s) providing 53 mixin implementations, 71 hook handlers
2019-06-30 19:36:24,171 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-06-30 19:36:24,235 - octoprint.server - INFO - Intermediary server started
2019-06-30 19:36:24,237 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-06-30 19:36:24,509 - octoprint.plugin.core - INFO - Found 58 plugin(s) providing 53 mixin implementations, 71 hook handlers
2019-06-30 19:36:24,564 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-06-30 19:36:25,135 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,138 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,142 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,147 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,150 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,155 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,162 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,166 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,170 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,173 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,178 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,183 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,188 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,192 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,196 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,201 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,206 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,210 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,213 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,217 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,221 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,226 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,230 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,236 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,240 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,244 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,249 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,253 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,257 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,261 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,267 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,271 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,276 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,280 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,284 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,288 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,292 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,296 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,299 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,303 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,308 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,313 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,318 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,322 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,326 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,331 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,336 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,340 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,345 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,349 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,355 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,359 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,363 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,367 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,372 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,376 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,380 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,386 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,390 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,394 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,398 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,402 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,408 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,413 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,417 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,426 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,430 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,434 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,439 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,444 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,448 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,452 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,456 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,460 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,465 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,470 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,474 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,479 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,483 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,489 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,494 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,498 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,503 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,508 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,511 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,516 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,520 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,525 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,529 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,534 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,539 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,543 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,547 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,551 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,554 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,559 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,564 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,570 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,574 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,579 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,583 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,586 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,592 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,597 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,601 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,606 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,609 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,615 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,618 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,623 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,626 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,632 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,636 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,641 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,645 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,649 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,654 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,659 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,663 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,667 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,672 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,677 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,682 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,685 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,691 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,695 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,699 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,702 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,708 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,713 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,717 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,721 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,725 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,730 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,735 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,740 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,743 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,747 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,753 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,757 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,761 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,766 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,771 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,776 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,779 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,791 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,795 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,800 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,804 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,808 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,812 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,817 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,821 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,825 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,830 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,835 - octoprint.filemanager - ERROR - Exception while retrieving additional extension tree entries from hook uploadanything
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/filemanager/__init__.py", line 88, in full_extension_tree
hook_result = hook()
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 27, in get_extension_tree
uploadanything=self.allowed.replace(" ", "").split(",")
File "/home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything/__init__.py", line 13, in allowed
return str(self._settings.get(["allowed"]))
AttributeError: 'NoneType' object has no attribute 'get'
2019-06-30 19:36:25,836 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-06-30 19:36:25,841 - octoprint.printer.standard - INFO - Using print time estimator provided by m73etaoverride
2019-06-30 19:36:26,460 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-06-30 19:36:26,478 - octoprint.plugins.multi_colors - INFO - MultiColors init
2019-06-30 19:36:29,510 - octoprint.util.pip - INFO - Using "/home/pi/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2019-06-30 19:36:32,122 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2019-06-30 19:36:32,123 - octoprint.util.pip - INFO - pip installs to /home/pi/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-06-30 19:36:32,125 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-06-30 19:36:32,134 - octoprint.plugin.core - INFO - Initialized 53 plugin implementation(s)
2019-06-30 19:36:32,158 - octoprint.plugins.gcodesystemcommands - INFO - Add command definition OCTO20 = /home/pi/blinkstick/ambientlight.py
2019-06-30 19:36:32,159 - octoprint.plugins.gcodesystemcommands - INFO - Add command definition OCTO21 = /home/pi/blinkstick/turnoffblinkstick.py
2019-06-30 19:36:32,171 - py.warnings - WARNING - /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/__init__.py:639: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2019-06-30 19:36:32,189 - octoprint.plugin.core - INFO - 58 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Active Filters Extended (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_active_filters_extended
| Announcement Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Autoscroll (0.0.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoscroll
| Autoselect Plugin (0.2.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !DeleteAfterPrint Plugin (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_DeleteAfterPrint
| Detailed Progress Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_detailedprogress
| DiscordRemote (2.40.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_discordremote
| Discovery (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_displayz
| Dragon Order (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_dragon_order
| EEPROM Marlin Editor Plugin (1.2.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Error Tracking (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Exclude Region (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_excluderegion
| FileManager (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_filemanager
| Firmware Updater (1.4.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fullscreen
| GCODE System Commands (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_gcodesystemcommands
| Gcodebar Plugin (0.1.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GCodeBar
| GcodeEditor (0.2.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_GcodeEditor
| HeaterTimeout (0.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Kronos Data Collector (1.2.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_kronos_data_collector
| Logging (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/logging
| M117PopUp (0.6.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_M117PopUp
| M73 ETA Override (1.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Multi Colors (1.0.16) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_multi_colors
| MultipleUpload Plugin (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_MultipleUpload
| !Octolapse (v0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octolapse
| OctoPod Plugin (0.1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octopod
| OctoRant (1.2.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octorant
| Pi Support Plugin (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.3.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_preheat
| Print History Plugin (1.2) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Printer Stats (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_stats
| PrinterAlerts (0.7.4) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrinterAlerts
| !PrintTimeGenius Plugin (1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| Prusa Mesh Leveling (0.3.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| !Pushbullet (0.1.9) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octobullet
| Sidebar Temp Graph (0.1.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_sidebartempgraph
| Slic3r (1.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slic3r
| Slicer (1.4.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_slicer
| SlicerSettingsParser (2.0.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsParser
| SlicerSettingsTab (1.0.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_SlicerSettingsTab
| SnapStream (0.2.3) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Stateful Sidebar (0.1.1) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/statefulsidebar
| Terminal Commands (0.1.6) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| !Themeify (1.1.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_themeify
| TouchUI (0.3.13) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_touchui
| Upload Anything (1.0.0) = /home/pi/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_uploadanything
| Virtual Printer (bundled) = /home/pi/OctoPrint/venv/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-06-30 19:36:32,204 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/OctoPrint/venv
2019-06-30 19:36:32,223 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-06-30 19:36:32,255 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-06-30 19:36:34,487 - octoprint.server - INFO - Shutting down intermediary server...
2019-06-30 19:36:34,506 - octoprint.server - INFO - Intermediary server shut down
2019-06-30 19:36:34,510 - octoprint.events - INFO - Processing startup event, this is our first event
2019-06-30 19:36:34,510 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-06-30 19:36:34,513 - octoprint.plugins.discordremote - INFO - Received event: startup
2019-06-30 19:36:34,532 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-06-30 19:36:34,757 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-06-30 19:36:34,765 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-06-30 19:36:34,825 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on raspberrypi for SSDP
2019-06-30 19:36:34,891 - octoprint.plugins.pi_support - WARNING - This Raspberry Pi is reporting problems that might lead to bad performance or errors caused by overheating or insufficient power.
!!! FREQUENCY CAPPING DUE TO OVERHEATING REPORTED !!! Improve cooling on the Pi's CPU and GPU.
2019-06-30 19:36:34,961 - octoprint.server - INFO - Listening on http://0.0.0.0:5000 and http://[::]:5000
2019-06-30 19:36:35,146 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948595051 (10.0.1.132) 85.69ms
2019-06-30 19:36:35,171 - octoprint.plugins.discordremote - ERROR - Failed to send message
2019-06-30 19:36:35,172 - octoprint.plugins.excluderegion - INFO - Event received: event=Startup payload=None
2019-06-30 19:36:35,529 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1561948595460 (10.0.1.132) 55.60ms
2019-06-30 19:36:35,734 - octoprint.plugins.excluderegion - INFO - Event received: event=ConnectivityChanged payload={'new': True, 'old': False}
2019-06-30 19:36:35,785 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131072, 'current_overheat': False, 'past_issue': True, 'past_overheat': True, 'current_issue': False, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:36:35,980 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.95s
2019-06-30 19:36:36,303 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-06-30 19:36:36,368 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948596158 (10.0.1.132) 131.18ms
2019-06-30 19:36:36,669 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:36:36,672 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:36:36,681 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': (u'/home/pi/.octoprint/uploads', u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'), 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:36:36,760 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.1s
2019-06-30 19:36:36,829 - octoprint.plugins.tracking - INFO - Sent tracking event system_unthrottled, payload: {'throttled_mask': 131072, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': False, 'throttled_now': False, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:36:36,924 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-06-30 19:36:37,496 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.0s
2019-06-30 19:36:37,525 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948597322 (10.0.1.132) 184.30ms
2019-06-30 19:36:37,779 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue
2019-06-30 19:36:38,187 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.94s
2019-06-30 19:36:38,590 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.97s
2019-06-30 19:36:38,630 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948598489 (10.0.1.132) 135.60ms
2019-06-30 19:36:38,737 - octoprint.util.pip - INFO - Using "/home/pi/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2019-06-30 19:36:38,739 - octoprint.util.pip - INFO - pip installs to /home/pi/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-06-30 19:36:38,739 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-06-30 19:36:38,875 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2019-06-30 19:36:38,893 - octoprint.plugins.SlicerSettingsParser - INFO - SlicerSettingsParser still active
2019-06-30 19:36:38,897 - octoprint.plugins.discordremote - INFO - DiscordRemote is started !
2019-06-30 19:36:38,922 - octoprint.plugins.excluderegion - INFO - Setting update detected: g90InfluencesExtruder=False
2019-06-30 19:36:38,926 - octoprint.plugins.octopod - INFO - OctoPod loaded!
2019-06-30 19:36:38,936 - octoprint.plugins.octorant - INFO - Octorant is started !
2019-06-30 19:36:38,964 - octoprint.plugins.stats - INFO - Printer Stats
2019-06-30 19:36:39,014 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-06-30 19:36:39,204 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.92s
2019-06-30 19:36:39,229 - octoprint.plugins.discordremote - INFO - Socket URL is wss://gateway.discord.gg
2019-06-30 19:36:39,287 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-06-30 19:36:39,665 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.91s
2019-06-30 19:36:39,760 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.9', 'ram': 901685248, 'version': u'1.3.11', 'pip': '9.0.1', 'cores': 4, 'freq': 1200.0, 'pi_model': 'Raspberry Pi 3 Model B Rev 1.2', 'os': 'linux'}
2019-06-30 19:36:39,768 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948599640 (10.0.1.132) 96.77ms
2019-06-30 19:36:40,112 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://0.0.0.0:5000/'}
2019-06-30 19:36:40,142 - octoprint.plugins.discordremote - INFO - Received HELLO message
2019-06-30 19:36:40,166 - octoprint.plugins.discordremote - INFO - Sending IDENTIFY message
2019-06-30 19:36:40,175 - octoprint.plugins.discordremote - INFO - Heartbeat thread: None
2019-06-30 19:36:40,202 - octoprint.plugins.discordremote - INFO - Starting Heartbeat thread
2019-06-30 19:36:40,218 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": null, "op": 1}
2019-06-30 19:36:40,260 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.87s
2019-06-30 19:36:40,603 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 20}
2019-06-30 19:36:40,697 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:36:40,770 - octoprint.plugins.discordremote - INFO - Received READY message
2019-06-30 19:36:40,843 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948600776 (10.0.1.132) 45.98ms
2019-06-30 19:36:41,369 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.83s
2019-06-30 19:36:41,514 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.88s
2019-06-30 19:36:41,912 - tornado.access - WARNING - 404 GET /cached.gif?_=1561948601859 (10.0.1.132) 30.60ms
2019-06-30 19:37:22,514 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 2, "op": 1}
2019-06-30 19:37:22,606 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:37:25,107 - octoprint.server.preemptive_cache - INFO - ... done in 44.99s
2019-06-30 19:37:25,108 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.0.1.210:5000/'}
2019-06-30 19:37:25,532 - octoprint.server.preemptive_cache - INFO - ... done in 0.42s
2019-06-30 19:37:29,060 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 19:37:29,339 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:37:29,450 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 19:37:33,805 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 19:37:38,194 - octoprint.plugins.excluderegion - INFO - Event received: event=Connecting payload=None
2019-06-30 19:37:38,295 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2019-06-30 19:37:38,301 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Offline', 'state_id': 'OFFLINE'}
2019-06-30 19:37:38,370 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2019-06-30 19:37:38,376 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-06-30 19:37:38,379 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Opening serial port', 'state_id': 'OPEN_SERIAL'}
2019-06-30 19:37:38,393 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Connecting', 'state_id': 'CONNECTING'}
2019-06-30 19:37:38,395 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:39,148 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 27.83ms
2019-06-30 19:37:39,167 - tornado.access - WARNING - 409 POST /api/printer/command (10.0.1.132) 40.92ms
2019-06-30 19:37:39,499 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:41,447 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-06-30 19:37:41,455 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-06-30 19:37:41,464 - octoprint.plugins.discordremote - INFO - Received event: printer_state_operational
2019-06-30 19:37:41,468 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:41,515 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.1 based on Marlin"
2019-06-30 19:37:42,999 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Operational', 'state_id': 'OPERATIONAL'}
2019-06-30 19:37:43,585 - octoprint.plugins.excluderegion - INFO - Event received: event=Connected payload={'baudrate': 115200, 'port': u'AUTO'}
2019-06-30 19:37:43,585 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-06-30 19:37:43,586 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-06-30 19:37:43,868 - octoprint.plugins.excluderegion - INFO - Event received: event=FirmwareData payload={'data': {'EXTRUDER_COUNT': '1', 'UUID': '00000000-0000-0000-0000-000000000000', 'FIRMWARE_NAME': 'Prusa-Firmware 3.7.1 based on Marlin', 'MACHINE_TYPE': 'Prusa i3 MK3S', 'PROTOCOL_VERSION': '1.0', 'FIRMWARE_URL': 'https://github.com/prusa3d/Prusa-Firmware'}, 'name': 'Prusa-Firmware 3.7.1 based on Marlin'}
2019-06-30 19:37:43,883 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'printables'}
2019-06-30 19:37:43,888 - octoprint.plugins.excluderegion - INFO - Event received: event=UpdatedFiles payload={'type': 'gcode'}
2019-06-30 19:37:43,893 - octoprint.plugins.excluderegion - INFO - Event received: event=FirmwareData payload={'data': {'EXTRUDER_COUNT': '1', 'UUID': '00000000-0000-0000-0000-000000000000', 'FIRMWARE_NAME': 'Prusa-Firmware 3.7.1 based on Marlin', 'MACHINE_TYPE': 'Prusa i3 MK3S', 'PROTOCOL_VERSION': '1.0', 'FIRMWARE_URL': 'https://github.com/prusa3d/Prusa-Firmware'}, 'name': 'Prusa-Firmware 3.7.1 based on Marlin'}
2019-06-30 19:37:44,944 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'AUTO', 'firmware_name': 'Prusa-Firmware 3.7.1 based on Marlin'}
2019-06-30 19:37:45,526 - octoprint.server.util.flask - INFO - Passively logging in user _api from 10.0.1.84
2019-06-30 19:37:46,653 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 19:37:46,659 - octoprint.plugins.excluderegion - INFO - Event received: event=FileSelected payload={'origin': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'user': 'dummy', 'size': None, 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:37:46,659 - octoprint.plugins.excluderegion - INFO - File selected, resetting internal state
2019-06-30 19:37:46,675 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-06-30 19:37:46,682 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Starting', 'state_id': 'STARTING'}
2019-06-30 19:37:46,692 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 19:37:46,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:37:46,756 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-06-30 19:37:46,791 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
2019-06-30 19:37:46,810 - octoprint.plugins.discordremote - INFO - Received event: printing_started
2019-06-30 19:37:48,234 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintStarted payload={'origin': 'local', 'timeremaining': '10 hours and 30 minutes', 'user': 'dummy', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': '0 seconds'}
2019-06-30 19:37:48,236 - octoprint.plugins.excluderegion - INFO - Printing started
2019-06-30 19:37:48,271 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'local', 'throttled_now': True, 'throttled_mask': 131074, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_past': True}
2019-06-30 19:37:48,534 - octoprint.plugins.octorant - ERROR - printing_started: ConnectionError on: 'http://10.0.1.210:8081/?action=snapshot'
2019-06-30 19:37:49,026 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Printing', 'state_id': 'PRINTING'}
2019-06-30 19:37:49,187 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131074, 'current_overheat': True, 'past_issue': True, 'past_overheat': True, 'current_issue': True, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:37:49,509 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.84
2019-06-30 19:37:49,789 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:37:50,045 - octoprint.plugins.tracking - INFO - Sent tracking event system_throttled, payload: {'throttled_mask': 131074, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': True, 'throttled_now': True, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:38:03,868 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:38:03,995 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:38:44,914 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:38:45,028 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:39:25,960 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:39:26,079 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:40:07,006 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:40:07,112 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:40:29,002 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 19:40:31,247 - octoprint.plugins.excluderegion - INFO - Event received: event=Home payload=None
2019-06-30 19:40:33,288 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-06-30 19:40:48,053 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 8, "op": 1}
2019-06-30 19:40:48,165 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:40:58,557 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-06-30 19:41:03,158 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-06-30 19:41:03,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:41:03,180 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-06-30 19:41:03,185 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelling payload={'origin': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:41:03,190 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:41:03,196 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:41:03,205 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:41:03,211 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Cancelling', 'state_id': 'CANCELLING'}
2019-06-30 19:41:03,236 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': (u'/home/pi/.octoprint/uploads', u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'), 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:41:03,272 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: None
2019-06-30 19:41:03,418 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:41:03,430 - octoprint.plugins.discordremote - INFO - Received event: printing_cancelled
2019-06-30 19:41:04,253 - octoprint.plugins.tracking - INFO - Sent tracking event print_cancelled, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 196, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:41:04,905 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:41:04,915 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-06-30 19:41:04,960 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-06-30 19:41:05,639 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelled payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 196.59707689099997, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:41:05,640 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:41:05,657 - octoprint.plugins.octorant - ERROR - printing_cancelled: ConnectionError on: 'http://10.0.1.210:8081/?action=snapshot'
2019-06-30 19:41:06,387 - octoprint.plugins.excluderegion - INFO - Event received: event=plugin_pi_support_throttle_state payload={'raw_value': 131072, 'current_overheat': False, 'past_issue': True, 'past_overheat': True, 'current_issue': False, 'past_undervoltage': False, 'current_undervoltage': False}
2019-06-30 19:41:06,397 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterReset payload={'idle': False}
2019-06-30 19:41:06,412 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataStatisticsUpdated payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'storage': 'local'}
2019-06-30 19:41:06,723 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:41:06,727 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintFailed payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 196.59707689099997, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:41:06,735 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:41:06,747 - octoprint.plugins.printhistory - INFO - Can't parse additional parameters from /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:41:07,046 - octoprint.plugins.discordremote - INFO - Received event: printer_state_operational
2019-06-30 19:41:07,277 - octoprint.plugins.tracking - INFO - Sent tracking event system_unthrottled, payload: {'throttled_mask': 131072, 'throttled_voltage_now': False, 'throttled_voltage_past': False, 'throttled_overheat_now': False, 'throttled_now': False, 'throttled_past': True, 'throttled_overheat_past': True}
2019-06-30 19:41:08,247 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Operational', 'state_id': 'OPERATIONAL'}
2019-06-30 19:41:08,260 - octoprint.plugins.tracking - INFO - Sent tracking event print_failed, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 196, 'reason': 'cancelled', 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:41:09,155 - octoprint.server.util.flask - INFO - Passively logging in user _api from 10.0.1.84
2019-06-30 19:41:24,994 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-06-30 19:41:24,999 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Starting', 'state_id': 'STARTING'}
2019-06-30 19:41:25,011 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 19:41:25,041 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:41:25,067 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
2019-06-30 19:41:25,069 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-06-30 19:41:25,092 - octoprint.plugins.discordremote - INFO - Periodic thread joined.
2019-06-30 19:41:25,100 - octoprint.plugins.discordremote - INFO - Received event: printing_started
2019-06-30 19:41:25,950 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'local', 'throttled_now': False, 'throttled_mask': 131072, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_past': True}
2019-06-30 19:41:27,551 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintStarted payload={'origin': 'local', 'timeremaining': '10 hours and 30 minutes', 'user': 'dummy', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': '0 seconds'}
2019-06-30 19:41:27,553 - octoprint.plugins.excluderegion - INFO - Printing started
2019-06-30 19:41:27,565 - octoprint.plugins.octorant - ERROR - printing_started: ConnectionError on: 'http://10.0.1.210:8081/?action=snapshot'
2019-06-30 19:41:28,246 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Printing', 'state_id': 'PRINTING'}
2019-06-30 19:41:29,123 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:41:29,228 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:42:10,169 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:42:10,269 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:42:17,221 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 19:42:23,769 - octoprint.plugins.excluderegion - INFO - Event received: event=Home payload=None
2019-06-30 19:42:24,746 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 19:42:44,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.4, 'old': None}
2019-06-30 19:42:44,752 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.3, 'old': 0.4}
2019-06-30 19:42:51,214 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:42:51,324 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:42:55,041 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.3}
2019-06-30 19:43:12,789 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.8, "feedRate": 2100.0, "originalCommand": "G1 E-0.80000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.80000 F2100.00000']
2019-06-30 19:43:12,808 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.6, 'old': 0.2}
2019-06-30 19:43:12,833 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.6}
2019-06-30 19:43:12,840 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:32,260 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:43:32,358 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:43:40,546 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:40,548 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:40,567 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:40,663 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:40,719 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:40,719 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:50,279 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:50,280 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:50,307 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:50,345 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:50,354 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:50,355 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:53,127 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:53,129 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:53,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:53,188 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:53,195 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:53,197 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:56,094 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:43:56,094 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:56,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:56,152 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:56,167 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:43:56,168 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:43:58,982 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:43:59,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:43:59,042 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:43:59,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:44:13,309 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:44:13,401 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:44:24,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:44:24,636 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:44:24,656 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:44:24,703 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:44:26,203 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:44:26,207 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:44:54,358 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:44:54,450 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:44:55,374 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:44:55,379 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:44:55,409 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:44:56,400 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:44:56,411 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:44:56,412 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:45:08,946 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:45:08,947 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:45:08,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:45:09,973 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:45:10,009 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:45:10,011 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:45:35,403 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:45:35,499 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:45:46,305 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:45:46,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:45:46,336 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:45:46,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:45:47,297 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:45:47,298 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:46:15,206 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.84
2019-06-30 19:46:15,210 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.84'}
2019-06-30 19:46:16,443 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:46:16,539 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:46:53,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:46:53,387 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:46:53,410 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:46:54,414 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:46:54,449 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:46:54,451 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:46:57,489 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:46:57,595 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:47:34,092 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:47:34,093 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:47:34,148 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:47:34,422 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:47:34,580 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:47:34,581 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:47:38,537 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:47:38,682 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:48:19,581 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:48:19,678 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:48:42,489 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:42,490 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:42,545 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:42,883 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:43,098 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:43,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:46,810 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:46,815 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:46,838 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:46,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:46,883 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:46,885 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:49,675 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:49,676 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:49,696 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:49,733 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:49,745 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:49,746 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:52,666 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:48:52,667 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:52,691 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:52,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:52,736 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:48:52,737 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:48:55,550 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:48:55,571 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:48:55,608 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:48:55,617 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:49:00,636 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:49:00,732 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:49:21,199 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:49:21,200 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:49:21,225 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:49:21,269 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:49:22,777 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:49:22,778 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:49:41,682 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:49:41,777 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:49:51,947 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:49:51,948 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:49:51,967 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:49:52,969 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:49:52,979 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:49:52,980 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:50:05,534 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:50:05,534 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:50:05,555 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:50:06,546 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:50:07,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:50:07,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:50:22,729 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:50:22,825 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:50:42,874 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:50:42,875 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:50:42,897 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:50:42,932 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:50:43,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:50:43,815 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:51:03,775 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:51:03,870 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:51:24,173 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 19:51:39,756 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 920}
2019-06-30 19:51:44,821 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:51:44,940 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:51:49,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:51:49,920 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:51:49,968 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:51:50,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:51:51,017 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:51:51,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:52:25,874 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:52:25,973 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:52:30,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:52:30,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:52:30,716 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:52:30,991 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:52:31,188 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:52:31,189 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:06,925 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:53:07,025 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:53:39,056 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:39,057 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:39,113 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:39,448 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:39,666 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:39,667 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:43,696 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:43,698 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:43,725 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:43,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:43,770 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:43,771 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:46,613 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:46,614 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:46,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:46,666 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:46,673 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:46,675 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:47,978 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:53:48,073 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:53:49,566 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:53:49,567 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:49,591 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:49,625 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:49,636 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:53:49,637 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:53:52,446 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:53:52,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:53:52,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:53:52,549 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:54:18,116 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:54:18,119 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:54:18,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:54:18,169 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:54:18,916 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:54:18,918 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:54:20,243 - octoprint.server.api.system - INFO - Performing command for custom:streamon
2019-06-30 19:54:22,098 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.132
2019-06-30 19:54:22,102 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:54:25,280 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 19:54:25,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 19:54:25,591 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 19:54:28,574 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 19:54:29,094 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:54:29,178 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:54:48,773 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:54:48,774 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:54:48,827 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:54:49,829 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:54:49,849 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:54:49,850 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:55:02,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:55:02,387 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:55:02,407 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:55:03,392 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:55:03,427 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:55:03,431 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:55:10,152 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:55:10,252 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:55:38,767 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:55:38,769 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:55:39,708 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:55:39,740 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:55:40,643 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:55:40,644 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:55:51,198 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:55:51,293 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:56:32,245 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:56:32,340 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:56:46,613 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:56:46,614 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:56:46,642 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:56:47,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:56:47,675 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:56:47,676 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:57:13,289 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:57:13,388 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:57:27,247 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 19:57:27,250 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 19:57:27,292 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 19:57:27,563 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 19:57:27,718 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 19:57:27,721 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 19:57:54,333 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 17, "op": 1}
2019-06-30 19:57:54,469 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:58:31,097 - octoprint.util.comm - WARNING - Printer sent 'start' while printing. External reset? Aborting job since printer lost state.
2019-06-30 19:58:31,113 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:58:31,121 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2019-06-30 19:58:31,126 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:58:31,141 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelling payload={'origin': 'local', 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:58:31,148 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:58:31,151 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:58:31,164 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Cancelling', 'state_id': 'CANCELLING'}
2019-06-30 19:58:31,203 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataAnalysisStarted payload={'origin': 'local', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'type': 'gcode', 'name': (u'/home/pi/.octoprint/uploads', u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'), 'file': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode'}
2019-06-30 19:58:31,214 - octoprint.printer.standard.job - INFO - Print job cancelled - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: None
2019-06-30 19:58:31,355 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:58:31,361 - octoprint.plugins.discordremote - INFO - Received event: printing_cancelled
2019-06-30 19:58:32,186 - octoprint.plugins.tracking - INFO - Sent tracking event print_cancelled, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 1026, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:58:33,036 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 19:58:33,044 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-06-30 19:58:33,110 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-06-30 19:58:33,214 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintCancelled payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 1026.2268927240002, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:58:33,215 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:58:33,791 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterReset payload={'idle': False}
2019-06-30 19:58:33,803 - octoprint.plugins.excluderegion - INFO - Event received: event=MetadataStatisticsUpdated payload={'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'storage': 'local'}
2019-06-30 19:58:33,854 - octoprint.plugins.detailedprogress - INFO - Printing stopped. Detailed progress stopped.
2019-06-30 19:58:33,866 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintFailed payload={'origin': 'local', 'timeremaining': 'Unknown', 'reason': 'cancelled', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': 'Unknown', 'time': 1026.2268927240002, 'position': {'e': None, 'f': None, 't': None, 'y': None, 'x': None, 'z': None}}
2019-06-30 19:58:33,872 - octoprint.plugins.excluderegion - INFO - Printing stopped
2019-06-30 19:58:33,881 - octoprint.plugins.printhistory - INFO - Can't parse additional parameters from /home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode
2019-06-30 19:58:34,000 - octoprint.plugins.discordremote - INFO - Received event: printer_state_operational
2019-06-30 19:58:34,673 - octoprint.plugins.tracking - INFO - Sent tracking event print_failed, payload: {'origin': 'local', 'throttled_mask': 131072, 'elapsed': 1026, 'reason': 'cancelled', 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_now': False, 'throttled_past': True}
2019-06-30 19:58:34,924 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Operational', 'state_id': 'OPERATIONAL'}
2019-06-30 19:58:35,388 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 22, "op": 1}
2019-06-30 19:58:35,495 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:59:16,431 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 23, "op": 1}
2019-06-30 19:59:16,519 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 19:59:57,475 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 24, "op": 1}
2019-06-30 19:59:57,568 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:00:36,336 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.132
2019-06-30 20:00:36,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.132'}
2019-06-30 20:00:37,496 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.132
2019-06-30 20:00:37,785 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.132'}
2019-06-30 20:00:37,803 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 10.0.1.132
2019-06-30 20:00:38,990 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 25, "op": 1}
2019-06-30 20:00:38,992 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:00:41,555 - octoprint.plugins.multi_colors - INFO - on_api_command called: 'settings' / '{u'command': u'settings'}'
2019-06-30 20:00:48,850 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-06-30 20:00:48,857 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Starting', 'state_id': 'STARTING'}
2019-06-30 20:00:48,866 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Body_Corner_0.3mm_PET_MK3SMMU2S.gcode, owner: dummy, user: dummy
2019-06-30 20:00:48,874 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-06-30 20:00:48,893 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-06-30 20:00:48,952 - octoprint.plugins.detailedprogress - INFO - Printing started. Detailed progress started.
2019-06-30 20:00:48,957 - octoprint.plugins.discordremote - INFO - Periodic thread joined.
2019-06-30 20:00:48,961 - octoprint.plugins.discordremote - INFO - Received event: printing_started
2019-06-30 20:00:49,796 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'local', 'throttled_now': False, 'throttled_mask': 131072, 'file': '037fe128c42f4b07e48ab51548de9652dee0ffe7', 'throttled_past': True}
2019-06-30 20:00:50,573 - octoprint.plugins.excluderegion - INFO - Event received: event=PrintStarted payload={'origin': 'local', 'timeremaining': '10 hours and 30 minutes', 'user': 'dummy', 'file': u'/home/pi/.octoprint/uploads/Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'owner': 'dummy', 'path': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'spent_formatted': '0:00:00', 'size': 29302567L, 'name': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'externaddr': '104.220.86.182', 'ipaddr': '10.0.1.210', 'spent': 0, 'remaining_formatted': '10:30:00', 'filename': u'Body_Corner_0.3mm_PET_MK3SMMU2S.gcode', 'timespent': '0 seconds', 'remaining': 37800}
2019-06-30 20:00:50,573 - octoprint.plugins.excluderegion - INFO - Printing started
2019-06-30 20:00:51,357 - octoprint.plugins.excluderegion - INFO - Event received: event=PrinterStateChanged payload={'state_string': 'Printing', 'state_id': 'PRINTING'}
2019-06-30 20:00:51,906 - octoprint.server.util.sockjs - INFO - New connection from client: 10.0.1.84
2019-06-30 20:00:52,245 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientOpened payload={'remoteAddress': '10.0.1.84'}
2019-06-30 20:00:53,235 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.0.1.84
2019-06-30 20:00:53,241 - octoprint.plugins.excluderegion - INFO - Event received: event=ClientClosed payload={'remoteAddress': '10.0.1.84'}
2019-06-30 20:01:20,046 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:01:20,159 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:01:49,729 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-06-30 20:02:01,096 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:02:01,193 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:02:03,120 - octoprint.plugins.excluderegion - INFO - Event received: event=Home payload=None
2019-06-30 20:02:42,146 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:02:42,243 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:03:02,319 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.4, 'old': None}
2019-06-30 20:03:02,346 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.3, 'old': 0.4}
2019-06-30 20:03:12,712 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.3}
2019-06-30 20:03:23,193 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:03:23,283 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:03:30,430 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.8, "feedRate": 2100.0, "originalCommand": "G1 E-0.80000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.80000 F2100.00000']
2019-06-30 20:03:30,453 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.6, 'old': 0.2}
2019-06-30 20:03:30,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.6}
2019-06-30 20:03:30,479 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:03:58,159 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:03:58,161 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:03:58,180 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:03:58,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:03:58,357 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:03:58,360 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:04,244 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:04:04,344 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:04:07,922 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:07,924 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:07,946 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:08,009 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:08,014 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:08,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:10,764 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:10,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:10,799 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:10,826 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:10,837 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:10,839 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:13,738 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:13,739 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:13,762 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:13,798 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:13,840 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:13,841 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:16,617 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:16,641 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:16,679 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:16,687 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:42,285 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:04:42,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:04:42,306 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:04:42,455 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:04:43,087 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:04:43,089 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:04:45,293 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:04:45,381 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:05:12,976 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:05:12,978 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:05:13,024 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:05:14,039 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:05:14,048 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:05:14,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:05:26,339 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:05:26,436 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:05:26,593 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:05:26,594 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:05:26,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:05:27,659 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:05:28,700 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:05:28,702 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:06:03,010 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:06:03,011 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:06:03,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:06:03,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:06:04,886 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:06:04,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:06:07,377 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:06:07,470 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:06:24,174 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:06:39,749 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 1820}
2019-06-30 20:06:48,425 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:06:48,520 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:07:11,027 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:07:11,029 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:07:11,049 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:07:12,095 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:07:13,153 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:07:13,154 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:07:29,472 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:07:29,573 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:07:51,778 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:07:51,780 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:07:52,012 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:07:52,060 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:07:52,222 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:07:52,223 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:08:10,521 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:08:10,623 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:08:51,568 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:08:51,666 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:09:00,134 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:00,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:00,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:00,520 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:00,739 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:00,741 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:04,447 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:04,449 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:04,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:04,509 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:04,521 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:04,521 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:07,315 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:07,317 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:07,339 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:07,381 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:07,390 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:07,393 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:10,305 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:10,306 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:10,329 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:10,367 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:10,379 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:10,381 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:13,186 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:13,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:13,242 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:13,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:09:32,616 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:09:32,713 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:09:38,843 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:09:38,845 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:09:38,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:09:38,914 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:09:40,428 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:09:40,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:10:09,588 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:10:09,590 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:10:09,610 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:10:10,610 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:10:10,625 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:10:10,627 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:10:13,663 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 28, "op": 1}
2019-06-30 20:10:13,761 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:10:23,173 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:10:23,175 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:10:23,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:10:24,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:10:24,226 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:10:24,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:10:54,707 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 29, "op": 1}
2019-06-30 20:10:54,798 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:11:00,517 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:11:00,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:11:00,537 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:11:00,560 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:11:01,458 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:11:01,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:11:35,754 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 34, "op": 1}
2019-06-30 20:11:35,854 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:12:07,596 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:12:07,598 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:12:07,625 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:12:08,625 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:12:08,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:12:08,661 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:12:16,796 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 34, "op": 1}
2019-06-30 20:12:16,935 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:12:48,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:12:48,304 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:12:48,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:12:48,633 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:12:48,789 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:12:48,790 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:12:57,843 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 34, "op": 1}
2019-06-30 20:12:57,945 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:13:38,892 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:13:38,993 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:13:56,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:13:56,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:13:56,755 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:13:57,319 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:13:57,327 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:13:57,329 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:01,341 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:01,343 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:01,364 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:01,400 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:01,414 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:01,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:04,248 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:04,250 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:04,270 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:04,296 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:04,306 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:04,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:07,206 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:07,207 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:07,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:07,263 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:07,276 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:07,277 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:10,085 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0206, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:10,111 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:10,146 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:10,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:14:19,939 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:14:20,037 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:14:35,736 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:14:35,738 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:14:35,763 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:14:35,808 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:14:36,559 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:14:36,560 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:15:00,986 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:15:01,077 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:15:06,436 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:15:06,437 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:15:06,492 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:15:07,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:15:07,534 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:15:07,535 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:15:20,072 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:15:20,074 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:15:20,097 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:15:21,085 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:15:21,120 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:15:21,122 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:15:42,032 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:15:42,141 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:15:56,479 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:15:56,481 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:15:57,426 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:15:57,478 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:15:58,355 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:15:58,355 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:16:23,078 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:16:23,175 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:17:04,125 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:17:04,226 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:17:04,458 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:17:04,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:17:04,504 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:17:05,520 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:17:05,555 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:17:05,556 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:17:45,174 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:17:45,194 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:17:45,196 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:17:45,251 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:17:45,278 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:17:45,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:17:45,702 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:17:45,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:18:26,222 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:18:26,319 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:18:53,590 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:18:53,592 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:18:53,648 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:18:54,088 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:18:54,202 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:18:54,203 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:18:57,795 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:18:57,799 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:18:57,822 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:18:57,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:18:57,867 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:18:57,869 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:00,656 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:00,657 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:00,685 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:00,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:00,731 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:00,732 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:03,627 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:03,628 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:03,653 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:03,688 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:03,697 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:03,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:06,498 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:06,500 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:06,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:06,567 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:06,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:06,576 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:07,271 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:19:07,372 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:19:32,175 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:19:32,177 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:19:32,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:19:32,251 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:19:32,996 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:19:32,999 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:19:48,313 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 35, "op": 1}
2019-06-30 20:19:48,408 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:20:02,883 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:20:02,884 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:20:02,932 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:20:03,945 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:20:03,954 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:20:03,955 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:20:16,494 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:20:16,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:20:16,517 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:20:17,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:20:18,605 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:20:18,607 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:20:29,362 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 36, "op": 1}
2019-06-30 20:20:29,464 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:20:52,916 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:20:52,918 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:20:53,859 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:20:53,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:20:54,792 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:20:54,796 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:21:10,406 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 36, "op": 1}
2019-06-30 20:21:10,512 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:21:24,175 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:21:39,722 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 2720}
2019-06-30 20:21:51,457 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 37, "op": 1}
2019-06-30 20:21:51,552 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:22:00,929 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:22:00,930 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:22:00,953 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:22:02,001 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:22:03,052 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:22:03,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:22:32,509 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:22:32,607 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:22:41,631 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:22:41,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:22:41,688 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:22:42,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.2, 'old': 0.8}
2019-06-30 20:22:42,135 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:22:42,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:23:13,557 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:23:13,664 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:23:50,034 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:23:50,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:23:50,089 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 0.2}
2019-06-30 20:23:50,660 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 0.8}
2019-06-30 20:23:50,667 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:23:50,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:23:54,603 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:23:54,706 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:24:04,077 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:24:04,078 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:04,099 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:04,146 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:04,168 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:24:04,169 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:09,791 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.003050000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:09,810 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:09,829 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:09,841 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:12,036 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:12,061 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:12,086 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:12,096 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:14,335 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:24:14,336 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:14,355 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:14,383 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:14,392 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:24:14,393 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:16,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:24:16,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:16,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:16,678 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:16,686 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:24:16,687 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:28,265 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:24:28,283 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:24:28,992 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:24:30,379 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:24:35,655 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:24:35,749 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:25:05,221 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:25:05,223 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:25:05,270 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:25:05,417 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:25:05,480 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:25:05,481 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:25:16,701 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:25:16,809 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:25:46,526 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:25:46,527 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:25:47,007 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:25:47,033 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:25:47,041 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:25:47,042 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:25:53,366 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:25:53,369 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:25:53,409 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:25:53,887 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:25:53,895 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:25:53,897 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:25:57,747 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:25:57,846 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:26:18,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:26:18,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:19,135 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:19,155 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:19,163 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:26:19,165 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:38,791 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:26:38,887 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:26:40,509 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:26:40,510 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:40,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:40,739 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:40,833 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:26:40,835 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:43,667 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.003050000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:43,686 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:43,717 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:43,725 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:45,944 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:45,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:45,993 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:46,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:48,238 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:48,258 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:48,287 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:48,293 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:26:50,530 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:26:50,532 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:26:50,549 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:26:50,577 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:26:50,584 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:26:50,585 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:27:02,175 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:27:02,187 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:27:02,888 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:27:03,584 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:27:19,855 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:27:19,958 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:27:39,125 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:27:39,126 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:27:39,173 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:27:39,322 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:27:39,383 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:27:39,386 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:28:00,900 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:28:00,993 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:28:20,421 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:28:20,426 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:28:20,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:28:20,919 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:28:20,923 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:28:20,926 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:28:27,295 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:28:27,296 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:28:27,319 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:28:27,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:28:27,787 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:28:27,788 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:28:41,949 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:28:42,047 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:28:52,559 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:28:52,562 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:28:53,026 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:28:53,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:28:53,062 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:28:53,065 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:14,408 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:29:14,409 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:14,461 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:14,637 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:14,732 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:29:14,733 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:17,538 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.006019999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:17,557 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:17,582 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:17,595 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:19,819 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:19,831 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:19,861 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:19,868 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:22,114 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:29:22,117 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:22,135 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:22,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:22,168 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:29:22,169 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:23,003 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:29:23,094 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:29:24,411 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:29:24,412 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:24,433 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:24,456 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:24,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:29:24,466 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:29:36,056 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:29:36,086 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:29:36,765 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:29:38,160 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:30:04,050 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:30:04,148 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:30:13,001 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:30:13,002 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:30:13,050 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:30:13,196 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:30:13,259 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:30:13,260 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:30:45,096 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:30:45,187 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:30:54,295 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:30:54,296 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:30:54,768 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:30:54,792 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:30:54,799 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:30:54,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:01,135 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:31:01,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:01,188 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:01,659 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:01,666 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:31:01,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:26,146 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:31:26,249 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:31:26,427 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:31:26,429 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:26,901 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:26,922 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:26,928 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:31:26,930 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:48,285 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:31:48,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:48,334 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:48,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:48,609 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:31:48,610 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:51,274 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.005909999999999999, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:51,297 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:51,322 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:51,332 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:53,601 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:53,620 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:53,649 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:53,657 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:55,907 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0061200000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:55,927 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:55,955 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:55,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:31:58,268 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.006030000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:31:58,279 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:31:58,295 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:31:58,300 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:32:07,192 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:32:07,286 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:32:09,893 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01387, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:32:09,915 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:32:10,588 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:32:11,281 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:32:46,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:32:46,824 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:32:46,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:32:47,092 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:32:47,099 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:32:47,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:32:48,242 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:32:48,343 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:33:28,126 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:33:28,127 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:33:28,604 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:33:28,623 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:33:28,630 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:33:28,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:33:29,286 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:33:29,380 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:33:34,969 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:33:34,970 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:33:35,014 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:33:35,489 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:33:35,497 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:33:35,499 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:00,269 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:00,270 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:00,737 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:34:00,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.5, 'old': 1.1}
2019-06-30 20:34:00,763 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:00,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:10,329 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:34:10,430 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:34:22,162 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:22,162 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:22,305 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 0.5}
2019-06-30 20:34:22,344 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.1}
2019-06-30 20:34:22,443 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:22,444 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:35,023 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:35,024 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:35,042 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:35,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:35,088 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:35,088 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:40,616 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:40,617 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:40,633 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:40,661 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:40,669 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:40,671 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:42,836 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:42,837 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:42,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:42,881 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:42,889 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:42,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:45,080 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01413, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:45,098 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:45,124 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:45,130 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:47,497 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:47,497 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:47,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:47,540 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:47,547 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:47,547 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:34:51,372 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:34:51,470 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:34:53,474 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:34:53,477 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:34:53,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:34:53,507 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:34:53,512 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:34:53,513 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:35:01,478 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:35:01,479 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:35:01,508 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:35:01,522 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:35:01,899 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:35:01,901 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:35:32,420 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:35:32,521 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:35:33,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:35:33,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:35:33,168 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:35:33,644 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:35:33,678 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:35:33,679 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:35:58,801 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:35:58,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:35:58,822 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:35:58,844 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:35:59,317 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:35:59,318 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:36:06,561 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 20:36:13,469 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:36:13,567 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:36:15,500 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:36:15,502 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:36:15,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:36:16,270 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:36:16,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:36:16,649 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:36:24,177 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:36:39,757 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 3620}
2019-06-30 20:36:52,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:36:52,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:36:52,762 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:36:52,781 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:36:52,789 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:36:52,790 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:36:54,515 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:36:54,619 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:37:14,266 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:14,267 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:14,323 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:14,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:14,657 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:14,659 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:17,448 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:17,449 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:17,469 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:17,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:17,502 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:17,504 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:19,649 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:19,650 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:19,668 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:19,820 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:19,825 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:19,826 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:21,872 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:21,874 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:21,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:21,913 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:21,922 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:21,923 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:24,339 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01878, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:24,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:24,385 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:24,391 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:30,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:30,334 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:30,356 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:30,378 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:30,381 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:30,383 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:37:35,574 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:37:35,673 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:37:38,255 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:37:38,257 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:37:38,276 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:37:38,310 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:37:38,718 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:37:38,721 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:09,967 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:38:09,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:38:09,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:38:10,464 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:38:10,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:38:10,498 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:16,621 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:38:16,821 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:38:35,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:38:35,611 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:38:35,637 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:38:35,659 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:38:36,129 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:38:36,131 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:52,694 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:38:52,696 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:38:52,721 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:38:53,083 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:38:53,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:38:53,465 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:38:57,671 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:38:57,770 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:39:29,087 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:29,089 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:29,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:29,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:29,606 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:29,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:38,714 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:39:38,813 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:39:51,073 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:51,075 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:51,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:51,332 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:51,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:51,467 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:54,237 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:54,238 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:54,254 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:54,281 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:54,286 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:54,287 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:56,440 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:56,441 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:56,458 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:56,485 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:56,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:56,497 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:39:58,677 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:39:58,678 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:39:58,689 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:39:58,712 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:39:58,718 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:39:58,719 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:01,114 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:01,114 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:01,133 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:01,156 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:01,162 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:01,163 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:05,612 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:05,613 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:05,624 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:06,153 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:06,695 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:06,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:19,760 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:40:19,859 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:40:29,971 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:29,972 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:30,007 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:30,462 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:30,890 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:30,893 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:40:57,694 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:40:57,696 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:40:57,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:40:57,737 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:40:58,200 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:40:58,201 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:41:00,804 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:41:00,895 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:41:14,386 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:41:14,388 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:41:14,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:41:15,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:41:15,531 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:41:15,531 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:41:41,851 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:41:41,956 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:41:51,154 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:41:51,157 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:41:51,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:41:51,663 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:41:51,670 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:41:51,673 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:22,903 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:42:22,996 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:42:25,070 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:25,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:25,109 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:25,597 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:25,607 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:25,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:30,509 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:30,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:30,526 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:30,550 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:30,558 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:30,559 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:32,742 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:32,743 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:32,758 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:32,783 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:32,795 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:32,796 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:34,970 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:34,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:34,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:35,011 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:35,019 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:35,019 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:37,439 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:37,440 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:37,453 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:37,476 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:37,485 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:37,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:42:41,945 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:42:41,946 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:42:41,962 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:42:43,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:42:43,630 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:42:43,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:43:03,952 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:43:04,048 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:43:06,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:43:06,310 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:43:06,345 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:43:06,804 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:43:07,314 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:43:07,317 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:43:34,032 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:43:34,032 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:43:34,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:43:34,077 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:43:34,550 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:43:34,551 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:43:45,003 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:43:45,101 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:43:51,115 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:43:51,116 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:43:51,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:43:51,503 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:43:51,885 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:43:51,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:44:26,050 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:44:26,146 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:44:27,520 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:44:27,521 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:44:27,996 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:44:28,018 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 0.8, 'old': 1.4}
2019-06-30 20:44:28,026 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:44:28,027 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:01,451 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:01,454 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:01,478 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 0.8}
2019-06-30 20:45:01,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.4}
2019-06-30 20:45:01,972 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:01,975 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:07,095 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:45:07,104 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:07,105 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:07,120 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:07,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:07,144 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:07,145 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:07,187 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:45:09,311 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:09,312 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:09,332 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:09,358 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:09,365 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:09,366 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:11,556 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014080000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:11,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:11,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:11,606 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:13,753 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:13,755 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:13,774 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:13,829 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:13,842 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:13,846 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:19,766 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:19,767 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:19,797 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:19,816 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:19,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:19,825 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:27,782 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:27,783 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:27,803 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:27,819 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:28,216 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:28,217 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:48,141 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:45:48,229 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:45:53,322 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:53,323 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:53,347 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:45:53,367 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:45:53,847 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:45:53,848 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:45:59,839 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:45:59,842 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:45:59,880 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:00,399 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:00,409 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:00,412 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:19,841 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:19,842 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:19,870 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:19,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:20,405 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:20,408 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:26,345 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:26,351 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:26,387 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:26,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:26,898 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:26,900 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:29,186 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:46:29,282 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:46:46,358 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:46,361 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:46,382 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:46,407 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:46,883 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:46,884 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:46:52,896 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:46:52,901 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:46:53,396 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:46:53,421 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:46:53,429 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:46:53,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:10,231 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:47:10,337 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:47:12,892 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:12,894 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:12,917 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:12,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:13,409 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:13,410 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:19,302 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:19,303 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:19,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:19,825 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:19,831 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:19,833 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:43,987 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:43,990 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:44,041 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:44,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:44,139 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:44,142 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:46,743 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:46,743 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:46,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:46,789 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:46,795 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:46,796 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:48,946 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:48,948 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:48,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:48,987 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:49,029 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:49,030 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:51,167 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:51,168 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:51,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:51,212 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:51,219 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:51,219 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:51,280 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:47:51,374 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:47:53,412 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014110000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:53,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:53,457 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:53,465 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:47:59,380 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:47:59,381 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:47:59,401 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:47:59,413 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:47:59,418 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:47:59,419 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:07,374 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:07,375 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:07,386 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:07,412 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:07,846 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:48:07,847 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:32,329 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:48:32,420 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:48:32,954 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:32,955 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:32,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:33,005 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:33,483 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:48:33,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:39,477 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:39,478 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:39,515 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:40,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:40,034 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:48:40,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:48:59,473 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:48:59,474 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:48:59,510 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:48:59,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:48:59,999 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:00,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:05,979 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:05,980 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:06,025 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:06,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:06,536 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:06,537 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:13,379 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:49:13,476 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:49:25,990 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:25,992 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:26,013 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:26,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:26,518 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:26,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:32,539 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:32,541 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:33,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:33,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:33,063 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:33,064 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:52,524 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:52,526 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:52,545 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:52,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:53,041 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:53,042 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:49:54,423 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:49:54,549 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:49:58,934 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:49:58,935 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:49:59,432 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:49:59,455 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:49:59,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:49:59,467 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:23,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:23,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:23,671 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:23,760 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:23,769 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:23,769 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:26,348 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:26,349 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:26,366 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:26,390 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:26,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:26,407 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:28,548 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:28,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:28,565 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:28,589 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:28,601 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:28,603 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:30,809 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014080000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:30,827 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:30,855 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:30,863 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:33,005 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:33,007 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:33,021 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:33,051 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:33,058 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:33,059 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:35,477 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:50:35,617 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:50:38,981 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:38,981 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:38,994 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:39,010 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:39,014 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:39,015 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:50:46,977 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:50:46,979 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:50:47,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:50:47,031 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:50:47,888 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:50:47,890 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:12,551 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:12,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:12,572 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:12,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:13,062 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:13,063 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:16,524 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:51:16,693 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:51:19,059 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:19,062 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:19,107 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:19,612 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:19,620 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:19,622 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:24,179 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 20:51:39,057 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:39,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:39,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:39,110 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:39,580 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:39,581 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:39,764 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 4520}
2019-06-30 20:51:45,561 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:51:45,562 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:51:45,610 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:51:46,107 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:51:46,115 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:51:46,116 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:51:57,577 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:51:57,674 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:52:05,573 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:05,574 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:05,594 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:05,617 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:52:06,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:06,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:12,115 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:12,116 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:12,619 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:12,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:12,650 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:12,656 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:52:32,096 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:32,097 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:32,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:32,145 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:52:32,667 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:32,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:38,519 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:52:38,522 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:52:38,624 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:52:38,747 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:52:39,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:52:39,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:52:39,067 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:52:39,081 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:03,207 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:03,208 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:03,401 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:03,427 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:03,435 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:03,436 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:05,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:05,816 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:05,832 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:05,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:05,864 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:05,866 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:08,049 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:08,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:08,069 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:08,096 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:08,104 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:08,105 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:10,293 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:10,294 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:10,308 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:10,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:10,339 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:10,340 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:12,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:12,498 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:12,520 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:12,548 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:12,555 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:12,555 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:18,488 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:18,489 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:18,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:18,523 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:18,528 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:18,528 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:19,674 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:53:19,771 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:53:26,473 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:26,474 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:26,500 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:26,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:26,944 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:26,945 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:52,037 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:52,039 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:52,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:52,081 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:52,599 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:52,600 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:53:58,549 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:53:58,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:53:58,591 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:53:59,099 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:53:59,107 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:53:59,108 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:00,724 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:54:00,820 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:54:18,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:18,553 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:18,578 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:18,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:19,083 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:19,085 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:25,059 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:25,060 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:25,105 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:25,605 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:25,607 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:25,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:41,772 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:54:41,873 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:54:45,072 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:45,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:45,093 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:45,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:45,603 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:45,604 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:54:51,617 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:54:51,620 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:54:52,114 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:54:52,141 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:54:52,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:54:52,151 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:11,601 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:11,602 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:11,626 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:55:11,645 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:55:12,125 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:12,126 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:18,018 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:18,019 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:18,515 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:55:18,542 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.1, 'old': 1.7}
2019-06-30 20:55:18,551 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:18,553 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:22,824 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:55:22,921 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:55:42,711 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:42,712 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:42,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 1.1}
2019-06-30 20:55:42,849 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 1.7}
2019-06-30 20:55:42,857 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:42,859 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:45,618 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:45,620 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:45,642 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:45,667 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:45,675 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:45,676 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:47,842 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:47,843 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:47,862 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:47,885 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:47,891 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:47,891 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:50,083 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014100000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:50,099 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:50,123 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:50,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:52,360 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:52,361 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:52,374 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:52,394 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:55:52,398 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:52,399 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:58,310 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:55:58,311 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:55:58,329 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:55:58,344 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:55:58,346 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:55:58,349 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:03,876 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:56:03,974 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:56:06,330 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:06,330 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:06,354 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:06,377 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:06,811 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:06,812 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:14,059 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:14,060 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:14,111 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:14,174 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:14,218 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:14,221 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:21,992 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:21,994 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:22,016 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:22,061 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:22,066 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:22,068 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:24,584 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:24,597 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:24,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:24,658 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:25,424 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:25,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:25,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:25,499 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:29,654 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 20:56:33,239 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:33,240 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:33,256 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:33,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:33,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:33,305 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:34,158 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:34,161 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:34,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:34,221 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:34,228 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:34,230 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:35,226 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:35,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:35,245 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:35,295 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:35,301 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:35,301 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:44,930 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:56:45,026 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:56:45,581 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:45,584 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:45,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:45,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:45,641 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:45,643 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:46,981 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:47,004 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:47,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:47,028 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:47,862 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:47,873 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:47,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:47,900 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:48,984 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:49,002 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:49,030 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:49,035 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:50,025 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:50,026 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:50,037 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:50,092 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:50,096 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:50,097 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:52,721 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:52,723 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:52,746 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:52,776 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:52,784 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:52,787 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:54,908 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:54,908 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:54,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:54,954 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:54,962 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:54,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:57,128 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:56:57,129 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:57,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:57,174 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:57,181 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:56:57,182 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:56:59,374 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:56:59,398 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:56:59,422 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:56:59,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:05,367 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:05,368 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:05,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:05,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:05,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:05,413 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:13,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:13,405 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:13,424 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:13,449 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:13,869 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:13,870 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:21,136 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:21,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:21,185 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:21,247 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:21,263 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:21,264 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:25,981 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:57:26,076 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:57:29,054 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:29,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:29,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:29,123 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:29,131 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:29,132 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:31,580 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:31,594 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:31,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:31,651 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:32,422 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:32,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:32,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:32,488 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:40,223 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:40,224 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:40,235 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:40,268 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:40,278 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:40,279 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:41,131 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:41,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:41,160 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:41,178 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:41,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:41,183 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:42,214 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:42,215 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:42,235 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:42,267 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:42,272 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:42,273 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:52,542 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:52,543 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:52,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:52,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:52,606 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:52,607 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:53,959 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:53,990 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:54,006 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:54,014 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:54,831 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:54,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:54,879 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:54,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:55,955 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:55,975 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:55,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:56,003 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:57:56,985 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:57:56,986 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:57:56,997 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:57:57,027 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:57:57,038 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:57:57,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:00,085 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:00,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:00,103 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:00,132 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:00,168 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:00,168 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:02,289 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:02,291 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:02,306 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:02,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:02,343 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:02,344 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:04,583 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014100000000000001, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:04,595 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:04,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:04,614 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:06,791 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:06,792 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:06,803 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:06,817 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:06,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:06,823 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:07,037 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:58:07,131 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:58:12,752 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:12,753 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:12,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:12,796 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:12,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:12,799 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:20,813 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:20,814 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:20,833 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:20,856 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:21,246 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:21,247 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:28,502 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:28,503 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:28,556 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:28,617 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:28,631 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:28,632 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:36,479 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:36,483 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:36,499 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:36,546 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:36,554 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:36,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:39,004 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:39,053 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:39,068 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:39,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:39,830 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:39,849 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:39,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:39,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:47,612 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:47,619 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:47,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:47,662 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:47,665 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:47,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:48,084 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:58:48,177 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:58:48,511 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:48,514 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:48,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:48,559 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:48,564 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:48,567 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:49,562 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:49,563 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:49,586 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:49,633 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:49,640 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:49,641 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:58:59,910 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:58:59,911 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:58:59,935 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:58:59,963 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:58:59,967 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:58:59,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:01,319 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:01,340 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:01,360 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:01,365 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:02,199 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:02,214 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:02,226 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:02,234 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:03,343 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:03,362 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:03,384 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:03,392 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:04,355 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:04,356 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:04,377 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:04,541 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:04,548 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:04,549 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:07,085 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:07,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:07,103 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:07,128 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:07,135 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:07,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:09,303 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:09,304 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:09,324 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:09,351 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:09,367 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:09,369 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:11,527 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:11,527 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:11,548 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:11,577 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:11,584 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:11,585 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:13,752 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:13,753 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:13,777 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:13,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:13,810 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:13,811 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:19,741 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:19,742 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:19,761 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:19,782 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:19,787 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:19,789 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:27,818 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:27,819 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:27,831 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:27,844 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:28,252 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:28,252 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:29,142 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 20:59:29,231 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 20:59:35,509 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:35,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:35,559 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:35,627 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:35,638 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:35,639 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:43,407 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:43,408 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:43,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:43,477 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:43,486 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:43,487 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:45,973 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01191, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:45,984 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:46,017 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:46,044 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:46,805 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.028810000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:46,817 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:46,836 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:46,859 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:54,577 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:54,578 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:54,593 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:54,635 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:54,639 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:54,640 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:55,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:55,498 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:55,516 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:55,544 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:55,546 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 20:59:55,553 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:56,571 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 20:59:56,573 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 20:59:56,597 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 20:59:56,634 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 20:59:56,641 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 20:59:56,644 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:06,910 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:06,911 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:06,935 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:06,959 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:06,965 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:06,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:08,319 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03649, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:08,340 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:08,361 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:08,367 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:09,204 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02805, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:09,216 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:09,234 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:09,239 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:10,193 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:00:10,292 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:00:10,314 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008559999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:10,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:10,364 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.4, 'old': 2.0}
2019-06-30 21:00:10,369 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:11,350 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:11,351 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:11,362 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 1.4}
2019-06-30 21:00:11,389 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.0}
2019-06-30 21:00:11,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:11,405 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:13,727 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02198, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:13,742 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:13,768 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:13,775 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:15,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:15,918 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:15,939 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:15,963 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:15,971 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:15,972 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:18,146 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:18,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:18,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:18,191 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:18,199 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:18,200 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:19,356 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:00:20,377 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:20,378 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:20,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:20,416 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:20,424 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:20,425 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:26,362 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:26,364 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:26,383 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:26,395 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:26,399 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:26,400 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:34,423 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:34,427 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:34,438 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:34,456 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:34,900 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:34,901 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:42,142 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:42,143 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:42,192 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:42,273 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:42,309 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:42,311 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:49,387 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:49,388 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:49,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:49,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:49,433 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:49,433 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:51,241 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:00:51,330 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:00:51,513 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:51,525 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:51,551 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:51,558 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:52,353 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:00:52,353 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:52,365 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:52,384 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:52,390 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:00:52,392 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:00:53,189 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:00:53,202 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:00:53,216 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:00:53,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:00,752 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:00,753 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:00,780 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:00,795 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:00,803 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:00,805 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:10,724 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:10,737 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:10,752 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:10,761 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:12,005 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:12,019 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:12,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:12,039 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:12,858 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:12,874 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:12,884 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:12,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:13,862 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:13,863 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:13,877 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:13,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:13,894 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:13,895 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:14,910 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:14,923 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:14,938 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:14,941 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:17,586 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:17,588 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:17,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:17,635 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:17,643 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:17,644 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:19,778 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:19,781 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:19,795 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:19,818 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:19,826 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:19,827 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:22,021 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:22,023 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:22,046 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:22,066 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:22,074 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:22,076 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:24,364 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:24,377 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:24,393 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:24,399 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:30,227 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:30,229 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:30,254 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:30,268 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:30,270 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:30,274 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:32,296 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:01:32,387 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:01:38,281 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:38,281 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:38,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:38,312 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:38,758 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:38,759 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:46,005 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:46,007 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:46,058 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:46,120 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:46,132 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:46,135 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:53,307 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:53,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:53,320 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:53,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:53,343 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:53,345 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:55,528 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:55,539 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:55,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:55,569 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:56,347 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:01:56,347 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:56,368 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:56,390 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:56,395 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:01:56,396 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:01:57,186 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:01:57,198 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:01:57,212 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:01:57,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:04,764 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:04,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:04,785 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:04,806 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:04,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:04,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:13,351 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:02:13,450 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:02:14,789 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:14,802 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:14,821 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:14,828 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:16,065 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:16,081 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:16,093 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:16,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:16,914 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:16,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:16,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:16,945 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:17,946 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:17,946 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:17,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:17,972 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:17,976 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:17,976 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:18,851 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:18,866 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:18,880 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:18,885 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:21,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:21,961 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:21,972 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:21,989 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:21,994 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:21,994 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:24,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:24,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:24,166 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:24,189 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:24,198 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:24,198 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:26,392 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:26,413 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:26,437 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:26,446 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:28,593 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:28,593 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:28,608 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:28,634 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:28,641 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:28,641 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:34,598 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:34,600 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:34,619 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:34,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:34,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:34,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:42,689 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:42,690 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:42,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:42,735 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:43,134 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:43,135 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:50,372 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:50,373 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:50,425 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:50,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:50,499 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:50,501 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:54,401 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:02:54,490 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:02:57,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:02:57,625 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:57,646 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:57,672 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:02:57,676 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:57,679 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:02:59,739 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:02:59,751 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:02:59,772 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:02:59,780 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:00,570 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:00,571 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:00,586 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:00,616 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:00,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:00,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:01,389 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:01,402 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:01,417 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:01,421 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:08,963 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:08,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:08,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:09,005 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:09,009 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:09,010 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:18,974 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:18,986 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:18,999 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:19,007 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:20,284 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:20,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:20,309 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:20,313 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:21,131 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:21,153 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:21,175 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:21,177 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:22,113 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:22,114 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:22,136 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:22,153 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:22,154 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:22,164 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:23,052 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:23,074 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:23,090 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:23,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:25,762 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:25,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:25,774 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:25,790 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:25,798 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:25,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:27,961 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:27,962 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:27,978 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:28,002 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:28,015 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:28,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:30,188 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:30,190 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:30,206 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:30,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:30,239 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:30,241 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:32,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:32,413 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:32,430 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:32,457 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:32,466 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:32,467 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:35,456 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:03:35,566 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:03:38,426 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:38,427 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:38,446 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:38,472 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:38,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:38,485 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:46,451 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:46,451 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:46,468 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:46,496 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:03:46,947 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:46,948 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:54,190 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:03:54,191 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:03:54,246 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:03:54,327 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:03:54,329 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:03:54,333 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:01,487 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:01,488 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:01,509 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:01,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:01,533 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:01,534 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:03,614 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0008200000000000013, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:03,626 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:03,652 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:03,658 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:03,794 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:04:04,457 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:04,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:04,470 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:04,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:04,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:04,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:05,269 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03973, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:05,282 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:05,297 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:05,300 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:12,746 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:12,747 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:12,761 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:12,781 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:12,786 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:12,787 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:16,507 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:04:16,596 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:04:22,742 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0188, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:22,759 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:22,776 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:22,784 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:24,025 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03171, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:24,038 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:24,051 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:24,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:24,875 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02423, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:24,895 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:24,916 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:24,924 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:25,942 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:25,944 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:25,955 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:25,974 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 1.7, 'old': 2.3}
2019-06-30 21:04:25,980 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:25,981 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:26,922 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03815, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:26,933 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 1.7}
2019-06-30 21:04:26,947 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.3}
2019-06-30 21:04:26,954 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:29,329 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:29,329 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:29,347 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:29,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:29,387 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:29,388 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:31,534 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:31,536 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:31,553 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:31,584 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:31,594 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:31,596 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:33,884 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018670000000000003, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:33,907 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:33,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:33,938 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:36,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:36,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:36,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:36,145 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:36,154 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:36,155 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:42,150 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:42,151 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:42,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:42,177 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:42,182 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:42,183 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:50,173 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:50,174 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:50,197 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:51,137 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:51,143 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:51,145 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:04:57,559 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:04:57,657 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:04:57,938 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:04:57,941 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:04:57,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:04:58,049 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:04:58,065 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:04:58,067 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:04,815 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:04,836 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:04,859 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:04,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:06,961 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:06,973 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:06,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:06,993 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:07,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:07,919 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:07,936 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:07,970 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:07,975 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:07,975 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:09,473 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:09,499 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:09,514 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:09,525 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:10,341 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:10,343 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:10,359 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:10,376 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:10,381 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:10,382 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:11,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:11,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:11,162 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:11,175 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:11,180 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:11,180 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:11,938 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:11,939 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:11,976 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:11,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:11,993 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:11,993 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:28,744 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:28,745 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:28,794 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:28,855 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:28,872 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:28,874 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:29,059 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:05:29,078 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:29,114 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:29,134 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:32,213 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:32,214 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:32,233 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:32,251 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:32,258 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:32,260 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:34,438 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:34,441 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:34,456 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:34,475 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:34,487 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:34,488 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:36,774 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:36,775 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:36,798 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:36,823 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:36,831 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:36,832 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:38,613 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:05:38,703 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:05:39,041 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:39,054 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:39,070 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:39,076 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:44,998 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:45,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:45,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:45,037 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:45,042 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:45,043 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:05:53,098 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:05:53,100 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:05:53,110 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:05:53,551 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:05:54,011 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:05:54,014 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:00,822 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:00,823 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:00,874 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:00,954 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:00,961 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:00,963 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:07,755 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:07,773 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:07,798 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:07,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:09,849 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:09,861 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:09,878 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:09,882 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:10,799 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:10,801 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:10,812 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:10,828 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:10,832 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:10,833 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:12,381 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:12,399 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:12,422 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:12,426 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:13,245 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:13,247 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:13,269 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:13,287 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:13,294 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:13,290 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:13,997 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:13,998 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:14,015 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:14,047 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:14,062 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:14,064 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:14,826 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:14,827 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:14,846 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:14,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:14,878 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:14,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:19,661 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:06:19,756 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:06:24,181 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 21:06:31,600 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:31,601 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:31,653 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:31,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:31,728 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:31,728 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:31,907 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:06:31,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:31,971 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:31,993 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:35,096 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:35,098 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:35,117 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:35,139 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:35,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:35,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:37,317 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:37,318 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:37,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:37,350 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:37,356 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:37,356 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:39,636 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:39,638 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:39,653 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:39,677 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:39,685 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:39,687 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:39,721 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 5420}
2019-06-30 21:06:41,877 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:41,893 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:41,922 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:41,929 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:47,881 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:47,883 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:47,896 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:47,943 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:47,948 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:47,949 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:06:55,980 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:06:55,982 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:06:56,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:06:56,464 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:06:56,924 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:06:56,927 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:00,714 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:07:00,812 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:07:03,739 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:03,739 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:03,787 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:03,849 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:03,865 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:03,867 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:10,717 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:10,735 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:10,747 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:10,791 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:12,761 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:12,775 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:12,790 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:12,795 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:13,691 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:13,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:13,703 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:13,717 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:13,721 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:13,722 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:15,269 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:15,281 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:15,298 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:15,303 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:16,128 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:16,129 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:16,142 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:16,161 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:16,169 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:16,170 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:16,937 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:16,938 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:16,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:16,978 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:16,982 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:16,985 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:17,731 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:17,732 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:17,756 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:17,772 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:17,773 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:17,785 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:34,480 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:34,484 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:34,511 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:34,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:34,586 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:34,588 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:34,770 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:07:34,793 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:34,830 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:34,857 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:37,949 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:37,949 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:37,966 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:37,990 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:37,998 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:37,999 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:40,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:40,140 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:40,161 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:40,182 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:40,189 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:40,191 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:40,358 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:07:41,766 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:07:41,860 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:07:42,470 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:42,471 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:42,491 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:42,516 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:42,524 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:42,526 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:44,695 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:44,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:44,712 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:44,740 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:44,749 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:44,750 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:50,712 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:50,713 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:50,747 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:50,760 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:50,763 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:50,766 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:07:58,782 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:07:58,783 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:07:58,794 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:07:59,261 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:07:59,717 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:07:59,719 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:06,531 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:06,533 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:06,581 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:06,643 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:06,661 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:06,662 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:13,417 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01226, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:13,432 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:13,454 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:13,475 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:15,477 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0383, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:15,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:15,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:15,518 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:16,404 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:16,405 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:16,416 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:16,430 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:16,436 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:16,437 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:17,980 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.018860000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:17,993 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:18,010 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:18,015 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:18,840 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:18,841 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:18,855 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:18,870 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:18,877 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:18,878 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:19,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:19,612 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:19,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:19,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:19,668 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:19,670 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:20,462 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:20,465 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:20,493 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:20,511 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:20,514 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:20,518 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:22,815 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:08:22,913 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:08:37,191 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:37,193 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:37,241 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:37,304 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.0, 'old': 2.6}
2019-06-30 21:08:37,382 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:37,384 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:37,514 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.32433999999999996, "feedRate": 2100.0, "originalCommand": "G1 E-0.56217 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.56217 F2100.00000']
2019-06-30 21:08:37,532 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.0}
2019-06-30 21:08:37,557 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.6}
2019-06-30 21:08:37,585 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:40,918 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:40,921 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:40,932 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:40,951 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:40,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:40,961 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:43,116 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:43,117 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:43,143 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:43,171 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:43,172 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:43,183 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:45,466 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01866, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:45,481 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:45,507 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:45,519 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:47,670 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:47,670 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:47,686 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:47,715 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:08:47,722 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:47,722 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:53,693 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:08:53,695 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:08:53,720 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:08:53,739 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:08:53,741 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:08:53,749 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:01,816 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:01,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:01,836 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:02,293 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:02,766 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:02,768 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:03,867 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:09:03,962 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:09:09,561 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:09,563 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:09,615 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:09,675 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:09,688 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:09,689 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:16,051 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:16,052 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:16,065 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:16,085 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:16,105 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:16,105 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:18,180 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:18,182 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:18,209 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:18,235 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:18,242 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:18,245 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:19,078 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:19,081 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:19,096 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:19,110 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:19,113 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:19,113 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:20,644 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:20,666 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:20,687 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:20,691 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:21,463 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:21,464 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:21,475 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:21,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:21,502 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:21,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:22,287 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:22,288 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:22,309 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:22,325 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:22,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:22,333 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:23,098 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:23,116 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:23,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:23,136 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:33,179 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:33,181 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:33,207 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:33,227 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:33,233 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:33,233 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:40,015 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:40,016 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:40,068 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:40,128 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:40,143 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:40,143 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:43,049 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:43,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:43,065 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:43,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:43,098 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:43,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:44,930 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:09:45,023 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:09:45,269 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:45,269 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:45,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:45,315 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:45,322 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:45,323 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:47,604 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:47,606 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:47,621 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:47,645 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:47,653 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:47,654 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:49,849 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:49,865 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:49,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:49,902 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:09:55,852 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:09:55,853 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:09:55,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:09:55,881 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:09:55,886 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:09:55,886 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:03,979 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:03,981 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:04,013 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:04,452 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:04,923 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:04,924 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:11,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:11,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:11,757 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:11,818 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:11,830 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:11,831 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:18,191 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:18,191 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:18,207 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:18,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:18,247 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:18,248 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:20,205 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:20,206 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:20,227 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:20,258 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:20,408 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:20,410 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:21,123 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:21,124 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:21,136 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:21,154 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:21,158 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:21,160 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:22,700 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:22,717 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:22,731 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:22,736 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:23,515 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:23,516 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:23,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:23,548 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:23,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:23,556 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:24,301 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:24,303 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:24,316 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:24,328 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:24,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:24,334 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:25,128 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:25,142 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:25,156 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:25,161 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:25,980 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:10:26,082 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:10:35,201 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:35,201 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:35,213 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:35,230 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:35,234 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:35,235 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:42,035 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:42,036 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:42,084 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:42,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:42,162 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:42,163 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:44,934 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.039420000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:44,955 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:44,988 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:44,994 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:47,151 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:47,153 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:47,171 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:47,195 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:47,204 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:47,205 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:49,468 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:49,470 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:49,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:49,513 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:49,524 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:49,525 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:51,719 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01405, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:51,740 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:51,765 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:51,771 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:10:57,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:10:57,704 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:10:57,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:10:57,731 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:10:57,735 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:10:57,736 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:05,815 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:05,816 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:05,835 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:06,304 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:06,772 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:06,773 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:07,032 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:11:07,122 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:11:13,563 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:13,565 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:13,612 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:13,679 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:13,689 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:13,690 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:20,042 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:20,043 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:20,054 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:20,078 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:20,095 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:20,096 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:22,057 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:22,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:22,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:22,111 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:22,118 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:22,119 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:22,966 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:22,967 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:22,990 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:23,015 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:23,016 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:23,026 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:24,530 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:24,544 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:24,560 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:24,600 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:25,346 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:25,347 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:25,363 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:25,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:25,385 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:25,386 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:26,142 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:26,144 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:26,168 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:26,191 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:26,195 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:26,197 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:26,964 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:26,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:26,991 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:26,995 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:27,118 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:11:37,010 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:37,013 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:37,034 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:37,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:37,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:37,065 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:43,842 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:43,843 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:43,890 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:43,959 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:43,968 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:43,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:46,703 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:46,704 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:46,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:46,749 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:46,756 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:46,757 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:48,094 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:11:48,190 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:11:48,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:48,902 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:48,924 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:48,945 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:48,954 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:48,956 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:51,229 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:51,230 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:51,250 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:51,275 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:51,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:51,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:53,458 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:53,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:53,474 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:53,500 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:53,507 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:53,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:11:59,489 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:11:59,494 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:11:59,515 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:11:59,539 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:11:59,545 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:11:59,548 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:07,578 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:07,578 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:07,594 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:08,083 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:08,542 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:08,543 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:15,329 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:15,331 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:15,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:15,444 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:15,457 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:15,459 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:21,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:21,902 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:21,919 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:21,948 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:21,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:21,961 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:23,931 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:23,931 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:23,944 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:23,971 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:23,978 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:23,978 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:24,817 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:24,818 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:24,830 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:24,854 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:24,854 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:24,860 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:26,405 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02714, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:26,429 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:26,447 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:26,454 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:27,215 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:27,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:27,236 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:27,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:27,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:27,277 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:27,985 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:27,986 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:28,034 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:28,051 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:28,055 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:28,056 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:28,824 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03829, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:28,838 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:28,851 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:28,855 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:29,152 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:12:29,248 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:12:42,081 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:42,082 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:42,113 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:42,146 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.3, 'old': 2.9}
2019-06-30 21:12:42,155 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:42,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:48,855 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:48,856 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:48,908 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 2.3}
2019-06-30 21:12:49,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 2.9}
2019-06-30 21:12:49,151 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:49,152 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:52,591 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:52,592 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:52,620 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:12:52,658 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:12:52,665 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:52,668 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:55,077 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:55,080 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:55,107 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:12:55,143 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:12:55,151 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:55,154 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:12:57,677 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:12:57,678 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:12:57,699 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:12:57,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:12:57,730 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:12:57,732 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:00,230 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:00,259 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:00,296 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:00,305 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:06,277 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:06,277 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:06,305 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:06,506 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:06,868 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:06,869 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:10,207 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:13:10,298 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:13:14,414 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:14,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:14,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:15,250 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:15,260 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:15,261 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:22,079 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:22,082 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:22,129 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:22,190 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:22,203 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:22,204 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:31,825 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:31,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:31,886 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:31,895 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:34,720 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:34,748 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:34,786 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:34,795 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:35,814 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:35,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:35,842 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:35,872 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:35,879 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:35,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:37,738 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:37,740 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:37,768 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:37,799 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:37,809 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:37,811 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:38,603 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:13:38,604 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:38,631 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:38,664 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:38,673 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:13:38,674 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:39,546 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:39,573 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:39,603 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:39,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:40,573 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:40,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:40,640 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:40,649 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:13:51,262 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:13:51,373 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:13:53,848 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:13:53,877 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:13:53,913 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:13:53,920 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:00,701 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:00,701 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:00,730 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:00,924 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:00,932 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:00,933 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:04,110 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:04,113 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:04,138 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:04,177 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:04,182 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:04,183 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:06,605 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:06,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:06,638 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:06,674 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:06,683 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:06,686 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:09,155 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:09,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:09,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:09,227 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:09,238 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:09,240 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:11,864 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:11,892 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:11,926 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:11,933 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:17,874 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:17,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:17,909 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:18,130 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:18,493 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:18,495 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:26,046 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:26,047 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:26,381 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:26,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:26,876 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:26,878 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:32,322 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:14:32,410 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:14:33,705 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:33,706 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:33,753 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:33,819 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:33,830 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:33,832 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:43,304 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:43,325 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:43,349 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:43,358 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:46,155 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:46,176 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:46,201 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:46,209 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:47,228 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:47,228 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:47,249 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:47,273 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:47,281 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:47,282 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:49,131 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:49,132 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:49,159 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:49,192 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:49,201 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:49,201 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:49,982 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:14:49,985 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:50,018 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:50,056 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:50,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:14:50,066 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:50,890 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:50,911 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:50,957 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:50,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:14:51,896 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:14:51,925 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:14:51,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:14:51,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:04,938 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:04,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:04,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:05,005 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:11,733 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:11,733 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:11,784 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:11,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:11,963 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:11,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:13,368 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:15:13,468 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:15:14,935 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:14,936 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:14,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:15,003 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:15,009 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:15,010 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:17,430 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:17,430 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:17,449 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:17,479 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:17,487 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:17,487 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:19,919 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:19,920 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:19,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:19,965 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:19,973 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:19,973 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:22,646 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:22,678 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:22,714 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:22,724 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:28,646 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:28,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:28,688 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:28,910 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:29,273 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:29,274 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:36,825 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:36,826 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:37,163 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:37,669 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:37,678 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:37,680 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:40,628 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:15:44,482 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:44,484 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:44,531 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:44,596 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:44,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:44,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:54,051 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:54,083 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:54,116 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:54,124 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:54,427 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:15:54,519 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:15:56,914 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:56,942 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:56,980 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:57,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:15:58,032 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:15:58,033 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:15:58,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:15:58,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:15:58,101 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:15:58,102 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:00,026 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:00,030 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:00,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:00,092 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:00,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:00,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:01,054 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:01,057 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:01,084 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:01,116 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:01,124 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:01,127 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:01,807 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:01,828 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:01,866 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:01,874 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:02,881 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:02,911 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:02,947 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:02,954 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:16,026 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:16,058 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:16,091 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:16,100 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:22,821 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:22,822 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:22,874 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:23,023 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:23,055 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:23,057 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:26,049 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:26,050 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:26,078 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:26,118 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:26,123 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:26,125 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:28,478 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:28,483 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:28,510 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:28,545 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:28,553 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:28,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:31,169 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:31,171 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:31,198 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:31,258 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:31,266 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:31,267 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:33,680 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:33,682 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:33,709 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:33,746 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:33,754 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:33,755 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:35,489 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:16:35,582 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:16:39,673 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:39,674 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:39,701 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:39,928 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:40,280 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:40,281 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:47,845 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:47,847 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:48,173 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:48,660 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:48,669 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:48,669 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:16:55,496 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:16:55,497 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:16:55,546 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:16:55,607 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:16:55,619 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:16:55,620 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:05,127 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03884, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:05,155 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:05,200 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:05,209 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:08,079 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01909, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:08,108 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:08,141 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:08,150 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:09,136 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:09,138 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:09,166 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:09,199 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:09,205 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:09,206 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:11,210 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:11,211 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:11,239 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:11,300 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:11,309 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:11,310 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:12,138 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:12,139 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:12,171 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:12,203 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:12,211 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:12,214 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:12,991 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0037799999999999986, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:13,020 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:13,054 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:13,062 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:13,948 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.02456, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:13,969 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:13,994 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:14,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:16,539 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:17:16,716 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:17:26,795 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.008149999999999998, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:26,848 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:26,881 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.6, 'old': 3.2}
2019-06-30 21:17:26,887 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:33,603 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:33,605 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:33,647 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 2.6}
2019-06-30 21:17:33,839 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.2}
2019-06-30 21:17:33,853 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:33,855 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:37,084 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:37,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:37,117 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:37,149 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:37,157 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:37,159 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:39,537 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:39,539 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:39,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:39,600 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:39,606 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:39,608 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:42,193 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:42,215 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:42,245 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:42,252 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:44,625 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:44,627 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:44,654 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:44,690 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:44,698 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:44,701 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:50,749 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:17:50,751 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:50,776 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:50,810 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:50,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:17:50,904 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:17:57,590 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:17:57,728 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:17:58,843 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:17:58,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:17:59,703 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:17:59,711 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:04,402 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:04,403 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:04,429 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:04,463 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:04,472 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:04,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:06,523 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:06,525 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:06,572 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:06,638 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:06,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:06,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:09,816 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:09,819 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:09,845 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:09,879 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:09,887 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:09,889 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:10,829 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:10,830 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:10,857 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:10,889 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:10,899 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:10,899 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:11,965 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:11,966 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:11,987 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:12,012 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:12,019 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:12,020 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:12,983 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:12,984 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:13,012 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:13,045 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:13,053 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:13,054 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:18,464 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:18,466 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:18,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:18,533 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:18,549 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:18,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:21,465 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:21,466 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:21,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:21,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:21,535 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:21,537 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:23,588 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:23,589 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:23,637 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:23,725 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:23,756 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:23,757 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:34,577 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:34,606 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:34,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:34,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:35,523 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:35,524 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:35,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:35,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:35,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:35,576 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:36,347 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:36,349 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:36,375 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:36,413 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:36,421 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:36,423 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:38,648 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 40, "op": 1}
2019-06-30 21:18:38,674 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:38,675 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:38,724 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:38,748 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:18:38,870 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:38,908 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:38,910 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:41,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:41,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:41,711 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:41,905 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:41,914 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:41,916 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:44,986 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:44,988 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:45,015 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:45,048 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:45,056 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:45,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:47,631 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.00315, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:47,652 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:47,677 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:47,685 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:50,101 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:50,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:50,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:50,163 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:50,171 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:50,173 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:52,749 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:52,777 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:52,814 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:52,822 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:18:58,713 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:18:58,714 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:18:58,743 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:18:58,778 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:18:59,003 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:18:59,005 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:06,954 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:06,983 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:07,813 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:07,821 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:12,504 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:12,506 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:12,533 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:12,566 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:12,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:12,576 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:14,594 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:14,596 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:14,647 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:14,707 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:14,745 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:14,746 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:17,960 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:17,963 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:17,989 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:18,022 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:18,030 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:18,032 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:18,893 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:18,896 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:18,930 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:18,964 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:18,972 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:18,975 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:19,701 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 41, "op": 1}
2019-06-30 21:19:19,801 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:19:20,036 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:20,038 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:20,065 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:20,097 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:20,106 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:20,108 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:21,192 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:21,193 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:21,219 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:21,252 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:21,261 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:21,262 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:26,505 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:26,507 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:26,532 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:26,565 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:26,575 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:26,577 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:29,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:29,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:29,442 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:29,474 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:29,482 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:29,486 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:31,523 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:31,525 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:31,571 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:31,657 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:31,690 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:31,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:42,573 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:42,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:42,647 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:42,655 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:43,483 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:43,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:43,514 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:43,540 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:43,547 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:43,548 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:44,289 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:44,291 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:44,318 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:44,356 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:44,364 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:44,366 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:46,608 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:46,609 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:46,657 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:46,805 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:46,843 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:46,845 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:49,590 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:49,593 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:49,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:49,897 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:49,922 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:49,925 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:53,321 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:19:53,440 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:53,441 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:53,471 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:53,501 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:53,510 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:53,511 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:55,932 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01864, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:55,976 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:56,009 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:56,017 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:19:58,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:19:58,415 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:19:58,442 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:19:58,475 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:19:58,483 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:19:58,484 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:00,749 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 41, "op": 1}
2019-06-30 21:20:00,846 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:20:00,985 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:00,987 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:01,015 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:01,052 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:01,061 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:01,063 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:06,963 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:06,964 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:06,995 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:07,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:07,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:07,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:15,221 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:15,253 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:16,044 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:16,052 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:20,861 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:20,862 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:20,889 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:20,920 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:20,930 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:20,932 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:22,966 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:22,967 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:23,019 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:23,084 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:23,093 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:23,094 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:26,247 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:26,248 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:26,275 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:26,309 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:26,316 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:26,318 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:27,176 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:27,178 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:27,205 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:27,238 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:27,246 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:27,247 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:28,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:28,386 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:28,414 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:28,447 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:28,462 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:28,464 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:29,403 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:29,404 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:29,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:29,470 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:29,478 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:29,478 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:34,987 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:34,988 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:35,016 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:35,049 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:35,063 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:35,064 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:37,776 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:37,776 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:37,797 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:37,830 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:37,837 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:37,838 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:39,924 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:39,925 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:39,974 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:40,059 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:40,092 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:40,093 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:41,869 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 41, "op": 1}
2019-06-30 21:20:41,963 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:20:51,283 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:51,314 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:51,347 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:51,356 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:52,188 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:52,189 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:52,215 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:52,248 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:52,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:52,260 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:53,036 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:53,037 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:53,064 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:53,101 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:53,109 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:53,110 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:55,340 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:55,341 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:55,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:55,537 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:55,578 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:55,579 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:20:58,352 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:20:58,353 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:20:58,389 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:20:58,586 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:20:58,623 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:20:58,624 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:01,928 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:01,929 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:01,961 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:01,994 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:02,000 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:02,003 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:04,406 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:04,407 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:04,437 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:04,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:04,476 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:04,477 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:06,850 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:06,851 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:06,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:06,895 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:06,904 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:06,905 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:09,304 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:09,307 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:09,335 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:09,370 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:09,403 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:09,406 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:15,265 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:15,267 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:15,294 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:15,327 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:15,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:15,554 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:22,921 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:21:23,019 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:21:23,506 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01614, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:23,534 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:24,182 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-06-30 21:21:24,339 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:24,347 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:28,762 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:28,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:28,790 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:28,824 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:28,832 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:28,833 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:30,970 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:30,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:30,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:31,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:31,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:31,041 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:34,169 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:34,171 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:34,205 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:34,233 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:34,243 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:34,244 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:35,034 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:35,035 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:35,062 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:35,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:35,103 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:35,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:36,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:36,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:36,176 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:36,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:36,216 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:36,219 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:37,086 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:37,087 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:37,117 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:37,179 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:37,187 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:37,188 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:39,803 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 6320}
2019-06-30 21:21:42,647 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:42,649 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:42,676 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:42,708 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:42,723 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:42,724 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:45,400 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:45,401 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:45,428 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:45,462 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:45,470 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:45,472 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:47,550 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:47,552 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:47,583 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:47,667 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:47,704 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:47,705 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:58,578 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03053, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:58,606 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:58,639 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:58,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:21:59,548 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:21:59,550 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:21:59,577 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:21:59,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:21:59,618 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:21:59,619 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:00,384 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:00,385 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:00,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:22:00,437 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:22:00,444 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:00,445 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:02,694 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:02,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:02,747 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:22:02,894 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 2.9, 'old': 3.5}
2019-06-30 21:22:02,931 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:02,933 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:03,985 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:22:04,093 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:22:05,680 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:05,681 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:05,729 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 2.9}
2019-06-30 21:22:05,815 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.5}
2019-06-30 21:22:05,848 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:05,849 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:08,679 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:08,679 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:08,707 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:08,739 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:08,748 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:08,750 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:11,386 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:11,387 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:11,414 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:11,448 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:11,456 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:11,457 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:13,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:13,903 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:13,929 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:13,961 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:13,969 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:13,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:16,363 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:16,364 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:16,391 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:16,427 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:16,437 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:16,438 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:22,400 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:22,402 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:22,430 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:22,711 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:23,064 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:23,065 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:30,592 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:30,593 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:30,621 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:31,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:31,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:31,499 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:33,563 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:33,564 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:33,616 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:33,677 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:33,690 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:33,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:35,275 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:35,304 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:35,337 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:35,345 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:36,467 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:36,468 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:36,496 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:36,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:36,537 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:36,538 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:39,257 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:39,258 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:39,285 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:39,317 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:39,326 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:39,327 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:40,214 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:40,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:40,243 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:40,276 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:40,282 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:40,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:41,243 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:41,245 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:41,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:41,324 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:41,332 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:41,335 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:42,209 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:22:42,210 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:42,233 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:42,266 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:42,275 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:22:42,276 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:45,054 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:22:45,149 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:22:47,987 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:48,009 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:48,038 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:48,045 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:22:53,202 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:22:53,223 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:22:53,247 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:22:53,256 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:05,029 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:05,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:05,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:05,099 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:07,065 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:07,068 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:07,147 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:07,179 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:07,192 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:07,195 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:10,751 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:10,780 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:10,813 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:10,822 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:12,733 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:12,734 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:12,782 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:12,868 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:12,901 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:12,905 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:15,327 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:15,328 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:15,380 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:15,508 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:15,519 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:15,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:18,555 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:18,556 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:18,585 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:18,616 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:18,624 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:18,626 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:21,102 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:21,104 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:21,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:21,164 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:21,172 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:21,175 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:23,556 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:23,558 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:23,584 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:23,617 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:23,626 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:23,628 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:26,040 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:26,066 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:26,123 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:26,125 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 42, "op": 1}
2019-06-30 21:23:26,134 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:26,210 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:23:32,101 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:32,103 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:32,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:32,374 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:32,764 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:32,765 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:40,263 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:40,265 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:40,297 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:41,136 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:41,145 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:41,147 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:43,230 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:43,231 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:43,278 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:43,344 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:43,357 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:43,359 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:44,932 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:44,953 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:44,977 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:44,985 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:46,076 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:46,077 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:46,104 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:46,138 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:46,146 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:46,147 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:48,988 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:48,989 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:49,017 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:49,050 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:49,060 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:49,061 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:49,969 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:49,971 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:49,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:50,029 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:50,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:50,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:50,973 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:50,974 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:51,001 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:51,032 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:51,042 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:51,043 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:52,000 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:23:52,001 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:52,030 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:52,061 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:52,071 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:23:52,073 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:23:57,808 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:23:57,837 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:23:57,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:23:57,887 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:02,929 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:02,958 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:02,989 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:02,999 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:07,180 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:24:07,275 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:24:09,510 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:24:14,573 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:14,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:14,645 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:14,654 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:16,635 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:16,636 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:16,682 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:16,743 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:16,761 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:16,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:20,115 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:20,143 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:20,176 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:20,193 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:22,217 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:22,220 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:22,261 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:22,348 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:22,380 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:22,381 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:24,805 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:24,806 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:24,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:25,021 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:25,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:25,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:28,090 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:28,091 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:28,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:28,153 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:28,160 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:28,162 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:30,519 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:30,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:30,544 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:30,580 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:30,587 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:30,589 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:33,079 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:33,081 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:33,108 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:33,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:33,149 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:33,150 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:35,558 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:35,559 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:35,587 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:35,623 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:35,633 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:35,634 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:41,646 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:41,648 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:41,705 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:41,886 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:42,255 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:42,257 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:48,234 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:24:48,326 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:24:49,816 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:49,817 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:49,844 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:50,648 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:50,657 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:50,657 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:52,750 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:52,751 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:52,799 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:52,859 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:52,871 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:52,872 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:54,466 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:54,494 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:54,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:54,534 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:55,638 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:55,639 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:55,667 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:55,698 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:55,708 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:55,709 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:58,500 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:58,502 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:58,528 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:58,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:58,571 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:58,571 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:24:59,471 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:24:59,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:24:59,524 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:24:59,556 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:24:59,566 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:24:59,568 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:00,352 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:00,353 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:00,382 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:00,412 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:00,420 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:00,421 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:01,484 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:01,485 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:01,510 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:01,543 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:01,552 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:01,553 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:07,464 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:07,492 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:07,544 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:07,552 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:12,648 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:12,683 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:12,719 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:12,727 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:24,466 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:24,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:24,527 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:24,536 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:26,518 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:26,520 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:26,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:26,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:26,644 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:26,646 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:29,287 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:25:29,384 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:25:30,016 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:30,044 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:30,077 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:30,086 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:32,118 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:32,121 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:32,166 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:32,248 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:32,286 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:32,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:34,715 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:34,716 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:34,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:34,911 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:34,949 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:34,950 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:38,157 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:38,158 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:38,187 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:38,221 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:38,230 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:38,231 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:40,621 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:40,623 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:40,649 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:40,684 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:40,697 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:40,698 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:43,147 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:43,148 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:43,177 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:43,208 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:43,215 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:43,216 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:45,540 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:45,542 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:45,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:45,603 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:45,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:45,611 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:51,618 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:51,619 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:51,648 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:25:51,854 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:25:52,217 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:25:52,218 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:25:59,758 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:25:59,759 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:25:59,786 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:00,618 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:00,626 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:00,627 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:02,715 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:02,716 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:02,764 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:02,831 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:02,839 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:02,839 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:04,394 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03931, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:04,419 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:04,452 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:04,462 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:05,576 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:05,577 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:05,599 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:05,628 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:05,635 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:05,635 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:08,409 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:08,410 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:08,438 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:08,472 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:08,480 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:08,481 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:09,356 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:09,357 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:09,390 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:09,424 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:09,432 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:09,434 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:10,217 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:10,218 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:10,249 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:10,280 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:10,289 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:10,290 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:10,349 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:26:10,444 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:26:11,333 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:11,334 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:11,358 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:11,392 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:11,400 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:11,401 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:17,235 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01403, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:17,259 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:17,293 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:17,308 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:22,423 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0108, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:22,451 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:22,487 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:22,494 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:34,112 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03731, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:34,140 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:34,174 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:34,182 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:36,174 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:36,175 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:36,206 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:36,267 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:36,284 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:36,284 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:39,821 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03893, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:39,841 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:39,871 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:39,878 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:41,879 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:41,880 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:41,928 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:42,014 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.2, 'old': 3.8}
2019-06-30 21:26:42,047 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:42,047 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:44,471 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:44,473 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:44,521 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.8, 'old': 3.2}
2019-06-30 21:26:44,709 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 3.8}
2019-06-30 21:26:44,724 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:44,726 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:47,968 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:47,969 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:47,998 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:48,031 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:48,039 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:48,040 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:50,442 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:50,444 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:50,464 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:50,489 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:50,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:50,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:51,412 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:26:51,501 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:26:52,912 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:52,913 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:52,933 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:52,957 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:52,966 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:52,967 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:26:55,379 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:26:55,380 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:26:55,408 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:26:55,445 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:26:55,453 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:26:55,455 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:01,433 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:01,434 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:01,468 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:01,547 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:01,561 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:01,562 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:09,696 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:09,697 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:09,727 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:10,488 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:10,495 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:10,496 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:12,562 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:12,565 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:12,590 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:12,657 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:12,690 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:12,692 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:21,075 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:21,077 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:21,102 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:21,135 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:21,145 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:21,146 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:21,937 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:21,938 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:21,957 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:21,982 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:21,990 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:21,990 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:23,163 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0016299999999999995, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:23,188 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:23,217 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:23,225 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:28,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:28,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:28,311 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:28,344 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:28,355 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:28,357 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:30,311 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:30,313 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:30,338 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:30,373 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:30,382 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:30,383 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:31,581 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:31,583 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:31,609 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:31,642 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:31,651 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:31,652 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:32,429 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03784, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:32,457 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:32,469 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:27:32,495 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:32,503 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:32,556 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:27:33,413 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:33,413 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:33,440 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:33,473 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:33,482 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:33,483 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:39,507 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:39,509 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:39,535 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:39,568 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:39,576 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:39,579 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:44,501 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014170000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:44,529 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:44,562 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:44,570 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:46,491 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:46,492 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:46,540 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:46,626 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:46,659 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:46,660 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:49,075 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:49,076 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:49,125 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:49,271 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:49,305 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:49,306 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:51,890 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:51,891 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:51,940 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:52,131 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:52,144 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:52,145 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:55,269 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:27:55,271 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:55,296 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:55,329 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:55,339 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:27:55,341 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:27:57,743 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.003140000000000004, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:27:57,767 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:27:57,801 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:27:57,808 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:00,213 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:00,214 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:00,241 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:00,274 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:00,283 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:00,286 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:02,912 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.01404, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:02,937 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:02,974 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:02,983 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:08,976 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:08,977 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:09,007 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:09,073 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:09,080 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:09,080 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:13,526 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 43, "op": 1}
2019-06-30 21:28:13,617 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:28:17,204 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:17,205 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:17,237 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:18,071 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:18,079 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:18,080 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:20,083 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:20,085 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:20,133 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:20,198 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:20,207 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:20,210 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:27,158 - octoprint.plugins.discordremote - INFO - Received event: printing_progress
2019-06-30 21:28:28,610 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:28,611 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:28,632 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:28,656 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:28,664 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:28,665 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:29,550 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:29,551 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:29,580 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:29,614 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:29,621 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:29,622 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:30,693 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.0016299999999999995, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:30,723 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:30,755 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:30,763 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:36,026 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:36,027 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:36,057 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:36,090 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:36,100 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:36,101 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:38,057 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:38,058 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:38,087 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:38,119 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:38,127 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:38,128 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:39,154 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:39,156 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:39,184 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:39,216 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:39,224 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:39,226 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:40,065 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.03784, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:40,094 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:40,128 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:40,137 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:41,149 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:41,151 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:41,178 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:41,210 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:41,220 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:41,220 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:47,310 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:47,312 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:47,348 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:47,415 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:47,422 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:47,425 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:52,262 - octoprint.plugins.excluderegion - INFO - retraction: excluding=False, retract={"e": 0.014170000000000002, "feedRate": 2100.0, "originalCommand": "G1 E-0.04000 F2100.00000", "type": "RetractionState", "recoverExcluded": false}, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:52,291 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:52,324 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:52,333 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:54,254 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:54,254 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommands=[u'G1 E-0.04000 F2100.00000']
2019-06-30 21:28:54,303 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 4.1, 'old': 3.5}
2019-06-30 21:28:54,389 - octoprint.plugins.excluderegion - INFO - Event received: event=ZChange payload={'new': 3.5, 'old': 4.1}
2019-06-30 21:28:54,421 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E0.80000 F2100.00000
2019-06-30 21:28:54,422 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E0.80000 F2100.00000, returnCommands=[u'G1 E0.80000 F2100.00000']
2019-06-30 21:28:54,582 - octoprint.plugins.discordremote - INFO - Heartbeat: {"d": 46, "op": 1}
2019-06-30 21:28:54,688 - octoprint.plugins.discordremote - INFO - Received HEARTBEAT_ACK message
2019-06-30 21:28:56,843 - octoprint.plugins.excluderegion - WARNING - Encountered recovery without a corresponding retraction: G1 E-0.04000 F2100.00000
2019-06-30 21:28:56,845 - octoprint.plugins.excluderegion - INFO - recovery: excluding=False, originalCmd=G1 E-0.04000 F2100.00000, returnCommand
|
AttributeError
|
def _render(self):
"""Rendering runnable."""
ffmpeg = settings().get(["webcam", "ffmpeg"])
bitrate = settings().get(["webcam", "bitrate"])
if ffmpeg is None or bitrate is None:
self._logger.warning(
"Cannot create movie, path to ffmpeg or desired bitrate is unset"
)
return
if self._videocodec == "mpeg2video":
extension = "mpg"
else:
extension = "mp4"
input = os.path.join(
self._capture_dir,
self._capture_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
),
)
output = os.path.join(
self._output_dir,
self._output_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
extension=extension,
),
)
for i in range(4):
if os.path.exists(input % i):
break
else:
self._logger.warning("Cannot create a movie, no frames captured")
self._notify_callback(
"fail", output, returncode=0, stdout="", stderr="", reason="no_frames"
)
return
hflip = settings().getBoolean(["webcam", "flipH"])
vflip = settings().getBoolean(["webcam", "flipV"])
rotate = settings().getBoolean(["webcam", "rotate90"])
watermark = None
if settings().getBoolean(["webcam", "watermark"]):
watermark = os.path.join(
os.path.dirname(__file__), "static", "img", "watermark.png"
)
if sys.platform == "win32":
# Because ffmpeg hiccups on windows' drive letters and backslashes we have to give the watermark
# path a special treatment. Yeah, I couldn't believe it either...
watermark = watermark.replace("\\", "/").replace(":", "\\\\:")
# prepare ffmpeg command
command_str = self._create_ffmpeg_command_string(
ffmpeg,
self._fps,
bitrate,
self._threads,
input,
output,
self._videocodec,
hflip=hflip,
vflip=vflip,
rotate=rotate,
watermark=watermark,
)
self._logger.debug("Executing command: {}".format(command_str))
with self.render_job_lock:
try:
self._notify_callback("start", output)
self._logger.debug("Parsing ffmpeg output")
c = CommandlineCaller()
c.on_log_stderr = self._process_ffmpeg_output
returncode, stdout_text, stderr_text = c.call(
command_str, delimiter=b"\r", buffer_size=512
)
self._logger.debug("Done with parsing")
if returncode == 0:
self._notify_callback("success", output)
else:
self._logger.warning(
"Could not render movie, got return code %r: %s"
% (returncode, stderr_text)
)
self._notify_callback(
"fail",
output,
returncode=returncode,
stdout=stdout_text,
stderr=stderr_text,
reason="returncode",
)
except Exception:
self._logger.exception("Could not render movie due to unknown error")
self._notify_callback("fail", output, reason="unknown")
finally:
self._notify_callback("always", output)
|
def _render(self):
"""Rendering runnable."""
ffmpeg = settings().get(["webcam", "ffmpeg"])
bitrate = settings().get(["webcam", "bitrate"])
if ffmpeg is None or bitrate is None:
self._logger.warning(
"Cannot create movie, path to ffmpeg or desired bitrate is unset"
)
return
if self._videocodec == "mpeg2video":
extension = "mpg"
else:
extension = "mp4"
input = os.path.join(
self._capture_dir,
self._capture_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
),
)
output = os.path.join(
self._output_dir,
self._output_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
extension=extension,
),
)
for i in range(4):
if os.path.exists(input % i):
break
else:
self._logger.warning("Cannot create a movie, no frames captured")
self._notify_callback(
"fail", output, returncode=0, stdout="", stderr="", reason="no_frames"
)
return
hflip = settings().getBoolean(["webcam", "flipH"])
vflip = settings().getBoolean(["webcam", "flipV"])
rotate = settings().getBoolean(["webcam", "rotate90"])
watermark = None
if settings().getBoolean(["webcam", "watermark"]):
watermark = os.path.join(
os.path.dirname(__file__), "static", "img", "watermark.png"
)
if sys.platform == "win32":
# Because ffmpeg hiccups on windows' drive letters and backslashes we have to give the watermark
# path a special treatment. Yeah, I couldn't believe it either...
watermark = watermark.replace("\\", "/").replace(":", "\\\\:")
# prepare ffmpeg command
command_str = self._create_ffmpeg_command_string(
ffmpeg,
self._fps,
bitrate,
self._threads,
input,
output,
self._videocodec,
hflip=hflip,
vflip=vflip,
rotate=rotate,
watermark=watermark,
)
self._logger.debug("Executing command: {}".format(command_str))
with self.render_job_lock:
try:
self._notify_callback("start", output)
self._logger.debug("Parsing ffmpeg output")
c = CommandlineCaller()
c.on_log_stderr = self._process_ffmpeg_output
returncode, stdout_text, stderr_text = c.call(
command_str, universal_newlines=True
)
self._logger.debug("Done with parsing")
if returncode == 0:
self._notify_callback("success", output)
else:
self._logger.warning(
"Could not render movie, got return code %r: %s"
% (returncode, stderr_text)
)
self._notify_callback(
"fail",
output,
returncode=returncode,
stdout=stdout_text,
stderr=stderr_text,
reason="returncode",
)
except Exception:
self._logger.exception("Could not render movie due to unknown error")
self._notify_callback("fail", output, reason="unknown")
finally:
self._notify_callback("always", output)
|
https://github.com/OctoPrint/OctoPrint/issues/3409
|
2019-12-31 14:26:39,831 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-12-31 14:26:40,448 - octoprint.timelapse - ERROR - Could not render movie due to unknown error
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/octoprint/timelapse.py", line 901, in _render
returncode, stdout_text, stderr_text = c.call(command_str, universal_newlines=True)
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/octoprint/util/commandline.py", line 209, in call
all_stderr += process_stderr(p.stderr.readlines(timeout=0.5))
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/sarge/__init__.py", line 352, in readlines
data = self.read(sizehint, block, timeout)
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/sarge/__init__.py", line 296, in read
result = b''.join(b)
TypeError: sequence item 0: expected a bytes-like object, str found
|
TypeError
|
def call(self, command, **kwargs):
"""
Calls a command
Args:
command (list, tuple or str): command to call
kwargs (dict): additional keyword arguments to pass to the sarge ``run`` call (note that ``_async``,
``stdout`` and ``stderr`` will be overwritten)
Returns:
(tuple) a 3-tuple of return code, full stdout and full stderr output
"""
if isinstance(command, (list, tuple)):
joined_command = " ".join(command)
else:
joined_command = command
self._logger.debug("Calling: {}".format(joined_command))
self.on_log_call(joined_command)
# if we are running under windows, make sure there are no unicode strings in the env
if get_os() == "windows" and "env" in kwargs:
kwargs["env"] = dict((k, to_bytes(v)) for k, v in kwargs["env"].items())
delimiter = kwargs.get("delimiter", b"\n")
try:
kwargs.pop("delimiter")
except KeyError:
pass
buffer_size = kwargs.get("buffer_size", -1)
try:
kwargs.pop("buffer_size")
except KeyError:
pass
kwargs.update(
dict(
async_=True,
stdout=DelimiterCapture(delimiter=delimiter, buffer_size=buffer_size),
stderr=DelimiterCapture(delimiter=delimiter, buffer_size=buffer_size),
)
)
p = sarge.run(command, **kwargs)
while len(p.commands) == 0:
# somewhat ugly... we can't use wait_events because
# the events might not be all set if an exception
# by sarge is triggered within the async process
# thread
time.sleep(0.01)
# by now we should have a command, let's wait for its
# process to have been prepared
p.commands[0].process_ready.wait()
if not p.commands[0].process:
# the process might have been set to None in case of any exception
self._logger.error(
"Error while trying to run command {}".format(joined_command)
)
return None, [], []
all_stdout = []
all_stderr = []
def process_lines(lines, logger):
if not lines:
return []
l = self._preprocess_lines(
*map(lambda x: to_unicode(x, errors="replace"), lines)
)
logger(*l)
return list(l)
def process_stdout(lines):
return process_lines(lines, self._log_stdout)
def process_stderr(lines):
return process_lines(lines, self._log_stderr)
try:
while p.returncode is None:
all_stderr += process_stderr(p.stderr.readlines(timeout=0.5))
all_stdout += process_stdout(p.stdout.readlines(timeout=0.5))
p.commands[0].poll()
finally:
p.close()
all_stderr += process_stderr(p.stderr.readlines())
all_stdout += process_stdout(p.stdout.readlines())
return p.returncode, all_stdout, all_stderr
|
def call(self, command, **kwargs):
"""
Calls a command
Args:
command (list, tuple or str): command to call
kwargs (dict): additional keyword arguments to pass to the sarge ``run`` call (note that ``_async``,
``stdout`` and ``stderr`` will be overwritten)
Returns:
(tuple) a 3-tuple of return code, full stdout and full stderr output
"""
if isinstance(command, (list, tuple)):
joined_command = " ".join(command)
else:
joined_command = command
self._logger.debug("Calling: {}".format(joined_command))
self.on_log_call(joined_command)
# if we are running under windows, make sure there are no unicode strings in the env
if get_os() == "windows" and "env" in kwargs:
kwargs["env"] = dict((k, to_bytes(v)) for k, v in kwargs["env"].items())
kwargs.update(dict(async_=True, stdout=sarge.Capture(), stderr=sarge.Capture()))
p = sarge.run(command, **kwargs)
while len(p.commands) == 0:
# somewhat ugly... we can't use wait_events because
# the events might not be all set if an exception
# by sarge is triggered within the async process
# thread
time.sleep(0.01)
# by now we should have a command, let's wait for its
# process to have been prepared
p.commands[0].process_ready.wait()
if not p.commands[0].process:
# the process might have been set to None in case of any exception
self._logger.error(
"Error while trying to run command {}".format(joined_command)
)
return None, [], []
all_stdout = []
all_stderr = []
def process_lines(lines, logger):
if not lines:
return []
l = self._preprocess_lines(
*map(lambda x: to_unicode(x, errors="replace"), lines)
)
logger(*l)
return list(l)
def process_stdout(lines):
return process_lines(lines, self._log_stdout)
def process_stderr(lines):
return process_lines(lines, self._log_stderr)
try:
while p.returncode is None:
all_stderr += process_stderr(p.stderr.readlines(timeout=0.5))
all_stdout += process_stdout(p.stdout.readlines(timeout=0.5))
p.commands[0].poll()
finally:
p.close()
all_stderr += process_stderr(p.stderr.readlines())
all_stdout += process_stdout(p.stdout.readlines())
return p.returncode, all_stdout, all_stderr
|
https://github.com/OctoPrint/OctoPrint/issues/3409
|
2019-12-31 14:26:39,831 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-12-31 14:26:40,448 - octoprint.timelapse - ERROR - Could not render movie due to unknown error
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/octoprint/timelapse.py", line 901, in _render
returncode, stdout_text, stderr_text = c.call(command_str, universal_newlines=True)
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/octoprint/util/commandline.py", line 209, in call
all_stderr += process_stderr(p.stderr.readlines(timeout=0.5))
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/sarge/__init__.py", line 352, in readlines
data = self.read(sizehint, block, timeout)
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/sarge/__init__.py", line 296, in read
result = b''.join(b)
TypeError: sequence item 0: expected a bytes-like object, str found
|
TypeError
|
def __init__(self, delimiter=b"\n", *args, **kwargs):
self._delimiter = delimiter
sarge.Capture.__init__(self, *args, **kwargs)
|
def __init__(self):
self._logger = logging.getLogger(__name__)
self.on_log_call = lambda *args, **kwargs: None
"""Callback for the called command line"""
self.on_log_stdout = lambda *args, **kwargs: None
"""Callback for stdout output"""
self.on_log_stderr = lambda *args, **kwargs: None
"""Callback for stderr output"""
|
https://github.com/OctoPrint/OctoPrint/issues/3409
|
2019-12-31 14:26:39,831 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2019-12-31 14:26:40,448 - octoprint.timelapse - ERROR - Could not render movie due to unknown error
Traceback (most recent call last):
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/octoprint/timelapse.py", line 901, in _render
returncode, stdout_text, stderr_text = c.call(command_str, universal_newlines=True)
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/octoprint/util/commandline.py", line 209, in call
all_stderr += process_stderr(p.stderr.readlines(timeout=0.5))
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/sarge/__init__.py", line 352, in readlines
data = self.read(sizehint, block, timeout)
File "/home/pi/OctoPrint/venv/lib/python3.7/site-packages/sarge/__init__.py", line 296, in read
result = b''.join(b)
TypeError: sequence item 0: expected a bytes-like object, str found
|
TypeError
|
def _render(self):
"""Rendering runnable."""
ffmpeg = settings().get(["webcam", "ffmpeg"])
bitrate = settings().get(["webcam", "bitrate"])
if ffmpeg is None or bitrate is None:
self._logger.warning(
"Cannot create movie, path to ffmpeg or desired bitrate is unset"
)
return
if self._videocodec == "mpeg2video":
extension = "mpg"
else:
extension = "mp4"
input = os.path.join(
self._capture_dir,
self._capture_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
),
)
output_name = self._output_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
extension=extension,
)
temporary = os.path.join(self._output_dir, ".{}".format(output_name))
output = os.path.join(self._output_dir, output_name)
for i in range(4):
if os.path.exists(input % i):
break
else:
self._logger.warning("Cannot create a movie, no frames captured")
self._notify_callback(
"fail", output, returncode=0, stdout="", stderr="", reason="no_frames"
)
return
hflip = settings().getBoolean(["webcam", "flipH"])
vflip = settings().getBoolean(["webcam", "flipV"])
rotate = settings().getBoolean(["webcam", "rotate90"])
watermark = None
if settings().getBoolean(["webcam", "watermark"]):
watermark = os.path.join(
os.path.dirname(__file__), "static", "img", "watermark.png"
)
if sys.platform == "win32":
# Because ffmpeg hiccups on windows' drive letters and backslashes we have to give the watermark
# path a special treatment. Yeah, I couldn't believe it either...
watermark = watermark.replace("\\", "/").replace(":", "\\\\:")
# prepare ffmpeg command
command_str = self._create_ffmpeg_command_string(
ffmpeg,
self._fps,
bitrate,
self._threads,
input,
temporary,
self._videocodec,
hflip=hflip,
vflip=vflip,
rotate=rotate,
watermark=watermark,
)
self._logger.debug("Executing command: {}".format(command_str))
with self.render_job_lock:
try:
self._notify_callback("start", output)
self._logger.debug("Parsing ffmpeg output")
c = CommandlineCaller()
c.on_log_stderr = self._process_ffmpeg_output
returncode, stdout_text, stderr_text = c.call(
command_str, delimiter=b"\r", buffer_size=512
)
self._logger.debug("Done with parsing")
if returncode == 0:
shutil.move(temporary, output)
self._notify_callback("success", output)
else:
self._logger.warning(
"Could not render movie, got return code %r: %s"
% (returncode, stderr_text)
)
self._notify_callback(
"fail",
output,
returncode=returncode,
stdout=stdout_text,
stderr=stderr_text,
reason="returncode",
)
except Exception:
self._logger.exception("Could not render movie due to unknown error")
self._notify_callback("fail", output, reason="unknown")
finally:
try:
if os.path.exists(temporary):
os.remove(temporary)
except Exception:
self._logger.warn(
"Could not delete temporary timelapse {}".format(temporary)
)
self._notify_callback("always", output)
|
def _render(self):
"""Rendering runnable."""
ffmpeg = settings().get(["webcam", "ffmpeg"])
bitrate = settings().get(["webcam", "bitrate"])
if ffmpeg is None or bitrate is None:
self._logger.warning(
"Cannot create movie, path to ffmpeg or desired bitrate is unset"
)
return
if self._videocodec == "mpeg2video":
extension = "mpg"
else:
extension = "mp4"
input = os.path.join(
self._capture_dir,
self._capture_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
),
)
output = os.path.join(
self._output_dir,
self._output_format.format(
prefix=self._prefix,
postfix=self._postfix if self._postfix is not None else "",
extension=extension,
),
)
for i in range(4):
if os.path.exists(input % i):
break
else:
self._logger.warning("Cannot create a movie, no frames captured")
self._notify_callback(
"fail", output, returncode=0, stdout="", stderr="", reason="no_frames"
)
return
hflip = settings().getBoolean(["webcam", "flipH"])
vflip = settings().getBoolean(["webcam", "flipV"])
rotate = settings().getBoolean(["webcam", "rotate90"])
watermark = None
if settings().getBoolean(["webcam", "watermark"]):
watermark = os.path.join(
os.path.dirname(__file__), "static", "img", "watermark.png"
)
if sys.platform == "win32":
# Because ffmpeg hiccups on windows' drive letters and backslashes we have to give the watermark
# path a special treatment. Yeah, I couldn't believe it either...
watermark = watermark.replace("\\", "/").replace(":", "\\\\:")
# prepare ffmpeg command
command_str = self._create_ffmpeg_command_string(
ffmpeg,
self._fps,
bitrate,
self._threads,
input,
output,
self._videocodec,
hflip=hflip,
vflip=vflip,
rotate=rotate,
watermark=watermark,
)
self._logger.debug("Executing command: {}".format(command_str))
with self.render_job_lock:
try:
self._notify_callback("start", output)
self._logger.debug("Parsing ffmpeg output")
c = CommandlineCaller()
c.on_log_stderr = self._process_ffmpeg_output
returncode, stdout_text, stderr_text = c.call(
command_str, delimiter=b"\r", buffer_size=512
)
self._logger.debug("Done with parsing")
if returncode == 0:
self._notify_callback("success", output)
else:
self._logger.warning(
"Could not render movie, got return code %r: %s"
% (returncode, stderr_text)
)
self._notify_callback(
"fail",
output,
returncode=returncode,
stdout=stdout_text,
stderr=stderr_text,
reason="returncode",
)
except Exception:
self._logger.exception("Could not render movie due to unknown error")
self._notify_callback("fail", output, reason="unknown")
finally:
self._notify_callback("always", output)
|
https://github.com/OctoPrint/OctoPrint/issues/3396
|
2019-12-17 10:51:22,247 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 10:51:22,254 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-12-17 10:51:22,254 - octoprint.server - INFO - OctoPrint 1.4.0rc3
2019-12-17 10:51:22,261 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| M73 ETA Override (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Octoslack (1.9.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Prusa Mesh Leveling (0.3.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Telegram Notifications (1.5.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_telegram
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2019-12-17 10:51:22,295 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917016576
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-12-17 10:51:22,310 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-12-17 10:51:22,320 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:51:39,866 - octoprint.plugins.tracking - INFO - Sent tracking event pong, payload: {'plugins': u'telegram:1.5.0,prusameshmap:0.3.0,m73etaoverride:1.0.1,firmwareupdater:1.6.1,octoslack:1.9.1'}
2019-12-17 10:51:44,132 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 432026}
2019-12-17 10:51:52,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:52:03,423 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-12-17 10:52:23,509 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:52:54,122 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:53:24,756 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:53:55,404 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:54:26,067 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:54:56,748 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:55:27,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:55:58,016 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:56:28,650 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:56:59,279 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:57:29,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:58:00,519 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:58:31,151 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:58:55,325 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.125
2019-12-17 10:58:55,629 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.125
2019-12-17 10:58:55,725 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.125
2019-12-17 10:59:01,753 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 10:59:32,371 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:00:03,026 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:00:33,704 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:01:04,353 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:01:34,984 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:02:05,627 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:02:36,259 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:03:06,892 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:03:37,523 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:04:08,157 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:04:38,781 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:05:09,413 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:05:40,046 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:06:10,707 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:06:22,251 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 11:06:41,337 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:06:44,216 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 432926}
2019-12-17 11:07:11,965 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:07:42,618 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:08:13,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:08:43,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:09:14,554 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:09:45,176 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:10:15,804 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:10:46,432 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:11:17,063 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:11:47,686 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:12:18,297 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:12:48,968 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:13:19,625 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:13:50,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:14:20,883 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:14:51,516 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:15:22,134 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:15:52,751 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:16:23,377 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:16:53,998 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:17:24,617 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:17:55,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:18:25,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:18:56,507 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:19:27,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:19:57,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:20:28,480 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:20:59,160 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:21:22,253 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 11:21:29,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:21:44,138 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 433826}
2019-12-17 11:22:00,422 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:22:31,057 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:23:01,668 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:23:32,298 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:24:02,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:24:33,567 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:25:04,180 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:25:34,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:26:05,428 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:26:27,914 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.125
2019-12-17 11:26:36,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:27:06,741 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:27:37,361 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:28:08,012 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:28:38,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:29:09,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:29:39,929 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:30:10,548 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:30:41,160 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:31:11,785 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:31:42,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:32:13,058 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:32:43,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:33:14,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:33:45,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:34:15,685 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:34:46,315 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:35:16,921 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:35:47,597 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:36:18,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:36:22,256 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 11:36:44,155 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 434726}
2019-12-17 11:36:48,865 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:37:19,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:37:50,141 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:38:20,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:38:51,442 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:39:22,079 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:39:52,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:40:23,334 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:40:53,989 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:41:24,597 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:41:55,189 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:42:25,809 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:42:56,398 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:43:27,066 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:43:57,680 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:44:28,349 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:44:58,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:45:29,589 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:46:00,188 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:46:30,834 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:47:01,467 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:47:32,122 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:48:02,712 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:48:33,313 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:49:03,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:49:34,605 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:50:05,232 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:50:35,829 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:51:06,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:51:22,260 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 11:51:37,131 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:51:44,187 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 435626}
2019-12-17 11:52:07,768 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:52:38,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:53:09,048 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:53:39,672 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:54:10,314 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:54:40,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:55:11,644 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:55:42,280 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:56:12,920 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:56:43,504 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:57:14,152 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:57:44,815 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:58:15,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:58:46,047 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:59:16,673 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 11:59:47,308 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:00:17,952 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:00:48,607 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:01:19,237 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:01:49,876 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:02:20,526 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:02:51,132 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:03:21,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:03:52,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:04:23,064 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:04:53,693 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:05:24,321 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:05:54,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:06:22,264 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 12:06:25,580 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:06:44,249 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 436526}
2019-12-17 12:06:56,161 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:07:26,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:07:57,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:08:27,960 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:08:58,573 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:09:29,205 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:09:59,831 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:10:30,482 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:11:01,124 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:11:31,745 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:12:02,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:12:33,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:13:03,671 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:13:34,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:14:04,899 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:14:35,542 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:15:06,156 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:15:36,790 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:16:07,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:16:38,080 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:17:08,726 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:17:39,365 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:18:10,017 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:18:40,623 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:19:11,226 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:19:41,859 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:20:12,573 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:20:43,242 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:21:13,854 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:21:22,268 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 12:21:44,214 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 437426}
2019-12-17 12:21:44,511 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:22:15,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:22:45,901 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:23:16,550 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:23:47,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:24:17,766 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:24:48,377 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:25:18,986 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:25:49,613 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:26:20,250 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:26:50,864 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:27:21,451 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:27:52,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:28:22,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:28:53,373 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:29:24,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:29:54,682 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:30:25,277 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:30:55,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:31:26,493 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:31:57,102 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:32:27,729 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:32:58,794 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:33:29,418 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:34:00,065 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:34:30,720 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:35:01,345 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:35:31,998 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:36:02,624 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:36:22,271 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 12:36:33,280 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:36:44,216 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 438326}
2019-12-17 12:37:03,928 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:37:34,559 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:38:05,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:38:35,869 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:39:06,473 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:39:37,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:40:07,746 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:40:38,366 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:41:09,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:41:39,682 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:42:10,330 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:42:40,939 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:43:11,566 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:43:42,188 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:44:12,846 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:44:43,474 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:45:14,103 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:45:44,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:46:15,350 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:46:45,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:47:16,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:47:47,256 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:48:17,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:48:48,542 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:49:19,201 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:49:49,814 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:50:20,444 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:50:51,056 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:51:22,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:51:22,276 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 12:51:44,225 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 439226}
2019-12-17 12:51:52,695 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:52:23,411 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:52:54,045 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:53:24,682 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:53:55,333 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:54:25,980 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:54:56,607 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:55:27,266 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:55:57,913 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:56:28,562 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:56:59,194 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:57:29,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:58:00,419 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:58:31,059 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:59:01,688 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 12:59:32,311 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:00:02,960 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:00:33,591 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:01:04,244 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:01:34,861 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:02:05,487 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:02:36,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:03:06,848 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:03:37,495 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:04:08,121 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:04:38,799 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:05:09,446 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:05:40,088 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:06:10,727 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:06:22,279 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 13:06:41,367 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:06:44,281 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 440126}
2019-12-17 13:07:11,991 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:07:42,611 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:08:13,276 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:08:43,921 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:09:14,549 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:09:45,739 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:10:16,371 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:10:47,011 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:11:17,674 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:11:48,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:12:18,931 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:12:49,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:13:20,181 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:13:50,854 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:14:21,441 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:14:52,173 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:15:22,843 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:15:53,451 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:16:24,092 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:16:54,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:17:25,419 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:17:56,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:18:26,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:18:57,516 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:19:28,152 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:19:58,773 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:20:29,433 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:21:00,151 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:21:22,284 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 13:21:30,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:21:44,268 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 441026}
2019-12-17 13:22:01,386 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:22:32,022 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:23:02,641 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:23:33,285 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:24:03,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:24:34,558 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:25:05,209 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:25:35,842 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:26:06,462 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:26:37,094 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:27:07,726 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:27:38,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:28:08,987 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:28:39,616 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:29:10,238 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:29:40,872 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:30:11,512 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:30:42,150 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:31:12,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:31:24,769 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-12-17 13:31:37,274 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.170
2019-12-17 13:31:39,416 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-12-17 13:31:43,444 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:31:45,331 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2019-12-17 13:31:45,532 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 13:31:55,591 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-12-17 13:31:55,594 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-12-17 13:31:55,631 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-12-17 13:31:56,642 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-12-17 13:31:58,644 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-12-17 13:31:58,648 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-12-17 13:31:58,662 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-12-17 13:31:58,728 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-12-17 13:31:58,837 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.8.1 based on Marlin"
2019-12-17 13:31:59,067 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-12-17 13:31:59,073 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 13:31:59,107 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-12-17 13:31:59,993 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': u'Prusa-Firmware 3.8.1 based on Marlin'}
2019-12-17 13:32:12,648 - octoprint.filemanager.analysis - INFO - Starting analysis of local:RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode
2019-12-17 13:32:12,676 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode
2019-12-17 13:32:14,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:32:29,510 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-12-17 13:32:44,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:32:51,240 - octoprint.filemanager.analysis - INFO - Analysis of entry local:RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode finished, needed 38.59s
2019-12-17 13:33:15,226 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:33:45,838 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:34:11,802 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-12-17 13:34:11,868 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-12-17 13:34:11,893 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-12-17 13:34:11,930 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-12-17 13:34:12,102 - octoprint.plugins.telegram - DEBUG - Got an event: PrintStarted Payload: {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}
2019-12-17 13:34:12,119 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 13:34:12,154 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 0.010815239890615665, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 3840, 'filepos': 453L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:34:12,158 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 18.1, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 18.4, u'target': 0.0, u'offset': 0}}
2019-12-17 13:34:12,168 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintStarted', 'status': {u'progress': {'completion': 0.010815239890615665, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 3840, 'filepos': 453L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 18.4, 'payload': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'time_left': u'01:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'PrintStarted'}, 'percent': 0, 'bed_temp': 18.1, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 18.1, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 18.4, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 18.4, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': u'14:38:12', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:00:00', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 0.0, 'e2_temp': 18.4}
2019-12-17 13:34:12,171 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Started printing RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode.
2019-12-17 13:34:12,258 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintStarted
2019-12-17 13:34:12,261 - octoprint.plugins.telegram - INFO - Sending a message: Started printing RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:34:12,266 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:34:12,336 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:34:12,338 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:34:12,343 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:34:12,704 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': u'local', u'throttled_now': False, u'throttled_mask': 327680, 'file': '4da8ed969bd6c26ff28d339998351de91718b130', u'throttled_past': True}
2019-12-17 13:34:14,184 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:34:14,437 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-12-17 13:34:16,472 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:34:47,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:35:17,728 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:35:48,367 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:36:05,175 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-12-17 13:36:05,390 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-12-17 13:36:05,728 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-12-17 13:36:08,083 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-12-17 13:36:19,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:36:22,289 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 13:36:44,336 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 441926}
2019-12-17 13:36:49,639 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:36:49,963 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-12-17 13:37:20,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:37:46,257 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': None}
2019-12-17 13:37:50,917 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:37:56,810 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.3, u'old': 0.4}
2019-12-17 13:37:58,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.3}
2019-12-17 13:38:14,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 0.2}
2019-12-17 13:38:14,759 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.6}
2019-12-17 13:38:21,558 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:38:22,733 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:38:22,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-12-17 13:38:34,475 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:38:35,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-12-17 13:38:52,190 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:39:22,848 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:39:44,701 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:39:44,716 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=0.80 old_z=0.20 last_z=0.00 notification_height=3.00 notification_time=5
2019-12-17 13:39:44,728 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 0.21062261879693467, 'printTimeLeftOrigin': 'estimate', 'printTime': 332, 'printTimeLeft': 3720, 'filepos': 8822L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 0.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:39:44,734 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool3': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool2': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool1': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool0': {u'actual': 215.1, u'target': 215.0, u'offset': 0}}
2019-12-17 13:39:44,740 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 0.21062261879693467, 'printTimeLeftOrigin': 'estimate', 'printTime': 332, 'printTimeLeft': 3720, 'filepos': 8822L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 0.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 215.0, 'e1_temp': 215.1, 'payload': {u'new': 0.8, u'old': 0.2}, 'time_left': u'01:02:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 0, 'bed_temp': 60.2, 'e1_target': 215.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool3': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool2': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool1': {u'actual': 215.1, u'target': 215.0, u'offset': 0}, u'tool0': {u'actual': 215.1, u'target': 215.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:41:44', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:05:32', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 0.8, 'e2_temp': 215.1}
2019-12-17 13:39:44,742 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=0.8.
Bed 60.2/60.0, Extruder 215.1/215.0.
00:05:32, 0%% done, 01:02:00 remaining.
Completed time 14:41:44.
2019-12-17 13:39:44,743 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:39:44,745 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=0.8.\nBed 60.2/60.0, Extruder 215.1/215.0.\n11:11:32, 0%% done, 11:11:00 remaining.\nCompleted time 11:11:44. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:39:44,746 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:39:44,770 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:39:44,771 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:39:44,772 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:39:47,057 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:39:48,861 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-12-17 13:39:48,893 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:39:48,930 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-12-17 13:39:53,503 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:39:55,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:39:55,948 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-12-17 13:40:24,150 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:40:38,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:40:38,784 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-12-17 13:40:54,743 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:41:02,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-12-17 13:41:02,687 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.35, u'old': 0.8}
2019-12-17 13:41:09,436 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 0.35}
2019-12-17 13:41:09,554 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.35, u'old': 0.95}
2019-12-17 13:41:25,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:41:31,426 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 0.35}
2019-12-17 13:41:31,686 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.35, u'old': 0.95}
2019-12-17 13:41:34,429 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 0.35}
2019-12-17 13:41:34,506 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.35, u'old': 0.95}
2019-12-17 13:41:40,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 0.35}
2019-12-17 13:41:40,675 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.35, u'old': 0.95}
2019-12-17 13:41:51,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 0.35}
2019-12-17 13:41:51,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.35, u'old': 0.95}
2019-12-17 13:41:55,974 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:42:03,071 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 0.35}
2019-12-17 13:42:03,194 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.5, u'old': 0.95}
2019-12-17 13:42:09,971 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 0.5}
2019-12-17 13:42:10,028 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.5, u'old': 1.1}
2019-12-17 13:42:26,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:42:32,785 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 0.5}
2019-12-17 13:42:32,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.5, u'old': 1.1}
2019-12-17 13:42:35,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 0.5}
2019-12-17 13:42:35,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.5, u'old': 1.1}
2019-12-17 13:42:41,904 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 0.5}
2019-12-17 13:42:41,976 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.5, u'old': 1.1}
2019-12-17 13:42:50,053 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 0.5}
2019-12-17 13:42:50,165 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.5, u'old': 1.1}
2019-12-17 13:42:57,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:43:05,204 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 0.5}
2019-12-17 13:43:05,431 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.1}
2019-12-17 13:43:11,735 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:11,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.25}
2019-12-17 13:43:22,767 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:22,810 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.25}
2019-12-17 13:43:24,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:25,008 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.25}
2019-12-17 13:43:27,962 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:43:30,705 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:30,771 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.25}
2019-12-17 13:43:36,740 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:36,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.25}
2019-12-17 13:43:40,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:40,656 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.65, u'old': 1.25}
2019-12-17 13:43:41,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 0.65}
2019-12-17 13:43:41,858 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.25}
2019-12-17 13:43:48,127 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:43:48,194 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:43:49,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:43:49,510 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:43:58,620 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:43:59,521 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:43:59,577 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:44:01,723 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:44:01,786 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:44:08,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:44:08,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:44:10,010 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:44:10,092 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:44:14,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:44:14,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:44:14,619 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:44:14,729 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-12-17 13:44:19,985 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-12-17 13:44:20,066 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.4}
2019-12-17 13:44:25,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:25,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:29,285 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:44:36,663 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:36,708 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:38,002 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:38,082 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:40,268 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:40,324 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:46,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:46,591 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=1.55 old_z=0.95 last_z=0.00 notification_height=3.00 notification_time=5
2019-12-17 13:44:46,614 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 3.7637989807412326, 'printTimeLeftOrigin': 'estimate', 'printTime': 634, 'printTimeLeft': 3420, 'filepos': 157648L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.55, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:44:46,620 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-12-17 13:44:46,638 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 3.7637989807412326, 'printTimeLeftOrigin': 'estimate', 'printTime': 634, 'printTimeLeft': 3420, 'filepos': 157648L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.55, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 1.55, u'old': 0.95}, 'time_left': u'00:57:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 3, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:41:46', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:34', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 1.55, 'e2_temp': 210.0}
2019-12-17 13:44:46,642 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=1.55.
Bed 60.2/60.0, Extruder 210.0/210.0.
00:10:34, 3%% done, 00:57:00 remaining.
Completed time 14:41:46.
2019-12-17 13:44:46,651 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:44:46,657 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=1.55.\nBed 60.2/60.0, Extruder 210.0/210.0.\n11:11:34, 3%% done, 11:11:00 remaining.\nCompleted time 11:11:46. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:44:46,662 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:44:46,746 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:44:46,749 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:44:46,751 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:44:49,054 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:44:51,033 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:51,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:52,041 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:56,097 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:56,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:57,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:57,218 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.95, u'old': 1.55}
2019-12-17 13:44:58,604 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 0.95}
2019-12-17 13:44:58,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.55}
2019-12-17 13:44:59,916 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:45:05,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:05,082 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:15,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:15,260 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:16,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:16,675 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:18,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:19,025 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:24,802 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:24,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:27,374 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:27,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:28,600 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:28,663 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:30,564 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:45:32,432 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:32,506 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.1, u'old': 1.7}
2019-12-17 13:45:37,028 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 1.1}
2019-12-17 13:45:37,080 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.7}
2019-12-17 13:45:43,490 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:45:43,578 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:45:52,994 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:45:53,071 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:45:54,381 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:45:54,431 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:45:56,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:45:56,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:46:01,185 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:46:02,992 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:46:03,056 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:46:04,750 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:46:04,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:46:06,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:46:06,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:46:09,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:46:09,068 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:46:13,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:46:13,260 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.25, u'old': 1.85}
2019-12-17 13:46:14,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 1.25}
2019-12-17 13:46:14,686 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 1.85}
2019-12-17 13:46:21,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:21,066 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:31,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:31,510 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:31,804 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:46:32,717 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:32,756 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:35,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:35,126 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:40,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:41,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:43,264 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:43,331 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:47,161 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:47,209 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:51,479 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:51,563 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-12-17 13:46:52,801 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-12-17 13:46:52,845 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.0}
2019-12-17 13:46:58,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:46:59,336 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:02,423 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:47:08,938 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:09,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:10,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:10,083 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:12,424 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:12,498 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:18,306 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:18,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:23,852 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:23,909 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:26,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:26,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:27,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:27,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:29,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:29,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.55, u'old': 2.15}
2019-12-17 13:47:30,318 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 1.55}
2019-12-17 13:47:30,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.15}
2019-12-17 13:47:33,043 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:47:36,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:36,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:47:38,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:38,644 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:47:47,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:47,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:47:49,839 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:49,889 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:47:56,218 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:56,304 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:47:58,056 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:58,140 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:47:59,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:47:59,187 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:48:02,037 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:48:02,080 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:48:03,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:48:06,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:48:06,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.7, u'old': 2.3}
2019-12-17 13:48:07,410 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 1.7}
2019-12-17 13:48:07,559 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.3}
2019-12-17 13:48:13,892 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:13,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:21,424 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:21,509 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:24,050 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:24,140 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:26,518 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:26,577 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:32,315 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:32,367 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:34,329 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:48:36,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:36,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:37,424 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:37,494 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:40,801 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:40,853 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:41,756 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:41,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.85, u'old': 2.45}
2019-12-17 13:48:43,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 1.85}
2019-12-17 13:48:43,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.45}
2019-12-17 13:48:50,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:48:50,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:48:58,095 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:48:58,157 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:00,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:00,902 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:03,289 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:03,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:04,995 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:49:09,177 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:10,314 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:13,221 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:13,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:14,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:14,439 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:17,920 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:17,960 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:18,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:19,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-12-17 13:49:20,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-12-17 13:49:20,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.6}
2019-12-17 13:49:27,308 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:27,394 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:35,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:35,349 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:35,638 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:49:38,334 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:38,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:40,816 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:40,857 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:46,683 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:46,702 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=2.75 old_z=2.15 last_z=0.00 notification_height=3.00 notification_time=5
2019-12-17 13:49:46,720 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 11.36213768349499, 'printTimeLeftOrigin': 'estimate', 'printTime': 934, 'printTimeLeft': 3180, 'filepos': 475907L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.75, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:49:46,724 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.4, u'target': 210.0, u'offset': 0}}
2019-12-17 13:49:46,734 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 11.36213768349499, 'printTimeLeftOrigin': 'estimate', 'printTime': 934, 'printTimeLeft': 3180, 'filepos': 475907L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.75, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.4, 'payload': {u'new': 2.75, u'old': 2.15}, 'time_left': u'00:53:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 11, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.4, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:42:46', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:34', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 2.75, 'e2_temp': 210.4}
2019-12-17 13:49:46,738 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=2.75.
Bed 60.0/60.0, Extruder 210.4/210.0.
00:15:34, 11%% done, 00:53:00 remaining.
Completed time 14:42:46.
2019-12-17 13:49:46,744 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:49:46,748 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=2.75.\nBed 60.0/60.0, Extruder 210.4/210.0.\n11:11:34, 11%% done, 11:11:00 remaining.\nCompleted time 11:11:46. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:49:46,752 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:49:46,834 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:49:46,836 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:49:46,839 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:49:49,174 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:49:50,949 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:51,019 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:51,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:51,983 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:52,043 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:56,415 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:56,463 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.15, u'old': 2.75}
2019-12-17 13:49:58,324 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 2.15}
2019-12-17 13:49:58,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.75}
2019-12-17 13:50:04,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:05,467 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:06,238 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:50:12,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:12,946 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:16,082 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:16,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:18,368 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:18,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:24,299 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:25,462 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:28,636 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:28,685 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:29,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:29,864 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:31,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:31,532 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.9}
2019-12-17 13:50:35,760 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-12-17 13:50:35,837 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 2.9}
2019-12-17 13:50:36,948 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:50:42,398 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:50:42,421 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=3.05 old_z=2.45 last_z=3.05 notification_height=3.00 notification_time=5
2019-12-17 13:50:42,432 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 12.755847272577947, 'printTimeLeftOrigin': 'estimate', 'printTime': 990, 'printTimeLeft': 3180, 'filepos': 534283L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.05, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:50:42,435 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-12-17 13:50:42,450 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 12.755847272577947, 'printTimeLeftOrigin': 'estimate', 'printTime': 990, 'printTimeLeft': 3180, 'filepos': 534283L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.05, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 3.05, u'old': 2.45}, 'time_left': u'00:53:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 12, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:43:42', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:16:30', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 3.05, 'e2_temp': 210.2}
2019-12-17 13:50:42,459 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=3.05.
Bed 59.9/60.0, Extruder 210.2/210.0.
00:16:30, 12%% done, 00:53:00 remaining.
Completed time 14:43:42.
2019-12-17 13:50:42,463 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:50:42,465 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=3.05.\nBed 59.9/60.0, Extruder 210.2/210.0.\n11:11:30, 12%% done, 11:11:00 remaining.\nCompleted time 11:11:42. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:50:42,468 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:50:42,530 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:50:42,532 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:50:42,534 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:50:46,809 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:50:50,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:50:50,100 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=2.45 old_z=3.05 last_z=2.45 notification_height=3.00 notification_time=5
2019-12-17 13:50:50,108 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.026634139773009, 'printTimeLeftOrigin': 'estimate', 'printTime': 998, 'printTimeLeft': 3120, 'filepos': 545625L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:50:50,110 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}
2019-12-17 13:50:50,118 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.026634139773009, 'printTimeLeftOrigin': 'estimate', 'printTime': 998, 'printTimeLeft': 3120, 'filepos': 545625L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.7, 'payload': {u'new': 2.45, u'old': 3.05}, 'time_left': u'00:52:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:42:50', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:16:38', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 2.45, 'e2_temp': 209.7}
2019-12-17 13:50:50,122 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=2.45.
Bed 60.0/60.0, Extruder 209.7/210.0.
00:16:38, 13%% done, 00:52:00 remaining.
Completed time 14:42:50.
2019-12-17 13:50:50,125 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:50:50,129 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=2.45.\nBed 60.0/60.0, Extruder 209.7/210.0.\n11:11:38, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:50. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:50:50,134 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:50:50,162 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:50:50,164 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:50:50,167 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:50:54,934 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:50:56,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:50:57,031 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:50:57,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:50:57,096 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:51:01,367 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:51:02,499 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:51:06,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:51:06,430 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:51:07,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:51:10,644 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:51:10,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:51:10,874 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:51:10,926 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.45, u'old': 3.05}
2019-12-17 13:51:13,031 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 2.45}
2019-12-17 13:51:13,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.05}
2019-12-17 13:51:19,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:20,185 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:22,292 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 13:51:31,005 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:31,085 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:33,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:33,521 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:38,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:51:39,211 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:39,264 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:44,327 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 442826}
2019-12-17 13:51:44,845 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:44,909 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:46,679 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:46,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:50,496 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:50,563 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-12-17 13:51:51,662 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-12-17 13:51:51,713 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.2}
2019-12-17 13:51:58,194 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:51:58,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:09,086 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:09,118 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:52:09,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:11,609 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:11,652 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:17,468 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:17,951 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:22,568 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:22,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:23,508 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:23,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:24,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:24,279 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:28,872 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:28,982 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.75, u'old': 3.35}
2019-12-17 13:52:30,069 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 2.75}
2019-12-17 13:52:30,134 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.35}
2019-12-17 13:52:36,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:52:36,687 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:52:39,723 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:52:46,135 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:52:46,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:52:48,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:52:48,096 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:52:50,463 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:52:50,511 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:52:56,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:52:56,833 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:53:00,689 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:53:00,738 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:53:02,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:53:03,005 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:53:03,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:53:03,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:53:06,737 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:53:06,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.5}
2019-12-17 13:53:08,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-12-17 13:53:08,668 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.5}
2019-12-17 13:53:10,373 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:53:15,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:15,119 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:17,306 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:17,394 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:17,619 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:17,671 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:26,260 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:26,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:28,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:28,517 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:34,841 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:34,936 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:37,047 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:37,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:37,327 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:37,373 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:40,490 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:40,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:41,063 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:53:42,536 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:42,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:43,405 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:43,457 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.05, u'old': 3.65}
2019-12-17 13:53:46,588 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 3.05}
2019-12-17 13:53:46,651 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.65}
2019-12-17 13:53:52,536 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:53:53,073 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:03,268 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:03,342 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:03,499 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:03,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:06,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:06,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:11,671 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:54:11,965 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:12,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:16,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:16,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:18,361 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:18,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:22,102 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:22,160 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:22,313 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:22,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.8}
2019-12-17 13:54:23,629 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-12-17 13:54:23,683 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.8}
2019-12-17 13:54:30,157 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:30,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.95}
2019-12-17 13:54:40,075 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:40,113 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.95}
2019-12-17 13:54:42,257 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:42,285 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:54:42,323 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.95}
2019-12-17 13:54:48,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:48,085 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=3.95 old_z=3.35 last_z=2.45 notification_height=3.00 notification_time=5
2019-12-17 13:54:48,102 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 19.047690671724283, 'printTimeLeftOrigin': 'estimate', 'printTime': 1236, 'printTimeLeft': 2940, 'filepos': 797819L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.95, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:54:48,105 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 13:54:48,114 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 19.047690671724283, 'printTimeLeftOrigin': 'estimate', 'printTime': 1236, 'printTimeLeft': 2940, 'filepos': 797819L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.95, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 3.95, u'old': 3.35}, 'time_left': u'00:49:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 19, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:43:48', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:20:36', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 3.95, 'e2_temp': 209.9}
2019-12-17 13:54:48,117 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=3.95.
Bed 60.1/60.0, Extruder 209.9/210.0.
00:20:36, 19%% done, 00:49:00 remaining.
Completed time 14:43:48.
2019-12-17 13:54:48,121 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:54:48,124 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=3.95.\nBed 60.1/60.0, Extruder 209.9/210.0.\n11:11:36, 19%% done, 11:11:00 remaining.\nCompleted time 11:11:48. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:54:48,130 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:54:48,217 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:54:48,219 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:54:48,220 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:54:50,568 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:54:52,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.95}
2019-12-17 13:54:53,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:53,211 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.95}
2019-12-17 13:54:54,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:54,299 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.35, u'old': 3.95}
2019-12-17 13:54:58,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 3.35}
2019-12-17 13:54:58,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 3.95}
2019-12-17 13:55:04,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:04,482 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:06,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:06,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:12,946 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:55:15,520 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:15,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:17,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:17,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:23,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:23,538 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:28,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:28,651 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:29,580 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:29,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-12-17 13:55:33,873 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-12-17 13:55:33,947 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.1}
2019-12-17 13:55:39,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:55:39,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.25}
2019-12-17 13:55:43,622 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:55:48,455 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-12-17 13:55:48,917 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-12-17 13:55:49,272 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-12-17 13:55:51,163 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:55:51,246 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.25}
2019-12-17 13:55:52,152 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-12-17 13:55:53,678 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:55:53,728 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.25}
2019-12-17 13:55:59,521 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:56:00,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.25}
2019-12-17 13:56:04,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:56:04,468 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.25}
2019-12-17 13:56:05,581 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:56:05,649 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.65, u'old': 4.25}
2019-12-17 13:56:09,952 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 3.65}
2019-12-17 13:56:10,015 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.25}
2019-12-17 13:56:14,284 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:56:16,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:16,459 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-12-17 13:56:26,159 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:26,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-12-17 13:56:28,428 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:28,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-12-17 13:56:34,202 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:34,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-12-17 13:56:39,706 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:39,767 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-12-17 13:56:43,314 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:43,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-12-17 13:56:44,387 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-12-17 13:56:44,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.4}
2019-12-17 13:56:44,995 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:56:50,830 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:56:50,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:56:53,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:56:53,862 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:00,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:00,986 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:01,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:01,195 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:01,365 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:01,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:03,996 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:04,052 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:09,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:10,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:14,602 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:14,689 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:15,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:57:18,884 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:18,960 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:19,985 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:20,057 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:20,226 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:20,273 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.95, u'old': 4.55}
2019-12-17 13:57:20,436 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 3.95}
2019-12-17 13:57:20,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.55}
2019-12-17 13:57:27,269 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:27,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:27,967 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:28,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:28,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:28,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:37,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:37,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:40,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:40,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:45,729 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:45,779 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:46,255 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:57:51,351 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:51,420 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:55,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:55,163 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:55,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:55,492 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:55,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:55,776 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 4.7}
2019-12-17 13:57:57,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 4.1}
2019-12-17 13:57:57,154 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.7}
2019-12-17 13:58:03,495 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:03,548 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:12,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:12,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:13,802 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:13,842 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:16,015 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:16,064 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:16,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:58:22,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:22,317 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:24,678 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:24,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:27,420 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:27,469 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:28,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:28,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:32,357 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:32,401 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.25, u'old': 4.85}
2019-12-17 13:58:32,962 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 4.25}
2019-12-17 13:58:33,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 4.85}
2019-12-17 13:58:38,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:38,830 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:58:42,306 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:42,364 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:58:44,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:44,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:58:46,296 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 13:58:47,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:47,337 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:58:47,479 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:58:49,786 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:49,879 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:58:51,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:51,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:58:53,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:58:53,981 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:00,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:00,324 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:03,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:03,066 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:05,400 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:05,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:06,119 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:06,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:06,884 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:06,959 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:09,383 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:09,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:11,164 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:11,221 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-12-17 13:59:12,370 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-12-17 13:59:12,430 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.0}
2019-12-17 13:59:18,088 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:59:18,790 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:18,876 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.15}
2019-12-17 13:59:29,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:29,549 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.15}
2019-12-17 13:59:31,647 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:31,729 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.15}
2019-12-17 13:59:37,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:38,003 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.15}
2019-12-17 13:59:42,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:42,156 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.15}
2019-12-17 13:59:44,219 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:44,286 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.55, u'old': 5.15}
2019-12-17 13:59:48,758 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 13:59:48,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 4.55}
2019-12-17 13:59:48,892 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.15 old_z=4.55 last_z=2.45 notification_height=3.00 notification_time=5
2019-12-17 13:59:48,901 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.691916551232488, 'printTimeLeftOrigin': 'estimate', 'printTime': 1537, 'printTimeLeft': 2700, 'filepos': 1118000L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.15, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 13:59:48,905 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}
2019-12-17 13:59:48,911 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.691916551232488, 'printTimeLeftOrigin': 'estimate', 'printTime': 1537, 'printTimeLeft': 2700, 'filepos': 1118000L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.15, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.7, 'payload': {u'new': 5.15, u'old': 4.55}, 'time_left': u'00:45:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:44:48', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:37', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 5.15, 'e2_temp': 209.7}
2019-12-17 13:59:48,915 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.15.
Bed 59.9/60.0, Extruder 209.7/210.0.
00:25:37, 26%% done, 00:45:00 remaining.
Completed time 14:44:48.
2019-12-17 13:59:48,921 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 13:59:48,924 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.15.\nBed 59.9/60.0, Extruder 209.7/210.0.\n11:11:37, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:48. with_image=True with_gif=False chatID= 506899983
2019-12-17 13:59:48,926 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 13:59:48,974 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 13:59:48,976 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 13:59:48,981 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 13:59:51,093 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 13:59:52,192 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.15}
2019-12-17 13:59:54,707 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 13:59:54,758 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.3}
2019-12-17 14:00:04,843 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 14:00:04,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.3}
2019-12-17 14:00:07,114 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 14:00:07,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.3}
2019-12-17 14:00:14,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 14:00:14,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.3}
2019-12-17 14:00:18,228 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 14:00:18,278 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.3}
2019-12-17 14:00:19,409 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:00:20,103 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 14:00:20,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.7, u'old': 5.3}
2019-12-17 14:00:23,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 4.7}
2019-12-17 14:00:23,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.3}
2019-12-17 14:00:29,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:29,523 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.45 old_z=4.85 last_z=5.45 notification_height=3.00 notification_time=5
2019-12-17 14:00:29,532 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 27.610901570812125, 'printTimeLeftOrigin': 'estimate', 'printTime': 1577, 'printTimeLeft': 2700, 'filepos': 1156492L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:00:29,535 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-12-17 14:00:29,541 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 27.610901570812125, 'printTimeLeftOrigin': 'estimate', 'printTime': 1577, 'printTimeLeft': 2700, 'filepos': 1156492L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 5.45, u'old': 4.85}, 'time_left': u'00:45:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 27, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:45:29', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:26:17', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 5.45, 'e2_temp': 209.8}
2019-12-17 14:00:29,546 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.45.
Bed 60.1/60.0, Extruder 209.8/210.0.
00:26:17, 27%% done, 00:45:00 remaining.
Completed time 14:45:29.
2019-12-17 14:00:29,550 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:00:29,555 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.45.\nBed 60.1/60.0, Extruder 209.8/210.0.\n11:11:17, 27%% done, 11:11:00 remaining.\nCompleted time 11:11:29. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:00:29,556 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:00:29,604 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:00:29,606 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:00:29,608 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:00:31,932 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:00:34,470 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.45}
2019-12-17 14:00:34,480 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=4.85 old_z=5.45 last_z=4.85 notification_height=3.00 notification_time=5
2019-12-17 14:00:34,485 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 27.780889447238582, 'printTimeLeftOrigin': 'estimate', 'printTime': 1582, 'printTimeLeft': 2700, 'filepos': 1163612L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:00:34,489 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 14:00:34,495 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 27.780889447238582, 'printTimeLeftOrigin': 'estimate', 'printTime': 1582, 'printTimeLeft': 2700, 'filepos': 1163612L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 4.85, u'old': 5.45}, 'time_left': u'00:45:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 27, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:45:34', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:26:22', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 4.85, 'e2_temp': 209.9}
2019-12-17 14:00:34,498 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=4.85.
Bed 60.2/60.0, Extruder 209.9/210.0.
00:26:22, 27%% done, 00:45:00 remaining.
Completed time 14:45:34.
2019-12-17 14:00:34,502 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:00:34,505 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=4.85.\nBed 60.2/60.0, Extruder 209.9/210.0.\n11:11:22, 27%% done, 11:11:00 remaining.\nCompleted time 11:11:34. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:00:34,508 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:00:34,580 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:00:34,582 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:00:34,582 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:00:36,927 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:00:38,945 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:39,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.45}
2019-12-17 14:00:41,186 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:41,257 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.45}
2019-12-17 14:00:46,688 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:47,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.45}
2019-12-17 14:00:50,031 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:00:50,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:50,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.45}
2019-12-17 14:00:52,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:52,906 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.85, u'old': 5.45}
2019-12-17 14:00:56,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 4.85}
2019-12-17 14:00:57,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.45}
2019-12-17 14:01:02,674 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:02,760 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-12-17 14:01:12,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:12,953 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-12-17 14:01:15,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:15,164 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-12-17 14:01:20,679 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:01:21,266 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:21,313 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-12-17 14:01:25,065 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:25,137 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-12-17 14:01:26,911 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:26,976 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-12-17 14:01:30,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-12-17 14:01:30,984 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 5.6}
2019-12-17 14:01:45,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 5.15}
2019-12-17 14:01:46,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 5.75}
2019-12-17 14:01:48,216 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 5.15}
2019-12-17 14:01:48,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 5.75}
2019-12-17 14:01:51,333 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:01:54,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 5.15}
2019-12-17 14:01:54,462 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 5.75}
2019-12-17 14:01:57,914 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 5.15}
2019-12-17 14:01:57,984 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 5.75}
2019-12-17 14:01:59,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 5.15}
2019-12-17 14:01:59,802 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.15, u'old': 5.75}
2019-12-17 14:02:03,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 5.15}
2019-12-17 14:02:03,667 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 5.75}
2019-12-17 14:02:10,532 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 5.3}
2019-12-17 14:02:10,600 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 5.9}
2019-12-17 14:02:18,525 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 5.3}
2019-12-17 14:02:18,577 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 5.9}
2019-12-17 14:02:20,764 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 5.3}
2019-12-17 14:02:20,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 5.9}
2019-12-17 14:02:21,963 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:02:30,969 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 5.3}
2019-12-17 14:02:31,015 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 5.9}
2019-12-17 14:02:33,706 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 5.3}
2019-12-17 14:02:33,801 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.3, u'old': 5.9}
2019-12-17 14:02:35,520 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 5.3}
2019-12-17 14:02:35,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 5.9}
2019-12-17 14:02:50,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:02:50,526 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 6.05}
2019-12-17 14:02:52,620 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:02:52,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:02:52,837 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 6.05}
2019-12-17 14:02:58,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:02:58,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 6.05}
2019-12-17 14:03:02,474 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:03:02,544 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 6.05}
2019-12-17 14:03:04,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:03:04,433 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 6.05}
2019-12-17 14:03:07,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:03:07,887 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.45, u'old': 6.05}
2019-12-17 14:03:08,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 5.45}
2019-12-17 14:03:08,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.05}
2019-12-17 14:03:13,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:14,512 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:23,299 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:03:23,353 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:23,400 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:25,679 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:25,729 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:31,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:31,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:33,588 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:33,645 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:36,617 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:36,673 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:38,518 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:38,578 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-12-17 14:03:41,285 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-12-17 14:03:41,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.2}
2019-12-17 14:03:53,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:03:56,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:03:56,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:03:58,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:03:58,533 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:04:03,775 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:04:03,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:04:08,188 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:04:08,228 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:04:10,045 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:04:10,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:04:12,629 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:04:12,681 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:04:13,266 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:04:13,317 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.75, u'old': 6.35}
2019-12-17 14:04:14,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 5.75}
2019-12-17 14:04:14,414 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.35}
2019-12-17 14:04:24,550 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:04:29,322 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:29,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:31,636 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:31,715 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:37,790 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:37,866 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:39,429 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:39,488 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:42,251 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:42,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:44,065 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:44,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:44,544 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:44,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:45,237 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:45,326 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.9, u'old': 6.5}
2019-12-17 14:04:48,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 5.9}
2019-12-17 14:04:48,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.5}
2019-12-17 14:04:54,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:04:54,458 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=6.65 old_z=6.05 last_z=4.85 notification_height=3.00 notification_time=5
2019-12-17 14:04:54,469 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 34.21710316783867, 'printTimeLeftOrigin': 'estimate', 'printTime': 1842, 'printTimeLeft': 2520, 'filepos': 1433195L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 6.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:04:54,474 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 14:04:54,482 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 34.21710316783867, 'printTimeLeftOrigin': 'estimate', 'printTime': 1842, 'printTimeLeft': 2520, 'filepos': 1433195L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 6.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 6.65, u'old': 6.05}, 'time_left': u'00:42:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 34, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:46:54', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:30:42', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 6.65, 'e2_temp': 209.9}
2019-12-17 14:04:54,486 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=6.65.
Bed 60.2/60.0, Extruder 209.9/210.0.
00:30:42, 34%% done, 00:42:00 remaining.
Completed time 14:46:54.
2019-12-17 14:04:54,490 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:04:54,493 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=6.65.\nBed 60.2/60.0, Extruder 209.9/210.0.\n11:11:42, 34%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:04:54,496 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:04:54,583 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:04:54,594 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:04:54,595 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:04:55,278 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:04:56,878 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:04:57,912 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:03,288 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:03,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:05,831 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:05,920 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:11,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:11,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:15,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:15,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:16,046 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:16,083 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:18,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:18,133 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:20,950 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:20,992 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.05, u'old': 6.65}
2019-12-17 14:05:22,102 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 6.05}
2019-12-17 14:05:22,156 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.65}
2019-12-17 14:05:25,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:05:37,825 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:37,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:40,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:40,208 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:45,568 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:46,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:48,083 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:48,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:49,349 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:49,413 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:49,926 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:49,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:52,876 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:52,946 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:55,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:55,158 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-12-17 14:05:56,619 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:05:57,400 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-12-17 14:05:57,484 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.8}
2019-12-17 14:06:03,683 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:03,731 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:12,723 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:12,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:13,755 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:13,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:16,148 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:16,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:22,273 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:22,296 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 14:06:22,327 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:26,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:26,237 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:26,814 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:26,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:27,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:06:27,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:27,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:31,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:31,304 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:31,881 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:31,935 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.35, u'old': 6.95}
2019-12-17 14:06:32,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 6.35}
2019-12-17 14:06:32,959 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 6.95}
2019-12-17 14:06:39,107 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:06:39,164 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:06:39,946 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:06:40,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:06:44,313 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 443726}
2019-12-17 14:06:48,045 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:06:48,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:06:50,446 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:06:50,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:06:56,533 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:06:56,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:06:57,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:07:00,108 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:00,158 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:07:01,065 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:01,130 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:07:01,532 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:01,579 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:07:04,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:04,974 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:07:05,241 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:05,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:07:06,065 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:06,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.5, u'old': 7.1}
2019-12-17 14:07:06,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 6.5}
2019-12-17 14:07:06,984 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.1}
2019-12-17 14:07:12,432 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:12,969 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:21,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:21,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:21,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:21,650 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:24,075 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:24,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:28,603 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:07:30,106 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:30,161 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:30,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:30,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:34,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:34,853 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:35,617 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:35,680 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:38,633 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:38,714 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:39,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:39,541 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.65, u'old': 7.25}
2019-12-17 14:07:40,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 6.65}
2019-12-17 14:07:40,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.25}
2019-12-17 14:07:45,649 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:07:45,699 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:07:54,877 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:07:54,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:07:55,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:07:55,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:07:57,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:07:57,707 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:07:59,214 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:08:03,055 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:08:03,137 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:08:07,055 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:08:07,108 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:08:09,327 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:08:09,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:08:12,635 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:08:12,717 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.4}
2019-12-17 14:08:12,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-12-17 14:08:12,939 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.4}
2019-12-17 14:08:19,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:19,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.55}
2019-12-17 14:08:27,553 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:27,602 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.55}
2019-12-17 14:08:29,898 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:08:29,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:30,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.55}
2019-12-17 14:08:35,346 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:35,904 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.55}
2019-12-17 14:08:39,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:39,231 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.55}
2019-12-17 14:08:41,270 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:41,323 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.95, u'old': 7.55}
2019-12-17 14:08:44,543 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 6.95}
2019-12-17 14:08:44,588 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.55}
2019-12-17 14:08:50,708 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:08:50,777 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.7}
2019-12-17 14:08:59,006 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:08:59,056 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.7}
2019-12-17 14:09:00,565 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:09:05,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:09:05,211 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.7}
2019-12-17 14:09:11,326 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:09:11,373 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.7}
2019-12-17 14:09:11,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:09:11,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.7}
2019-12-17 14:09:12,601 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:09:12,682 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.1, u'old': 7.7}
2019-12-17 14:09:20,571 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 7.1}
2019-12-17 14:09:20,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.7}
2019-12-17 14:09:26,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:26,659 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=7.85 old_z=7.25 last_z=7.85 notification_height=3.00 notification_time=5
2019-12-17 14:09:26,674 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 40.746284977034925, 'printTimeLeftOrigin': 'estimate', 'printTime': 2114, 'printTimeLeft': 2280, 'filepos': 1706672L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 7.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:09:26,682 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.3, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-12-17 14:09:26,686 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 40.746284977034925, 'printTimeLeftOrigin': 'estimate', 'printTime': 2114, 'printTimeLeft': 2280, 'filepos': 1706672L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 7.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 7.85, u'old': 7.25}, 'time_left': u'00:38:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 40, 'bed_temp': 60.3, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.3, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:47:26', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:14', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 7.85, 'e2_temp': 210.0}
2019-12-17 14:09:26,688 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=7.85.
Bed 60.3/60.0, Extruder 210.0/210.0.
00:35:14, 40%% done, 00:38:00 remaining.
Completed time 14:47:26.
2019-12-17 14:09:26,694 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:09:26,696 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=7.85.\nBed 60.3/60.0, Extruder 210.0/210.0.\n11:11:14, 40%% done, 11:11:00 remaining.\nCompleted time 11:11:26. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:09:26,698 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:09:26,736 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:09:26,737 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:09:26,739 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:09:29,355 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:09:30,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:30,524 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=7.25 old_z=7.85 last_z=7.25 notification_height=3.00 notification_time=5
2019-12-17 14:09:30,530 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 40.84426675299759, 'printTimeLeftOrigin': 'estimate', 'printTime': 2118, 'printTimeLeft': 2280, 'filepos': 1710776L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 7.25, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:09:30,533 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.3, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-12-17 14:09:30,539 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 40.84426675299759, 'printTimeLeftOrigin': 'estimate', 'printTime': 2118, 'printTimeLeft': 2280, 'filepos': 1710776L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 7.25, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 7.25, u'old': 7.85}, 'time_left': u'00:38:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 40, 'bed_temp': 60.3, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.3, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:47:30', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:18', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 7.25, 'e2_temp': 209.8}
2019-12-17 14:09:30,543 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=7.25.
Bed 60.3/60.0, Extruder 209.8/210.0.
00:35:18, 40%% done, 00:38:00 remaining.
Completed time 14:47:30.
2019-12-17 14:09:30,548 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:09:30,552 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=7.25.\nBed 60.3/60.0, Extruder 209.8/210.0.\n11:11:18, 40%% done, 11:11:00 remaining.\nCompleted time 11:11:30. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:09:30,555 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:09:30,587 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:09:30,588 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:09:30,590 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:09:31,212 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:09:32,867 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:09:35,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:35,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:41,566 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:41,624 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:42,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:43,049 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:44,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:44,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:46,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:46,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:48,602 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:48,650 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:48,970 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:49,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:53,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:53,970 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.25, u'old': 7.85}
2019-12-17 14:09:54,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 7.25}
2019-12-17 14:09:54,491 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=7.85 old_z=7.25 last_z=7.25 notification_height=3.00 notification_time=5
2019-12-17 14:09:54,499 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 41.3760279849704, 'printTimeLeftOrigin': 'estimate', 'printTime': 2142, 'printTimeLeft': 2220, 'filepos': 1733049L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 7.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:09:54,501 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-12-17 14:09:54,506 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 41.3760279849704, 'printTimeLeftOrigin': 'estimate', 'printTime': 2142, 'printTimeLeft': 2220, 'filepos': 1733049L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 7.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 7.85, u'old': 7.25}, 'time_left': u'00:37:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 41, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:46:54', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:42', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 7.85, 'e2_temp': 210.0}
2019-12-17 14:09:54,508 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=7.85.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:35:42, 41%% done, 00:37:00 remaining.
Completed time 14:46:54.
2019-12-17 14:09:54,510 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:09:54,514 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=7.85.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:42, 41%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:09:54,516 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:09:54,560 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:09:54,563 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:09:54,566 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:09:56,800 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:09:57,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 7.85}
2019-12-17 14:10:00,718 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:01,279 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:01,874 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:10:09,143 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:09,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:14,680 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:14,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:18,263 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:18,313 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:20,676 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:20,735 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:25,166 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:25,330 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:25,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:25,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:27,644 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:27,713 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-12-17 14:10:28,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-12-17 14:10:28,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 8.0}
2019-12-17 14:10:32,558 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:10:34,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 7.55}
2019-12-17 14:10:34,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 8.15}
2019-12-17 14:10:42,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 7.55}
2019-12-17 14:10:42,182 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 8.15}
2019-12-17 14:10:43,232 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 7.55}
2019-12-17 14:10:43,285 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 8.15}
2019-12-17 14:10:49,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 7.55}
2019-12-17 14:10:49,053 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 8.15}
2019-12-17 14:10:57,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 7.55}
2019-12-17 14:10:57,108 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.55, u'old': 8.15}
2019-12-17 14:10:58,180 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 7.55}
2019-12-17 14:10:58,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 8.15}
2019-12-17 14:11:03,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:11:04,405 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 7.7}
2019-12-17 14:11:04,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 8.3}
2019-12-17 14:11:12,546 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 7.7}
2019-12-17 14:11:12,623 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 8.3}
2019-12-17 14:11:12,923 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 7.7}
2019-12-17 14:11:12,982 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 8.3}
2019-12-17 14:11:18,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 7.7}
2019-12-17 14:11:19,207 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 8.3}
2019-12-17 14:11:20,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 7.7}
2019-12-17 14:11:20,089 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.7, u'old': 8.3}
2019-12-17 14:11:27,930 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 7.7}
2019-12-17 14:11:28,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 8.3}
2019-12-17 14:11:33,308 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 7.85}
2019-12-17 14:11:33,359 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 8.45}
2019-12-17 14:11:33,871 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:11:42,229 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 7.85}
2019-12-17 14:11:42,300 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 8.45}
2019-12-17 14:11:47,766 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 7.85}
2019-12-17 14:11:47,849 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.85, u'old': 8.45}
2019-12-17 14:11:56,535 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 7.85}
2019-12-17 14:11:56,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.45}
2019-12-17 14:12:01,983 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-12-17 14:12:02,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.6}
2019-12-17 14:12:04,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:12:11,769 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-12-17 14:12:11,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.6}
2019-12-17 14:12:17,208 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-12-17 14:12:17,259 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.6}
2019-12-17 14:12:26,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-12-17 14:12:26,821 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.6}
2019-12-17 14:12:32,223 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:32,737 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:33,606 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:33,691 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:33,913 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:33,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:34,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:34,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:34,772 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:34,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:35,225 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:12:39,482 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:39,552 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:43,300 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:43,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:48,741 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:48,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:53,874 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:53,958 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:58,218 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:58,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:58,509 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:58,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:58,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:58,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:59,229 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:59,325 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.15, u'old': 8.75}
2019-12-17 14:12:59,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 8.15}
2019-12-17 14:12:59,673 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 8.75}
2019-12-17 14:13:05,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 8.3}
2019-12-17 14:13:05,883 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:13:05,991 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 8.9}
2019-12-17 14:13:10,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 8.3}
2019-12-17 14:13:10,905 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 8.9}
2019-12-17 14:13:14,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 8.3}
2019-12-17 14:13:14,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 8.9}
2019-12-17 14:13:19,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 8.3}
2019-12-17 14:13:19,986 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 8.9}
2019-12-17 14:13:24,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 8.3}
2019-12-17 14:13:24,831 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.3, u'old': 8.9}
2019-12-17 14:13:28,689 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 8.3}
2019-12-17 14:13:28,764 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 8.9}
2019-12-17 14:13:34,947 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 8.45}
2019-12-17 14:13:35,004 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 9.05}
2019-12-17 14:13:36,488 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:13:39,021 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 8.45}
2019-12-17 14:13:39,073 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 9.05}
2019-12-17 14:13:42,660 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 8.45}
2019-12-17 14:13:42,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 9.05}
2019-12-17 14:13:52,732 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 8.45}
2019-12-17 14:13:52,807 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.45, u'old': 9.05}
2019-12-17 14:13:56,535 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 8.45}
2019-12-17 14:13:56,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.05}
2019-12-17 14:14:02,733 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-12-17 14:14:02,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-12-17 14:14:07,157 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:14:07,283 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-12-17 14:14:07,337 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-12-17 14:14:10,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-12-17 14:14:10,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-12-17 14:14:20,884 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-12-17 14:14:20,943 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-12-17 14:14:24,885 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-12-17 14:14:24,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 9.2}
2019-12-17 14:14:31,229 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 8.75}
2019-12-17 14:14:31,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 9.35}
2019-12-17 14:14:35,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 8.75}
2019-12-17 14:14:35,712 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 9.35}
2019-12-17 14:14:37,868 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:14:38,943 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 8.75}
2019-12-17 14:14:39,027 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 9.35}
2019-12-17 14:14:48,706 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 8.75}
2019-12-17 14:14:48,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.75, u'old': 9.35}
2019-12-17 14:14:52,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 8.75}
2019-12-17 14:14:52,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 9.35}
2019-12-17 14:14:58,697 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 8.9}
2019-12-17 14:14:58,723 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=9.50 old_z=8.90 last_z=7.25 notification_height=3.00 notification_time=5
2019-12-17 14:14:58,733 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 48.45005436269587, 'printTimeLeftOrigin': 'estimate', 'printTime': 2446, 'printTimeLeft': 1980, 'filepos': 2029347L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.5, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:14:58,737 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 14:14:58,757 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 48.45005436269587, 'printTimeLeftOrigin': 'estimate', 'printTime': 2446, 'printTimeLeft': 1980, 'filepos': 2029347L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.5, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 9.5, u'old': 8.9}, 'time_left': u'00:33:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 48, 'bed_temp': 59.7, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:47:58', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:40:46', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 9.5, 'e2_temp': 209.9}
2019-12-17 14:14:58,763 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=9.5.
Bed 59.7/60.0, Extruder 209.9/210.0.
00:40:46, 48%% done, 00:33:00 remaining.
Completed time 14:47:58.
2019-12-17 14:14:58,775 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:14:58,789 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=9.5.\nBed 59.7/60.0, Extruder 209.9/210.0.\n11:11:46, 48%% done, 11:11:00 remaining.\nCompleted time 11:11:58. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:14:58,799 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:14:58,830 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:14:58,832 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:14:58,833 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:15:01,209 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:15:02,394 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 9.5}
2019-12-17 14:15:02,965 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 8.9}
2019-12-17 14:15:03,044 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 9.5}
2019-12-17 14:15:06,435 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 8.9}
2019-12-17 14:15:06,501 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 9.5}
2019-12-17 14:15:08,569 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:15:16,270 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 8.9}
2019-12-17 14:15:16,338 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.9, u'old': 9.5}
2019-12-17 14:15:20,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 8.9}
2019-12-17 14:15:20,089 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 9.5}
2019-12-17 14:15:26,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 9.05}
2019-12-17 14:15:26,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 9.65}
2019-12-17 14:15:32,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 9.05}
2019-12-17 14:15:32,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 9.65}
2019-12-17 14:15:33,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 9.05}
2019-12-17 14:15:33,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 9.65}
2019-12-17 14:15:39,209 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:15:41,965 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 9.05}
2019-12-17 14:15:42,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.05, u'old': 9.65}
2019-12-17 14:15:47,140 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 9.05}
2019-12-17 14:15:47,219 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.65}
2019-12-17 14:15:53,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-12-17 14:15:53,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-12-17 14:15:59,707 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-12-17 14:15:59,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-12-17 14:16:01,067 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 14:16:01,516 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-12-17 14:16:01,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-12-17 14:16:09,648 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-12-17 14:16:09,707 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-12-17 14:16:09,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:16:15,188 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-12-17 14:16:15,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 9.8}
2019-12-17 14:16:21,363 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 9.35}
2019-12-17 14:16:21,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 9.95}
2019-12-17 14:16:27,520 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 9.35}
2019-12-17 14:16:27,576 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 9.95}
2019-12-17 14:16:29,281 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 9.35}
2019-12-17 14:16:29,337 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 9.95}
2019-12-17 14:16:37,334 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 9.35}
2019-12-17 14:16:37,387 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.35, u'old': 9.95}
2019-12-17 14:16:40,425 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:16:43,094 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 9.35}
2019-12-17 14:16:43,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 9.95}
2019-12-17 14:16:49,226 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 9.5}
2019-12-17 14:16:49,274 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 10.1}
2019-12-17 14:16:55,290 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 9.5}
2019-12-17 14:16:55,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 10.1}
2019-12-17 14:16:57,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 9.5}
2019-12-17 14:16:57,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 10.1}
2019-12-17 14:17:02,394 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 9.5}
2019-12-17 14:17:02,444 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 10.1}
2019-12-17 14:17:05,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 9.5}
2019-12-17 14:17:05,451 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.5, u'old': 10.1}
2019-12-17 14:17:10,871 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 9.5}
2019-12-17 14:17:10,930 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 10.1}
2019-12-17 14:17:11,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:17:17,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 9.65}
2019-12-17 14:17:17,137 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.25 old_z=9.65 last_z=10.25 notification_height=3.00 notification_time=5
2019-12-17 14:17:17,148 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.76438820838031, 'printTimeLeftOrigin': 'estimate', 'printTime': 2585, 'printTimeLeft': 1860, 'filepos': 2168169L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.25, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:17:17,157 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.4, u'target': 210.0, u'offset': 0}}
2019-12-17 14:17:17,164 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.76438820838031, 'printTimeLeftOrigin': 'estimate', 'printTime': 2585, 'printTimeLeft': 1860, 'filepos': 2168169L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.25, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.4, 'payload': {u'new': 10.25, u'old': 9.65}, 'time_left': u'00:31:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.4, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.4, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:48:17', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:43:05', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 10.25, 'e2_temp': 210.4}
2019-12-17 14:17:17,167 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.25.
Bed 59.8/60.0, Extruder 210.4/210.0.
00:43:05, 51%% done, 00:31:00 remaining.
Completed time 14:48:17.
2019-12-17 14:17:17,169 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:17:17,172 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.25.\nBed 59.8/60.0, Extruder 210.4/210.0.\n11:11:05, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:17. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:17:17,178 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:17:17,228 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:17:17,229 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:17:17,231 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:17:19,583 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:17:20,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 10.25}
2019-12-17 14:17:20,731 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=9.65 old_z=10.25 last_z=9.65 notification_height=3.00 notification_time=5
2019-12-17 14:17:20,740 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.88591044026383, 'printTimeLeftOrigin': 'estimate', 'printTime': 2588, 'printTimeLeft': 1860, 'filepos': 2173259L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:17:20,746 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-12-17 14:17:20,751 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.88591044026383, 'printTimeLeftOrigin': 'estimate', 'printTime': 2588, 'printTimeLeft': 1860, 'filepos': 2173259L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 9.65, u'old': 10.25}, 'time_left': u'00:31:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:48:20', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:43:08', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 9.65, 'e2_temp': 210.0}
2019-12-17 14:17:20,754 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=9.65.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:43:08, 51%% done, 00:31:00 remaining.
Completed time 14:48:20.
2019-12-17 14:17:20,757 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:17:20,758 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=9.65.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:08, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:20. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:17:20,760 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:17:20,810 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:17:20,812 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:17:20,813 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:17:23,236 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:17:24,797 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 9.65}
2019-12-17 14:17:24,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 10.25}
2019-12-17 14:17:25,151 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 9.65}
2019-12-17 14:17:25,225 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 10.25}
2019-12-17 14:17:30,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 9.65}
2019-12-17 14:17:30,665 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 10.25}
2019-12-17 14:17:33,606 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 9.65}
2019-12-17 14:17:33,684 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.65, u'old': 10.25}
2019-12-17 14:17:39,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 9.65}
2019-12-17 14:17:39,566 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.25}
2019-12-17 14:17:41,699 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:17:45,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:45,669 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:17:46,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:46,290 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:17:46,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:46,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:17:47,015 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:47,066 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:17:54,002 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:54,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:17:54,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:54,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:17:56,290 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:17:56,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:02,435 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:02,475 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:04,644 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:04,683 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:05,234 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:05,275 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:11,758 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:11,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:12,045 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:12,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:12,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:12,407 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-12-17 14:18:12,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:18:12,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-12-17 14:18:12,858 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 10.4}
2019-12-17 14:18:19,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 9.95}
2019-12-17 14:18:19,334 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 10.55}
2019-12-17 14:18:20,369 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 9.95}
2019-12-17 14:18:20,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 10.55}
2019-12-17 14:18:28,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 9.95}
2019-12-17 14:18:28,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 10.55}
2019-12-17 14:18:34,949 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 9.95}
2019-12-17 14:18:35,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 10.55}
2019-12-17 14:18:43,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:18:44,133 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 9.95}
2019-12-17 14:18:44,251 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.95, u'old': 10.55}
2019-12-17 14:18:44,648 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 9.95}
2019-12-17 14:18:44,697 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 10.55}
2019-12-17 14:18:50,793 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 10.1}
2019-12-17 14:18:50,881 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 10.7}
2019-12-17 14:18:51,743 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 10.1}
2019-12-17 14:18:51,801 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 10.7}
2019-12-17 14:18:59,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 10.1}
2019-12-17 14:18:59,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 10.7}
2019-12-17 14:19:05,450 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 10.1}
2019-12-17 14:19:05,516 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 10.7}
2019-12-17 14:19:13,535 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 10.1}
2019-12-17 14:19:13,588 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.1, u'old': 10.7}
2019-12-17 14:19:13,680 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:19:13,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 10.1}
2019-12-17 14:19:14,064 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 10.7}
2019-12-17 14:19:20,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 10.25}
2019-12-17 14:19:20,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 10.85}
2019-12-17 14:19:20,939 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 10.25}
2019-12-17 14:19:20,991 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 10.85}
2019-12-17 14:19:28,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 10.25}
2019-12-17 14:19:28,811 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 10.85}
2019-12-17 14:19:34,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 10.25}
2019-12-17 14:19:34,911 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 10.85}
2019-12-17 14:19:43,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 10.25}
2019-12-17 14:19:43,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.25, u'old': 10.85}
2019-12-17 14:19:43,372 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 10.25}
2019-12-17 14:19:43,432 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 10.85}
2019-12-17 14:19:44,416 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:19:49,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:19:49,889 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:19:50,371 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:19:50,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:19:53,211 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:19:53,265 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:02,833 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:02,848 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=11.00 old_z=10.40 last_z=9.65 notification_height=3.00 notification_time=5
2019-12-17 14:20:02,861 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 55.62838931234651, 'printTimeLeftOrigin': 'estimate', 'printTime': 2751, 'printTimeLeft': 1740, 'filepos': 2330014L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 11.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:20:02,866 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.5, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}
2019-12-17 14:20:02,873 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 55.62838931234651, 'printTimeLeftOrigin': 'estimate', 'printTime': 2751, 'printTimeLeft': 1740, 'filepos': 2330014L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 11.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.7, 'payload': {u'new': 11.0, u'old': 10.4}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 55, 'bed_temp': 60.5, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.5, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:49:02', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:45:51', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 11.0, 'e2_temp': 209.7}
2019-12-17 14:20:02,876 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=11.0.
Bed 60.5/60.0, Extruder 209.7/210.0.
00:45:51, 55%% done, 00:29:00 remaining.
Completed time 14:49:02.
2019-12-17 14:20:02,878 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:20:02,882 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=11.0.\nBed 60.5/60.0, Extruder 209.7/210.0.\n11:11:51, 55%% done, 11:11:00 remaining.\nCompleted time 11:11:02. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:20:02,884 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:20:02,971 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:20:02,972 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:20:02,974 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:20:05,315 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:20:06,451 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:06,509 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:06,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:06,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:06,619 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:06,651 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:06,685 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:08,305 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:08,394 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:14,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:14,685 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:15,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:20:22,630 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:22,683 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 11.0}
2019-12-17 14:20:22,852 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-12-17 14:20:22,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.0}
2019-12-17 14:20:29,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:29,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:31,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:31,986 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:32,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:32,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:40,912 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:40,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:41,077 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:41,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:42,255 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:42,313 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:45,623 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:20:47,716 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:47,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.55, u'old': 11.15}
2019-12-17 14:20:56,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 10.55}
2019-12-17 14:20:56,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.15}
2019-12-17 14:21:05,368 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:05,449 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:06,389 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:06,457 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:10,856 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:11,021 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:11,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:11,584 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:12,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:12,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:15,216 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:15,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:15,383 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:15,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:16,218 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:21:21,182 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:21,261 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.7, u'old': 11.3}
2019-12-17 14:21:22,298 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 14:21:30,036 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 10.7}
2019-12-17 14:21:30,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.3}
2019-12-17 14:21:38,108 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:38,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:38,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:38,346 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:43,114 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:43,269 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:44,261 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 444626}
2019-12-17 14:21:46,349 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:46,415 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:46,878 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:21:48,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:48,204 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:48,403 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:48,451 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:49,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:49,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:21:54,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:21:54,875 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.85, u'old': 11.45}
2019-12-17 14:22:03,349 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 10.85}
2019-12-17 14:22:03,449 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.45}
2019-12-17 14:22:08,765 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:08,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:11,725 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:11,776 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:11,907 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:11,954 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:17,512 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:22:18,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:18,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:20,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:20,434 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:22,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:22,669 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:24,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:24,651 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:30,137 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:30,187 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-12-17 14:22:38,858 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-12-17 14:22:38,922 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.6}
2019-12-17 14:22:41,093 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:22:41,186 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:22:46,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:22:46,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:22:48,153 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:22:51,473 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:22:51,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:22:54,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:22:54,623 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:22:54,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:22:54,873 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:22:56,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:22:56,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:23:10,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:23:10,429 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.15, u'old': 11.75}
2019-12-17 14:23:10,652 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 11.15}
2019-12-17 14:23:10,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.75}
2019-12-17 14:23:13,105 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:13,164 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:18,750 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:23:19,161 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:19,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:19,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:20,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:23,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:23,674 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:27,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:27,525 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:28,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:28,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:34,845 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:34,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:37,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:37,334 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:43,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:43,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.3, u'old': 11.9}
2019-12-17 14:23:43,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 11.3}
2019-12-17 14:23:43,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 11.9}
2019-12-17 14:23:46,202 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:23:46,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:23:49,421 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:23:52,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:23:52,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:23:56,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:23:56,587 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:23:57,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:23:57,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:23:59,859 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:23:59,902 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:24:01,279 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:24:01,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:24:01,950 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:24:02,065 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:24:08,305 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:24:08,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:24:10,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:24:10,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.45, u'old': 12.05}
2019-12-17 14:24:17,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 11.45}
2019-12-17 14:24:17,420 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.05}
2019-12-17 14:24:19,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:19,727 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:20,078 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:24:29,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:29,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:30,528 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:30,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:32,841 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:32,893 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:34,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:34,647 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:35,266 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:35,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:40,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:40,960 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:49,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:49,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-12-17 14:24:50,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:24:51,263 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-12-17 14:24:51,346 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.2}
2019-12-17 14:24:53,527 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:24:53,575 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:24:59,684 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:24:59,723 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:25:03,104 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:25:03,115 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.35 old_z=11.75 last_z=9.65 notification_height=3.00 notification_time=5
2019-12-17 14:25:03,124 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 62.25567227101415, 'printTimeLeftOrigin': 'estimate', 'printTime': 3051, 'printTimeLeft': 1500, 'filepos': 2607600L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.35, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:25:03,125 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.3, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-12-17 14:25:03,130 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 62.25567227101415, 'printTimeLeftOrigin': 'estimate', 'printTime': 3051, 'printTimeLeft': 1500, 'filepos': 2607600L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.35, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 12.35, u'old': 11.75}, 'time_left': u'00:25:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 62, 'bed_temp': 60.3, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.3, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:50:03', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:50:51', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 12.35, 'e2_temp': 210.1}
2019-12-17 14:25:03,132 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.35.
Bed 60.3/60.0, Extruder 210.1/210.0.
00:50:51, 62%% done, 00:25:00 remaining.
Completed time 14:50:03.
2019-12-17 14:25:03,137 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:25:03,140 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.35.\nBed 60.3/60.0, Extruder 210.1/210.0.\n11:11:51, 62%% done, 11:11:00 remaining.\nCompleted time 11:11:03. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:25:03,143 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:25:03,183 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:25:03,185 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:25:03,188 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:25:05,587 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:25:06,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:25:06,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:25:06,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:25:08,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:25:08,610 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:25:10,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:25:10,105 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:25:16,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:25:16,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.75, u'old': 12.35}
2019-12-17 14:25:21,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:25:25,445 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 11.75}
2019-12-17 14:25:25,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 12.35}
2019-12-17 14:25:27,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 11.9}
2019-12-17 14:25:27,804 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 12.5}
2019-12-17 14:25:33,180 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 11.9}
2019-12-17 14:25:33,252 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 12.5}
2019-12-17 14:25:37,374 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 11.9}
2019-12-17 14:25:37,414 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 12.5}
2019-12-17 14:25:42,135 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 11.9}
2019-12-17 14:25:42,218 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 12.5}
2019-12-17 14:25:43,263 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 11.9}
2019-12-17 14:25:43,338 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.9, u'old': 12.5}
2019-12-17 14:25:52,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:25:58,092 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 11.9}
2019-12-17 14:25:58,141 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 12.5}
2019-12-17 14:26:00,446 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 12.05}
2019-12-17 14:26:00,456 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.65 old_z=12.05 last_z=12.65 notification_height=3.00 notification_time=5
2019-12-17 14:26:00,461 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 63.7768966421187, 'printTimeLeftOrigin': 'estimate', 'printTime': 3108, 'printTimeLeft': 1440, 'filepos': 2671317L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:26:00,464 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-12-17 14:26:00,469 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 63.7768966421187, 'printTimeLeftOrigin': 'estimate', 'printTime': 3108, 'printTimeLeft': 1440, 'filepos': 2671317L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 12.65, u'old': 12.05}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 63, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:50:00', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:51:48', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 12.65, 'e2_temp': 210.1}
2019-12-17 14:26:00,475 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.65.
Bed 60.2/60.0, Extruder 210.1/210.0.
00:51:48, 63%% done, 00:24:00 remaining.
Completed time 14:50:00.
2019-12-17 14:26:00,478 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:26:00,482 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.65.\nBed 60.2/60.0, Extruder 210.1/210.0.\n11:11:48, 63%% done, 11:11:00 remaining.\nCompleted time 11:11:00. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:26:00,485 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:26:00,539 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:26:00,540 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:26:00,541 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:26:03,300 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:26:04,469 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 12.65}
2019-12-17 14:26:04,478 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.05 old_z=12.65 last_z=12.05 notification_height=3.00 notification_time=5
2019-12-17 14:26:04,482 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 63.8220198284173, 'printTimeLeftOrigin': 'estimate', 'printTime': 3112, 'printTimeLeft': 1440, 'filepos': 2673207L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.05, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:26:04,485 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-12-17 14:26:04,489 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 63.8220198284173, 'printTimeLeftOrigin': 'estimate', 'printTime': 3112, 'printTimeLeft': 1440, 'filepos': 2673207L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.05, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 12.05, u'old': 12.65}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 63, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:50:04', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:51:52', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 12.05, 'e2_temp': 210.1}
2019-12-17 14:26:04,490 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.05.
Bed 60.2/60.0, Extruder 210.1/210.0.
00:51:52, 63%% done, 00:24:00 remaining.
Completed time 14:50:04.
2019-12-17 14:26:04,492 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:26:04,503 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.05.\nBed 60.2/60.0, Extruder 210.1/210.0.\n11:11:52, 63%% done, 11:11:00 remaining.\nCompleted time 11:11:04. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:26:04,505 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:26:04,580 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:26:04,582 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:26:04,583 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:26:06,910 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:26:10,221 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 12.05}
2019-12-17 14:26:10,278 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 12.65}
2019-12-17 14:26:13,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 12.05}
2019-12-17 14:26:13,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 12.65}
2019-12-17 14:26:15,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 12.05}
2019-12-17 14:26:15,208 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 12.65}
2019-12-17 14:26:20,675 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 12.05}
2019-12-17 14:26:20,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.05, u'old': 12.65}
2019-12-17 14:26:22,671 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:26:30,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 12.05}
2019-12-17 14:26:30,134 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.65}
2019-12-17 14:26:32,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-12-17 14:26:32,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-12-17 14:26:42,580 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-12-17 14:26:42,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-12-17 14:26:45,511 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-12-17 14:26:45,569 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-12-17 14:26:47,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-12-17 14:26:47,459 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-12-17 14:26:53,369 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:27:02,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-12-17 14:27:02,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.8}
2019-12-17 14:27:04,790 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:04,839 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.95}
2019-12-17 14:27:14,827 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:14,896 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.95}
2019-12-17 14:27:17,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:17,630 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.95}
2019-12-17 14:27:19,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:19,467 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.95}
2019-12-17 14:27:24,035 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:27:25,738 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:25,793 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.95}
2019-12-17 14:27:34,013 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:34,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.35, u'old': 12.95}
2019-12-17 14:27:34,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 12.35}
2019-12-17 14:27:34,492 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 12.95}
2019-12-17 14:27:37,057 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:37,126 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:27:43,131 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:43,222 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:27:43,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:43,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:27:47,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:47,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:27:50,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:50,500 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:27:52,198 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:52,265 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:27:54,755 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:27:58,541 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:27:58,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.5, u'old': 13.1}
2019-12-17 14:28:06,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 12.5}
2019-12-17 14:28:06,738 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.1}
2019-12-17 14:28:09,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:09,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:14,728 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:14,797 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:18,934 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:18,974 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:20,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:20,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:24,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:24,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:24,426 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:24,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:25,419 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:28:30,856 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:30,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.65, u'old': 13.25}
2019-12-17 14:28:39,612 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 12.65}
2019-12-17 14:28:39,725 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.25}
2019-12-17 14:28:41,981 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:28:42,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:28:48,127 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:28:48,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:28:49,966 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:28:50,021 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:28:53,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:28:53,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:28:54,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:28:55,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:28:56,079 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:28:57,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:28:57,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:29:04,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:29:04,331 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-12-17 14:29:13,462 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-12-17 14:29:13,528 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.4}
2019-12-17 14:29:15,732 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:15,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:21,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:21,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:23,585 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:23,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:26,658 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:26,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:26,743 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:29:28,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:28,634 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:29,066 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:29,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:32,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:32,431 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:37,878 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:37,944 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.95, u'old': 13.55}
2019-12-17 14:29:47,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 12.95}
2019-12-17 14:29:47,913 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.55}
2019-12-17 14:29:50,156 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:29:50,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:29:55,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:29:55,691 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:29:57,406 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:29:58,043 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:29:58,097 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:00,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:01,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:02,951 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:02,996 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:03,415 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:03,425 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=13.70 old_z=13.10 last_z=12.05 notification_height=3.00 notification_time=5
2019-12-17 14:30:03,431 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 69.74681356293156, 'printTimeLeftOrigin': 'estimate', 'printTime': 3351, 'printTimeLeft': 1260, 'filepos': 2921369L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 13.7, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:30:03,433 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}
2019-12-17 14:30:03,439 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 69.74681356293156, 'printTimeLeftOrigin': 'estimate', 'printTime': 3351, 'printTimeLeft': 1260, 'filepos': 2921369L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 13.7, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.7, 'payload': {u'new': 13.7, u'old': 13.1}, 'time_left': u'00:21:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 69, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.7, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.7, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:51:03', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:55:51', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 13.7, 'e2_temp': 209.7}
2019-12-17 14:30:03,442 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=13.7.
Bed 59.9/60.0, Extruder 209.7/210.0.
00:55:51, 69%% done, 00:21:00 remaining.
Completed time 14:51:03.
2019-12-17 14:30:03,448 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:30:03,450 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=13.7.\nBed 59.9/60.0, Extruder 209.7/210.0.\n11:11:51, 69%% done, 11:11:00 remaining.\nCompleted time 11:11:03. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:30:03,453 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:30:03,545 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:30:03,547 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:30:03,549 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:30:06,493 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:30:07,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:07,627 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:07,658 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:12,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:12,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:22,435 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:22,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.1, u'old': 13.7}
2019-12-17 14:30:22,761 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 13.1}
2019-12-17 14:30:22,835 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.7}
2019-12-17 14:30:25,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:25,283 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:28,064 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:30:30,797 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:30,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:35,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:35,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:35,624 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:35,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:37,463 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:37,523 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:39,566 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:39,616 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:40,906 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:40,953 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:41,975 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:42,039 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:48,191 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:48,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.25, u'old': 13.85}
2019-12-17 14:30:58,170 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 13.25}
2019-12-17 14:30:58,228 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 13.85}
2019-12-17 14:30:58,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:31:00,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:00,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:05,892 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:05,949 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:08,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:08,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:09,832 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:09,873 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:10,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:10,367 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:13,457 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:13,498 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:15,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:15,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:17,703 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:17,793 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:23,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:23,444 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:29,339 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:31:33,727 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:33,826 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-12-17 14:31:34,085 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-12-17 14:31:34,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.0}
2019-12-17 14:31:36,492 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:36,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:42,722 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:42,775 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:47,653 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:47,716 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:48,201 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:48,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:49,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:49,283 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:52,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:52,231 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:53,238 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:53,331 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:54,002 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:54,102 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:54,665 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:31:54,717 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:31:59,997 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:32:00,014 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.132
2019-12-17 14:32:00,546 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:32:00,810 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.55, u'old': 14.15}
2019-12-17 14:32:11,640 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 13.55}
2019-12-17 14:32:11,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.15}
2019-12-17 14:32:13,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:13,936 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:16,707 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.132
2019-12-17 14:32:19,718 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.132
2019-12-17 14:32:23,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:23,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:24,780 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:24,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:25,370 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:25,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:29,086 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:29,143 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:29,902 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:29,963 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:30,680 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:32:30,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:30,966 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:36,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:37,361 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.7, u'old': 14.3}
2019-12-17 14:32:46,877 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 13.7}
2019-12-17 14:32:46,962 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.3}
2019-12-17 14:32:49,212 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:32:49,251 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:32:54,816 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:32:54,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:32:59,074 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:32:59,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:33:01,433 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:33:01,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:33:01,727 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:33:05,274 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:33:05,325 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:33:05,610 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:33:05,703 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:33:11,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:33:11,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:33:13,020 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:33:13,077 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.85, u'old': 14.45}
2019-12-17 14:33:22,234 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 13.85}
2019-12-17 14:33:22,354 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.45}
2019-12-17 14:33:24,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:24,463 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:30,160 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:30,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:32,058 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:32,104 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:32,156 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:33:33,014 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 14:33:36,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:36,323 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:36,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:36,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:36,746 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:36,784 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:38,070 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:38,127 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:42,219 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:42,269 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:48,634 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:48,670 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:58,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:58,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:58,860 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:58,906 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.6}
2019-12-17 14:33:59,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-12-17 14:33:59,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.6}
2019-12-17 14:34:01,580 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:01,624 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.75}
2019-12-17 14:34:02,878 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:34:12,568 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:12,621 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.75}
2019-12-17 14:34:16,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:16,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.75}
2019-12-17 14:34:16,553 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:16,612 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.75}
2019-12-17 14:34:17,543 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:17,630 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.75}
2019-12-17 14:34:23,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:24,604 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.15, u'old': 14.75}
2019-12-17 14:34:33,365 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 14.15}
2019-12-17 14:34:33,436 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.75}
2019-12-17 14:34:33,573 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:34:35,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:34:35,690 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.9}
2019-12-17 14:34:41,950 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:34:42,449 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.9}
2019-12-17 14:34:46,401 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:34:46,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.9}
2019-12-17 14:34:47,472 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:34:47,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.9}
2019-12-17 14:34:51,967 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:34:52,008 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.9}
2019-12-17 14:34:58,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:34:58,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.3, u'old': 14.9}
2019-12-17 14:35:04,287 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:35:08,241 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 14.3}
2019-12-17 14:35:08,253 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=14.90 old_z=14.30 last_z=12.05 notification_height=3.00 notification_time=5
2019-12-17 14:35:08,260 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 77.48224080310678, 'printTimeLeftOrigin': 'estimate', 'printTime': 3656, 'printTimeLeft': 1020, 'filepos': 3245370L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.9, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:35:08,263 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 14:35:08,269 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 77.48224080310678, 'printTimeLeftOrigin': 'estimate', 'printTime': 3656, 'printTimeLeft': 1020, 'filepos': 3245370L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.9, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 14.9, u'old': 14.3}, 'time_left': u'00:17:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 77, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:52:08', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:00:56', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 14.9, 'e2_temp': 209.9}
2019-12-17 14:35:08,275 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=14.9.
Bed 60.0/60.0, Extruder 209.9/210.0.
01:00:56, 77%% done, 00:17:00 remaining.
Completed time 14:52:08.
2019-12-17 14:35:08,278 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:35:08,281 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=14.9.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:56, 77%% done, 11:11:00 remaining.\nCompleted time 11:11:08. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:35:08,285 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:35:08,354 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:35:08,356 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:35:08,358 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:35:10,705 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:35:12,187 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 14.9}
2019-12-17 14:35:12,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:12,237 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.05 old_z=14.45 last_z=15.05 notification_height=3.00 notification_time=5
2019-12-17 14:35:12,254 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 77.57501789408896, 'printTimeLeftOrigin': 'estimate', 'printTime': 3660, 'printTimeLeft': 1020, 'filepos': 3249256L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:35:12,258 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-12-17 14:35:12,263 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 77.57501789408896, 'printTimeLeftOrigin': 'estimate', 'printTime': 3660, 'printTimeLeft': 1020, 'filepos': 3249256L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 15.05, u'old': 14.45}, 'time_left': u'00:17:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 77, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:52:12', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:01:00', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 15.05, 'e2_temp': 210.0}
2019-12-17 14:35:12,268 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.05.
Bed 60.1/60.0, Extruder 210.0/210.0.
01:01:00, 77%% done, 00:17:00 remaining.
Completed time 14:52:12.
2019-12-17 14:35:12,274 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:35:12,281 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.05.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:00, 77%% done, 11:11:00 remaining.\nCompleted time 11:11:12. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:35:12,293 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:35:12,340 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:35:12,343 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:35:12,345 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:35:16,718 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:35:18,394 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 15.05}
2019-12-17 14:35:18,412 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=14.45 old_z=15.05 last_z=14.45 notification_height=3.00 notification_time=5
2019-12-17 14:35:18,416 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 77.63656687518831, 'printTimeLeftOrigin': 'estimate', 'printTime': 3666, 'printTimeLeft': 1020, 'filepos': 3251834L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:35:18,419 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-12-17 14:35:18,428 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 77.63656687518831, 'printTimeLeftOrigin': 'estimate', 'printTime': 3666, 'printTimeLeft': 1020, 'filepos': 3251834L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.45, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 14.45, u'old': 15.05}, 'time_left': u'00:17:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 77, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:52:18', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:01:06', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 14.45, 'e2_temp': 210.1}
2019-12-17 14:35:18,433 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=14.45.
Bed 60.1/60.0, Extruder 210.1/210.0.
01:01:06, 77%% done, 00:17:00 remaining.
Completed time 14:52:18.
2019-12-17 14:35:18,441 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:35:18,443 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=14.45.\nBed 60.1/60.0, Extruder 210.1/210.0.\n11:11:06, 77%% done, 11:11:00 remaining.\nCompleted time 11:11:18. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:35:18,445 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:35:18,511 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:35:18,512 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:35:18,527 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:35:23,024 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:35:25,939 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:25,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 15.05}
2019-12-17 14:35:26,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:26,055 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 15.05}
2019-12-17 14:35:26,135 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:26,177 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 15.05}
2019-12-17 14:35:27,365 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:27,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 15.05}
2019-12-17 14:35:33,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:33,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.45, u'old': 15.05}
2019-12-17 14:35:35,076 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:35:43,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 14.45}
2019-12-17 14:35:43,603 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.05}
2019-12-17 14:35:45,731 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:35:45,781 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-12-17 14:35:52,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:35:52,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-12-17 14:35:56,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:35:56,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-12-17 14:35:57,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:35:57,665 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-12-17 14:36:02,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:36:02,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-12-17 14:36:05,817 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:36:08,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:36:08,581 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-12-17 14:36:18,494 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-12-17 14:36:18,541 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.2}
2019-12-17 14:36:20,616 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:20,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:22,304 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 14:36:26,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:27,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:28,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:28,862 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:32,953 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:33,009 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:33,194 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:33,237 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:33,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:33,509 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:37,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:36:38,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:38,473 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:44,495 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 445526}
2019-12-17 14:36:44,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:44,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:55,585 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:55,654 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:55,829 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:55,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.75, u'old': 15.35}
2019-12-17 14:36:56,104 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 14.75}
2019-12-17 14:36:56,172 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.35}
2019-12-17 14:36:58,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:36:58,691 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:04,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:04,510 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:07,776 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:37:10,597 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:10,652 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:14,423 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:14,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:14,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:14,785 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:15,102 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:15,158 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:16,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:16,523 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:23,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:23,085 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:33,341 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:33,393 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:33,633 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:33,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.9, u'old': 15.5}
2019-12-17 14:37:33,969 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 14.9}
2019-12-17 14:37:34,064 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.5}
2019-12-17 14:37:36,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:37:36,486 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:37:38,516 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:37:42,948 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:37:43,018 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:37:44,141 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:37:44,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:37:48,334 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:37:48,426 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:37:49,543 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:37:49,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:37:54,302 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:37:54,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:38:00,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:38:00,923 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:38:09,262 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:38:11,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:38:11,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.05, u'old': 15.65}
2019-12-17 14:38:12,006 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 15.05}
2019-12-17 14:38:12,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.65}
2019-12-17 14:38:14,259 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:14,342 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:20,728 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:20,793 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:22,088 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:22,159 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:26,427 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:26,493 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:27,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:27,597 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:32,554 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:32,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:39,083 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:39,159 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:40,063 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:38:50,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:50,228 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-12-17 14:38:50,960 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-12-17 14:38:51,031 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.8}
2019-12-17 14:38:53,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:38:53,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.95}
2019-12-17 14:39:01,289 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:39:01,342 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.95}
2019-12-17 14:39:04,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:39:04,591 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.95}
2019-12-17 14:39:06,700 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:39:06,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.95}
2019-12-17 14:39:10,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:39:11,237 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:39:11,281 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.95}
2019-12-17 14:39:19,385 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:39:19,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.35, u'old': 15.95}
2019-12-17 14:39:28,740 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 15.35}
2019-12-17 14:39:28,823 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 15.95}
2019-12-17 14:39:31,133 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:31,220 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:37,445 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:37,506 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:39,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:39,464 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:40,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:40,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:41,563 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:39:43,646 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:43,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:47,864 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:47,950 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:49,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:49,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:55,278 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:55,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:39:57,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:39:57,931 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.5, u'old': 16.1}
2019-12-17 14:40:07,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 15.5}
2019-12-17 14:40:07,236 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.1}
2019-12-17 14:40:09,509 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:09,536 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=16.25 old_z=15.65 last_z=14.45 notification_height=3.00 notification_time=5
2019-12-17 14:40:09,558 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 85.15807678772573, 'printTimeLeftOrigin': 'estimate', 'printTime': 3957, 'printTimeLeft': 780, 'filepos': 3566875L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:40:09,560 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 14:40:09,567 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 85.15807678772573, 'printTimeLeftOrigin': 'estimate', 'printTime': 3957, 'printTimeLeft': 780, 'filepos': 3566875L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 16.25, u'old': 15.65}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 85, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:53:09', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:05:57', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 16.25, 'e2_temp': 209.9}
2019-12-17 14:40:09,570 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=16.25.
Bed 60.1/60.0, Extruder 209.9/210.0.
01:05:57, 85%% done, 00:13:00 remaining.
Completed time 14:53:09.
2019-12-17 14:40:09,573 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:40:09,580 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=16.25.\nBed 60.1/60.0, Extruder 209.9/210.0.\n11:11:57, 85%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:40:09,582 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:40:09,646 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:40:09,647 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:40:09,649 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:40:12,301 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:40:13,605 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:40:15,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:15,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:15,373 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:17,744 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:17,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:20,884 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:20,928 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:22,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:22,089 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:23,080 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:23,148 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:27,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:27,663 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:35,713 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:35,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.65, u'old': 16.25}
2019-12-17 14:40:43,093 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:40:44,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 15.65}
2019-12-17 14:40:44,744 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.25}
2019-12-17 14:40:47,086 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:40:47,131 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:40:52,931 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:40:53,013 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:40:58,526 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:40:58,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:01,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:01,485 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:02,554 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:02,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:03,827 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:03,895 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:04,992 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:05,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:10,911 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:10,965 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:13,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:13,477 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-12-17 14:41:13,781 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:41:22,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-12-17 14:41:22,758 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.4}
2019-12-17 14:41:24,872 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:24,976 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:30,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:30,872 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:33,114 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:33,173 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:36,160 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:36,272 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:37,290 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:37,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:38,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:38,353 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:42,779 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:42,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:44,474 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:41:50,584 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:50,647 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.95, u'old': 16.55}
2019-12-17 14:41:59,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 15.95}
2019-12-17 14:41:59,575 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.55}
2019-12-17 14:42:01,885 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:01,939 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:07,718 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:08,274 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:13,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:13,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:15,171 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:42:16,029 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:16,099 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:17,029 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:17,069 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:18,495 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:18,551 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:19,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:19,559 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:25,593 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:26,163 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:35,277 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:35,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.1, u'old': 16.7}
2019-12-17 14:42:36,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 16.1}
2019-12-17 14:42:36,346 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.7}
2019-12-17 14:42:38,875 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:38,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:42:44,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:45,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:42:46,078 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:42:47,525 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:47,578 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:42:48,829 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:48,911 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:42:52,197 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:52,249 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:42:53,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:53,354 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:42:56,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:42:56,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:43:02,407 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:43:03,571 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:43:06,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:43:06,300 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.25, u'old': 16.85}
2019-12-17 14:43:13,102 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 16.25}
2019-12-17 14:43:13,191 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 16.85}
2019-12-17 14:43:15,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:15,621 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:16,827 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:43:21,954 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:22,011 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:24,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:24,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:25,550 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:25,628 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:29,116 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:29,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:30,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:30,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:33,207 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:33,264 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:39,336 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:40,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:43,423 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:43,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-12-17 14:43:47,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:43:50,682 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-12-17 14:43:50,761 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.0}
2019-12-17 14:43:52,945 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:43:52,995 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:43:59,367 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:43:59,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:04,602 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:04,656 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:05,799 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:05,872 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:08,778 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:08,827 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:10,669 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:10,722 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:17,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:17,365 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:18,278 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:44:25,093 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:25,146 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.55, u'old': 17.15}
2019-12-17 14:44:28,185 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 16.55}
2019-12-17 14:44:28,251 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.15}
2019-12-17 14:44:30,341 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:30,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:44:36,688 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:36,755 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:44:41,775 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:41,913 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:44:45,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:45,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:44:47,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:47,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:44:49,353 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:44:54,282 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:54,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:44:58,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:44:58,290 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.7, u'old': 17.3}
2019-12-17 14:45:05,459 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 16.7}
2019-12-17 14:45:05,516 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.3}
2019-12-17 14:45:07,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:07,884 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.45 old_z=16.85 last_z=17.45 notification_height=3.00 notification_time=5
2019-12-17 14:45:07,891 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 92.77859508840086, 'printTimeLeftOrigin': 'estimate', 'printTime': 4256, 'printTimeLeft': 540, 'filepos': 3886063L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 16.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:45:07,894 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-12-17 14:45:07,900 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 92.77859508840086, 'printTimeLeftOrigin': 'estimate', 'printTime': 4256, 'printTimeLeft': 540, 'filepos': 3886063L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 16.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 17.45, u'old': 16.85}, 'time_left': u'00:09:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 92, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:54:07', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:10:56', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 17.45, 'e2_temp': 210.1}
2019-12-17 14:45:07,904 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.45.
Bed 60.0/60.0, Extruder 210.1/210.0.
01:10:56, 92%% done, 00:09:00 remaining.
Completed time 14:54:07.
2019-12-17 14:45:07,907 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:45:07,909 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.45.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:56, 92%% done, 11:11:00 remaining.\nCompleted time 11:11:07. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:45:07,911 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:45:07,950 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:45:07,951 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:45:07,952 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:45:11,420 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:45:13,016 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:13,029 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=16.85 old_z=17.45 last_z=17.45 notification_height=3.00 notification_time=5
2019-12-17 14:45:13,036 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 92.82381377350643, 'printTimeLeftOrigin': 'estimate', 'printTime': 4261, 'printTimeLeft': 540, 'filepos': 3887957L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 16.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:45:13,037 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-12-17 14:45:13,042 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 92.82381377350643, 'printTimeLeftOrigin': 'estimate', 'printTime': 4261, 'printTimeLeft': 540, 'filepos': 3887957L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 16.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 16.85, u'old': 17.45}, 'time_left': u'00:09:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 92, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:54:13', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:11:01', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 16.85, 'e2_temp': 209.9}
2019-12-17 14:45:13,044 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=16.85.
Bed 60.1/60.0, Extruder 209.9/210.0.
01:11:01, 92%% done, 00:09:00 remaining.
Completed time 14:54:13.
2019-12-17 14:45:13,047 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:45:13,051 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=16.85.\nBed 60.1/60.0, Extruder 209.9/210.0.\n11:11:01, 92%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:45:13,054 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:45:13,121 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:45:13,123 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:45:13,124 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:45:15,954 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:45:18,381 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:18,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:18,448 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=16.85 old_z=17.45 last_z=16.85 notification_height=3.00 notification_time=5
2019-12-17 14:45:18,455 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 92.95137630493151, 'printTimeLeftOrigin': 'estimate', 'printTime': 4266, 'printTimeLeft': 540, 'filepos': 3893300L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 16.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:45:18,458 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-12-17 14:45:18,465 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 92.95137630493151, 'printTimeLeftOrigin': 'estimate', 'printTime': 4266, 'printTimeLeft': 540, 'filepos': 3893300L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 16.85, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 16.85, u'old': 17.45}, 'time_left': u'00:09:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 92, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:54:18', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:11:06', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 16.85, 'e2_temp': 210.2}
2019-12-17 14:45:18,467 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=16.85.
Bed 60.0/60.0, Extruder 210.2/210.0.
01:11:06, 92%% done, 00:09:00 remaining.
Completed time 14:54:18.
2019-12-17 14:45:18,471 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:45:18,475 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=16.85.\nBed 60.0/60.0, Extruder 210.2/210.0.\n11:11:06, 92%% done, 11:11:00 remaining.\nCompleted time 11:11:18. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:45:18,480 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:45:18,569 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:45:18,571 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:45:18,573 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:45:20,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:45:21,404 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:45:22,707 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:22,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:23,367 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:23,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:25,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:25,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:31,315 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:32,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:36,477 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:36,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.85, u'old': 17.45}
2019-12-17 14:45:43,137 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 16.85}
2019-12-17 14:45:43,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.45}
2019-12-17 14:45:45,319 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:45:45,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-12-17 14:45:50,898 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:45:51,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:45:51,166 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-12-17 14:45:54,435 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:45:54,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-12-17 14:45:58,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:45:58,907 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-12-17 14:46:03,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:46:03,344 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-12-17 14:46:09,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:46:09,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-12-17 14:46:14,500 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-12-17 14:46:21,231 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-12-17 14:46:21,340 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.6}
2019-12-17 14:46:21,619 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:46:23,526 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:23,581 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:29,920 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:30,003 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:38,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:38,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:42,667 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:42,743 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:43,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:43,683 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:47,071 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:47,106 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:47,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:47,887 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:48,472 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:48,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:46:52,249 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:46:55,001 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:46:55,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:47:03,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:47:03,543 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.15, u'old': 17.75}
2019-12-17 14:47:12,944 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 17.15}
2019-12-17 14:47:13,008 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.75}
2019-12-17 14:47:15,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:15,222 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:21,514 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:21,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:22,923 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:47:23,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:23,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:26,318 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:26,387 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:27,260 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:27,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:31,191 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:31,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:41,097 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:41,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:41,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:42,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:49,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:49,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:50,856 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:50,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:47:53,561 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:47:58,144 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:47:58,196 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.3, u'old': 17.9}
2019-12-17 14:48:08,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 17.3}
2019-12-17 14:48:08,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 17.9}
2019-12-17 14:48:10,884 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 17.45}
2019-12-17 14:48:10,952 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 18.05}
2019-12-17 14:48:16,560 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 17.45}
2019-12-17 14:48:16,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 18.05}
2019-12-17 14:48:24,291 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:48:54,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:49:02,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 17.45}
2019-12-17 14:49:02,486 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 18.05}
2019-12-17 14:49:07,058 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 17.45}
2019-12-17 14:49:07,543 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 18.05}
2019-12-17 14:49:14,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 17.45}
2019-12-17 14:49:14,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.45, u'old': 18.05}
2019-12-17 14:49:25,723 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:49:56,365 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:50:07,317 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 17.45}
2019-12-17 14:50:07,549 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.05}
2019-12-17 14:50:10,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-12-17 14:50:10,234 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.2}
2019-12-17 14:50:15,885 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-12-17 14:50:15,910 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=18.20 old_z=17.60 last_z=16.85 notification_height=3.00 notification_time=5
2019-12-17 14:50:15,923 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 98.2740978108331, 'printTimeLeftOrigin': 'estimate', 'printTime': 4564, 'printTimeLeft': 300, 'filepos': 4116244L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 18.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:50:15,928 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-12-17 14:50:15,937 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 98.2740978108331, 'printTimeLeftOrigin': 'estimate', 'printTime': 4564, 'printTimeLeft': 300, 'filepos': 4116244L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 18.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 18.2, u'old': 17.6}, 'time_left': u'00:05:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 98, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'14:55:15', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:16:04', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 18.2, 'e2_temp': 210.2}
2019-12-17 14:50:15,948 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=18.2.
Bed 59.8/60.0, Extruder 210.2/210.0.
01:16:04, 98%% done, 00:05:00 remaining.
Completed time 14:55:15.
2019-12-17 14:50:15,956 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-12-17 14:50:15,961 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=18.2.\nBed 59.8/60.0, Extruder 210.2/210.0.\n11:11:04, 98%% done, 11:11:00 remaining.\nCompleted time 11:11:15. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:50:15,968 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:50:16,021 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:50:16,022 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:50:16,024 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:50:18,429 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:50:20,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.2}
2019-12-17 14:50:27,021 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:50:36,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-12-17 14:50:36,433 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.2}
2019-12-17 14:50:39,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-12-17 14:50:39,686 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.2}
2019-12-17 14:50:46,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-12-17 14:50:46,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.2}
2019-12-17 14:50:57,725 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:51:09,494 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-12-17 14:51:09,711 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 18.2}
2019-12-17 14:51:12,326 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.35, u'old': 17.75}
2019-12-17 14:51:12,385 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 18.35}
2019-12-17 14:51:18,561 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.35, u'old': 17.75}
2019-12-17 14:51:18,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 18.35}
2019-12-17 14:51:22,310 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 14:51:25,509 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.35, u'old': 17.75}
2019-12-17 14:51:25,667 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 18.35}
2019-12-17 14:51:28,357 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:51:40,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.35, u'old': 17.75}
2019-12-17 14:51:41,218 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 18.35}
2019-12-17 14:51:44,987 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 446426}
2019-12-17 14:51:48,431 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.35, u'old': 17.75}
2019-12-17 14:51:48,508 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.75, u'old': 18.35}
2019-12-17 14:51:58,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:52:10,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.35, u'old': 17.75}
2019-12-17 14:52:11,119 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 18.35}
2019-12-17 14:52:13,732 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.5, u'old': 17.9}
2019-12-17 14:52:13,785 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 18.5}
2019-12-17 14:52:18,668 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.5, u'old': 17.9}
2019-12-17 14:52:19,891 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 18.5}
2019-12-17 14:52:26,769 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.5, u'old': 17.9}
2019-12-17 14:52:26,927 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 18.5}
2019-12-17 14:52:29,677 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:52:42,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.5, u'old': 17.9}
2019-12-17 14:52:42,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 18.5}
2019-12-17 14:52:48,219 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.5, u'old': 17.9}
2019-12-17 14:52:48,892 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.9, u'old': 18.5}
2019-12-17 14:53:00,301 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:53:10,497 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.5, u'old': 17.9}
2019-12-17 14:53:10,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 18.5}
2019-12-17 14:53:13,259 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.65, u'old': 18.05}
2019-12-17 14:53:13,312 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 18.65}
2019-12-17 14:53:14,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.65, u'old': 18.05}
2019-12-17 14:53:14,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 18.65}
2019-12-17 14:53:30,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:53:48,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.65, u'old': 18.05}
2019-12-17 14:53:49,004 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 18.65}
2019-12-17 14:53:53,187 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.65, u'old': 18.05}
2019-12-17 14:53:53,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 18.65}
2019-12-17 14:53:55,445 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.65, u'old': 18.05}
2019-12-17 14:53:56,131 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.05, u'old': 18.65}
2019-12-17 14:54:01,651 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:54:32,374 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:54:36,550 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.65, u'old': 18.05}
2019-12-17 14:54:56,005 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 48.65, u'old': 18.65}
2019-12-17 14:54:58,899 - octoprint.util.comm - INFO - Finished in 4847.106 s.
2019-12-17 14:54:58,916 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Finishing"
2019-12-17 14:54:59,001 - octoprint.printer.standard.job - INFO - Print job done - origin: local, path: RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode, owner: osh
2019-12-17 14:54:59,165 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-12-17 14:54:59,241 - octoprint.plugins.telegram - DEBUG - Got an event: PrintDone Payload: {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', u'time': 4847.203266139841, u'owner': 'osh', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}
2019-12-17 14:54:59,264 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 4847, 'printTimeLeft': 0, 'filepos': 4188534L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 48.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}
2019-12-17 14:54:59,301 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.4, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.4, u'target': 0.0, u'offset': 0}}
2019-12-17 14:54:59,306 - octoprint.plugins.telegram - INFO - An Exception in get final time : unsupported type for timedelta seconds component: unicode
2019-12-17 14:54:59,308 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintDone', 'status': {u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 4847, 'printTimeLeft': 0, 'filepos': 4188534L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 48.65, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'date': 1576611132, 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'display': u'RailCore Door Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'estimatedPrintTime': 2912.2171080147937, 'filament': {u'tool0': {u'volume': 7.738601170529491, u'length': 3217.3365000006424}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 211.4, 'payload': {'origin': u'local', 'name': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', u'time': 4847.203266139841, u'owner': 'osh', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'size': 4188534L}, 'time_left': u'00:00:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x7313ed00>, 'kwargs': {'delay': 5, 'with_gif': False, 'with_image': True, 'event': u'PrintDone'}, 'percent': 100, 'bed_temp': 60.4, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 60.4, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.4, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.4, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': '', 'file': u'RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'time_done': u'01:20:47', 'path': u'RailCore/RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode', 'z': 48.65, 'e2_temp': 211.4}
2019-12-17 14:54:59,310 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Finished printing RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode.
2019-12-17 14:54:59,312 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintDone
2019-12-17 14:54:59,335 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-12-17 14:54:59,890 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': u'local', u'throttled_mask': 327680, u'elapsed': 4847, 'file': '4da8ed969bd6c26ff28d339998351de91718b130', u'throttled_now': False, u'throttled_past': True}
2019-12-17 14:55:03,043 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:55:04,320 - octoprint.plugins.telegram - INFO - Sending a message: Finished printing RailCore_Door_Pull-v2_0.15mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-12-17 14:55:04,321 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-12-17 14:55:04,349 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-12-17 14:55:04,351 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-12-17 14:55:04,353 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-12-17 14:55:06,703 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-12-17 14:55:08,323 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.132
2019-12-17 14:55:08,629 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.132
2019-12-17 14:55:08,671 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.132
2019-12-17 14:55:10,014 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-12-17 14:55:10,522 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.132
2019-12-17 14:55:25,541 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.132
2019-12-17 14:55:26,026 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.132
2019-12-17 14:55:26,289 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.132
2019-12-17 14:55:29,026 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.132
2019-12-17 14:55:33,769 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:56:04,518 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:56:35,236 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:57:05,924 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:57:36,618 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:58:07,280 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:58:38,008 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:59:08,678 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 14:59:39,482 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:00:10,140 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:00:40,865 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:01:11,523 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:01:42,188 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:02:12,922 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:02:43,687 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:03:14,392 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:03:45,110 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:04:15,772 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:04:46,426 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:04:48,592 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.132
2019-12-17 15:04:48,804 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.132
2019-12-17 15:04:49,071 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.132
2019-12-17 15:04:51,447 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.68s
2019-12-17 15:04:52,629 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.82s
2019-12-17 15:04:54,317 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.69s
2019-12-17 15:04:55,033 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.6s
2019-12-17 15:04:55,876 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.67s
2019-12-17 15:04:56,769 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-12-17 15:04:57,050 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.132
2019-12-17 15:05:17,118 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:05:47,729 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:06:18,357 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:06:20,968 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.132
2019-12-17 15:06:21,182 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.132
2019-12-17 15:06:21,432 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.132
2019-12-17 15:06:22,316 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-12-17 15:06:24,535 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.132
2019-12-17 15:06:44,264 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 447326}
2019-12-17 15:06:48,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:07:19,602 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:07:50,249 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:08:20,831 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:08:51,501 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:09:22,160 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:09:52,807 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:10:23,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:10:54,085 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:11:24,746 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:11:55,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:12:25,995 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:12:56,639 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:13:22,145 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.132
2019-12-17 15:13:27,287 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:13:29,267 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.132
2019-12-17 15:13:29,574 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.132
2019-12-17 15:13:32,024 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.132
2019-12-17 15:13:34,348 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-12-17 15:13:34,371 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-12-17 15:13:56,826 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.132
2019-12-17 15:13:57,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:14:28,510 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:14:59,129 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:15:29,748 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:15:45,675 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-12-17 15:15:45,977 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-12-17 15:15:48,903 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-12-17 15:16:00,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:16:10,924 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-12-17 15:16:31,068 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:16:57,514 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-12-17 15:16:57,777 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-12-17 15:17:00,116 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-12-17 15:17:01,702 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-12-17 15:17:02,049 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-12-17 15:17:02,079 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
|
AttributeError
|
def on_print_started(self, event, payload):
"""
Override this to perform additional actions upon start of a print job.
"""
self.start_timelapse(payload["name"])
|
def on_print_started(self, event, payload):
"""
Override this to perform additional actions upon start of a print job.
"""
self.start_timelapse(payload["file"])
|
https://github.com/OctoPrint/OctoPrint/issues/3354
|
2019-11-27 10:13:02,875 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:13:02,882 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-11-27 10:13:02,883 - octoprint.server - INFO - OctoPrint 1.4.0rc1
2019-11-27 10:13:02,889 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| M73 ETA Override (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Octoslack (1.9.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Prusa Mesh Leveling (0.3.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Telegram Notifications (1.5.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_telegram
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2019-11-27 10:13:02,915 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917016576
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-11-27 10:13:02,916 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-11-27 10:13:05,965 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:13:25,005 - octoprint.plugins.tracking - INFO - Sent tracking event pong, payload: {'plugins': u'telegram:1.5.0,prusameshmap:0.3.0,m73etaoverride:1.0.1,firmwareupdater:1.6.1,octoslack:1.9.1'}
2019-11-27 10:13:25,845 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 86426}
2019-11-27 10:13:36,600 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:14:07,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:14:37,863 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:15:08,528 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:15:39,186 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:16:09,814 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:16:40,423 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:17:11,072 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:17:41,708 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:18:12,330 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:18:42,990 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:19:13,652 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:19:44,302 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:20:14,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:20:45,546 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:21:16,178 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:21:46,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:22:17,433 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:22:48,088 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:23:18,716 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:23:49,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:24:20,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:24:50,728 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:25:21,360 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:25:52,004 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:26:22,631 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:26:53,262 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:27:23,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:27:54,509 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:28:02,879 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:28:25,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:28:26,432 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 87326}
2019-11-27 10:28:55,828 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:29:26,474 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:29:57,089 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:30:27,713 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:30:58,338 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:31:28,978 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:31:59,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:32:30,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:33:00,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:33:31,506 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:34:02,141 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:34:32,775 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:35:03,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:35:34,012 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:36:04,639 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:36:35,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:37:05,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:37:36,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:38:07,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:38:37,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:39:08,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:39:39,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:40:09,673 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:40:40,288 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:41:10,898 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:41:41,551 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:42:12,222 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:42:42,876 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:43:02,882 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:43:13,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:43:25,869 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 88226}
2019-11-27 10:43:44,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:44:14,777 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:44:45,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:45:16,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:45:46,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:46:17,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:46:47,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:47:18,552 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:47:49,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:48:19,818 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:48:50,488 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:49:21,118 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:49:51,741 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:50:22,378 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:50:53,048 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:51:23,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:51:54,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:52:24,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:52:55,574 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:53:26,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:53:56,819 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:54:27,449 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:54:58,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:55:28,691 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:55:59,332 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:56:29,970 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:57:00,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:57:31,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:58:01,882 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:58:02,886 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:58:25,840 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 89126}
2019-11-27 10:58:32,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:59:03,139 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:59:33,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:00:04,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:00:35,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:01:05,696 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:01:36,322 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:02:06,953 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:02:37,607 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:03:08,239 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:03:38,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:04:09,510 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:04:40,131 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:05:10,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:05:41,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:06:12,078 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:06:42,758 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:07:13,392 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:07:44,044 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:08:14,689 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:08:46,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:09:17,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:09:47,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:10:18,306 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:10:48,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:11:19,582 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:11:50,229 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:12:20,885 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:12:51,525 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:13:02,890 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:13:22,151 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:13:25,895 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 90026}
2019-11-27 11:13:52,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:14:23,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:14:54,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:15:24,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:15:55,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:16:25,915 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:16:56,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:17:27,187 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:17:57,831 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:18:28,455 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:18:59,144 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:19:29,832 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:20:00,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:20:31,113 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:21:01,742 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:21:32,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:22:02,989 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:22:33,621 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:23:04,274 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:23:34,910 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:24:05,588 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:24:36,249 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:25:06,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:25:37,521 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:26:08,174 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:26:38,847 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:27:09,486 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:27:40,111 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:28:02,894 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:28:10,754 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:28:25,893 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 90926}
2019-11-27 11:28:41,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:29:12,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:29:42,649 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:30:13,275 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:30:43,911 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:31:14,560 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:31:45,224 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:32:15,880 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:32:46,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:33:17,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:33:47,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:34:18,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:34:49,042 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:35:19,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:35:50,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:36:20,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:36:51,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:37:22,263 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:37:52,916 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:38:23,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:38:54,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:39:24,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:39:55,483 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:40:26,099 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:40:56,725 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:41:27,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:41:58,077 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:42:28,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:42:59,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:43:02,898 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:43:25,912 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 91826}
2019-11-27 11:43:30,091 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:44:00,714 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:44:31,375 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:45:02,029 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:45:32,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:46:03,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:46:33,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:47:04,642 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:47:35,294 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:48:05,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:48:36,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:49:07,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:49:37,860 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:50:08,538 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:50:39,163 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:51:09,768 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:51:40,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:52:11,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:52:41,684 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:53:12,367 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:53:42,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:54:13,622 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:54:44,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:55:14,879 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:55:45,515 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:56:16,167 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:56:46,773 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:57:17,414 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:57:48,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:58:02,902 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:58:18,647 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:58:25,903 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 92726}
2019-11-27 11:58:49,260 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:59:19,895 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:59:50,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:00:21,171 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:00:51,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:01:22,498 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:01:53,134 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:02:23,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:02:54,416 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:03:25,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:03:55,707 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:04:26,332 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:04:57,005 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:05:27,646 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:05:58,314 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:06:28,926 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:06:59,570 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:07:30,216 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:08:00,862 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:08:31,495 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:09:02,126 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:09:32,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:10:03,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:10:34,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:11:04,698 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:11:35,368 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:12:06,014 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:12:36,640 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:13:02,906 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:13:07,265 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:13:25,937 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 93626}
2019-11-27 12:13:37,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:14:08,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:14:39,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:15:09,862 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:15:40,469 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:16:11,095 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:16:41,718 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:17:12,386 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:17:43,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:18:13,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:18:44,292 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:19:14,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:19:45,533 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:20:16,170 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:20:46,784 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:21:17,407 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:21:48,039 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:22:18,684 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:22:49,335 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:23:19,993 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:23:50,626 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:24:21,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:24:51,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:25:22,545 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:25:53,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:26:23,789 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:26:54,412 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:27:25,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:27:55,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:28:02,910 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:28:25,874 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 94526}
2019-11-27 12:28:26,273 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:28:56,937 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:29:27,632 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:29:58,238 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:30:28,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:30:59,481 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:31:30,115 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:32:00,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:32:31,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:33:02,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:33:32,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:34:03,307 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:34:33,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:35:04,588 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:35:35,223 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:36:05,855 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:36:36,528 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:37:07,162 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:37:37,818 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:38:08,450 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:38:39,100 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:39:09,733 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:39:40,352 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:40:10,964 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:40:41,593 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:41:12,207 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:41:42,833 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:42:13,456 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:42:44,089 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:43:02,914 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:43:14,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:43:25,925 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 95426}
2019-11-27 12:43:45,406 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:44:16,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:44:46,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:45:17,331 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:45:47,945 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:46:18,570 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:46:49,200 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:47:19,812 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:47:50,436 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:48:21,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:48:51,700 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:49:22,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:49:53,032 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:50:23,654 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:50:54,296 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:51:24,951 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:51:55,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:52:26,242 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:52:56,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:53:27,517 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:53:58,148 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:54:28,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:54:59,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:55:30,069 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:56:00,685 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:56:31,319 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:57:01,983 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:57:32,600 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:58:02,918 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:58:03,237 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:58:25,958 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 96326}
2019-11-27 12:58:33,874 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:59:04,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:59:35,157 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:00:05,788 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:00:36,424 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:01:07,085 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:01:37,706 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:02:08,358 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:02:38,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:03:09,614 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:03:40,301 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:04:10,939 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:04:41,563 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:05:12,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:05:42,853 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:06:13,489 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:06:44,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:07:14,769 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:07:45,389 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:08:16,042 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:08:46,669 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:09:17,326 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:09:47,954 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:10:18,592 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:10:49,211 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:11:19,840 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:11:50,451 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:12:21,065 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:12:51,691 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:13:02,921 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:13:22,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:13:26,168 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 97226}
2019-11-27 13:13:52,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:14:23,624 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:14:54,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:15:24,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:15:55,519 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:16:26,155 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:16:56,817 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:17:27,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:17:58,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:18:28,699 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:18:59,357 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:19:29,987 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:20:00,653 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:20:31,283 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:21:01,910 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:21:32,547 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:22:03,204 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:22:33,827 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:23:04,469 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:23:35,091 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:24:05,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:24:36,336 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:25:06,952 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:25:37,577 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:26:08,225 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:26:38,884 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:27:09,502 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:27:40,126 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:28:02,925 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:28:10,753 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:28:25,964 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 98126}
2019-11-27 13:28:41,375 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:29:12,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:29:42,629 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:30:13,271 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:30:43,897 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:31:14,534 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:31:45,150 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:32:15,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:32:46,418 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:33:17,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:33:47,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:34:18,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:34:48,917 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:35:19,541 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:35:50,162 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:36:20,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:36:51,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:37:22,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:37:52,682 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:38:23,305 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:38:53,930 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:39:24,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:39:55,182 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:40:25,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:40:56,403 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:41:27,020 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:41:57,650 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:42:28,378 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:42:59,008 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:43:02,929 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:43:25,927 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 99026}
2019-11-27 13:43:29,644 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:44:00,269 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:44:30,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:45:01,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:45:32,241 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:46:02,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:46:33,508 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:47:04,144 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:47:34,816 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:48:05,459 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:48:36,202 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:49:06,837 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:49:37,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:50:08,082 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:50:38,801 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:51:09,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:51:40,049 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:52:10,676 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:52:41,292 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:53:11,992 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:53:42,632 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:54:13,346 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:54:43,992 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:55:14,610 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:55:45,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:56:15,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:56:46,527 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:57:17,156 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:57:47,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:58:02,934 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:58:18,515 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:58:25,997 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 99926}
2019-11-27 13:58:49,147 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:59:19,788 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:59:50,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:00:21,026 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:00:51,645 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:01:22,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:01:52,985 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:02:23,601 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:02:54,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:03:24,912 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:03:55,550 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:04:26,199 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:04:56,844 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:05:27,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:05:58,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:06:28,747 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:06:59,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:07:30,003 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:08:00,720 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:08:31,350 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:09:01,980 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:09:32,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:10:03,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:10:33,899 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:11:04,542 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:11:35,192 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:12:05,841 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:12:36,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:13:02,937 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:13:07,099 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:13:25,996 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 100826}
2019-11-27 14:13:37,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:14:08,353 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:14:38,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:15:09,599 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:15:40,231 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:16:10,853 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:16:41,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:17:12,146 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:17:42,765 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:18:13,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:18:43,996 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:19:14,625 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:19:45,267 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:20:15,871 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:20:46,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:21:17,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:21:47,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:22:18,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:22:49,047 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:23:19,686 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:23:50,340 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:24:20,962 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:24:51,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:25:22,219 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:25:52,851 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:26:23,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:26:54,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:27:24,711 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:27:55,359 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:28:02,940 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:28:26,002 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:28:26,018 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 101726}
2019-11-27 14:28:56,608 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:29:27,271 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:29:57,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:30:28,513 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:30:59,155 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:31:29,822 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:32:00,450 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:32:31,086 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:33:01,703 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:33:32,337 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:34:02,972 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:34:33,623 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:35:04,221 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:35:34,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:36:05,531 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:36:36,160 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:37:06,811 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:37:37,473 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:38:08,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:38:38,759 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:39:09,391 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:39:40,029 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:40:10,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:40:41,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:41:11,953 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:41:42,580 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:42:13,216 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:42:43,840 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:43:02,944 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:43:14,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:43:25,984 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 102626}
2019-11-27 14:43:45,115 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:44:15,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:44:46,411 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:45:17,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:45:47,692 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:46:18,349 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:46:48,956 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:47:19,610 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:47:50,212 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:48:20,843 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:48:51,502 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:49:22,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:49:52,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:50:23,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:50:54,032 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:51:24,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:51:55,287 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:52:25,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:52:56,592 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:53:27,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:53:57,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:54:28,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:54:59,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:55:29,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:56:00,424 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:56:31,053 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:57:01,698 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:57:32,340 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:58:02,949 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:58:02,976 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:58:26,022 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 103526}
2019-11-27 14:58:33,620 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:59:04,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:59:34,906 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:00:05,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:00:36,148 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:01:06,801 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:01:37,491 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:02:08,146 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:02:38,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:03:09,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:03:40,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:04:10,678 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:04:41,290 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:05:11,924 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:05:42,597 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:06:13,235 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:06:43,846 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:07:14,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:07:45,138 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:08:15,759 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:08:46,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:09:17,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:09:47,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:10:18,304 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:10:48,937 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:11:19,612 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:11:50,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:12:20,929 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:12:51,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:13:02,953 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:13:22,235 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:13:26,008 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 104426}
2019-11-27 15:13:52,888 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:14:23,487 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:14:54,102 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:15:24,775 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:15:55,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:16:26,092 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:16:56,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:17:27,321 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:17:57,959 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:18:28,579 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:18:59,182 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:19:29,825 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:20:00,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:20:31,090 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:21:01,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:21:32,334 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:22:02,941 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:22:33,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:23:04,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:23:34,847 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:24:05,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:24:36,127 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:25:06,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:25:37,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:26:08,097 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:26:38,727 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:27:09,366 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:27:40,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:28:02,956 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:28:10,634 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:28:25,980 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 105326}
2019-11-27 15:28:41,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:29:11,936 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:29:42,559 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:30:13,190 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:30:43,810 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:31:14,449 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:31:45,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:32:15,703 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:32:46,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:33:16,982 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:33:47,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:34:18,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:34:48,909 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:35:19,556 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:35:50,206 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:36:20,823 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:36:51,436 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:37:22,049 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:37:52,676 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:38:23,307 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:38:53,933 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:39:24,540 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:39:55,161 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:40:25,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:40:56,408 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:41:27,066 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:41:57,706 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:42:28,317 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:42:58,985 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:43:02,960 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:43:27,179 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 106226}
2019-11-27 15:43:29,619 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:44:00,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:44:30,879 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:45:01,498 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:45:32,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:46:02,767 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:46:33,377 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:47:04,018 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:47:34,628 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:48:05,265 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:48:35,918 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:49:06,529 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:49:37,179 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:50:07,770 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:50:38,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:51:09,051 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:51:39,700 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:52:10,304 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:52:40,928 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:53:11,579 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:53:42,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:54:12,892 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:54:43,539 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:55:14,201 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:55:44,819 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:56:15,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:56:46,064 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:57:16,668 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:57:47,274 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:58:02,964 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:58:17,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:58:26,013 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 107126}
2019-11-27 15:58:48,526 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:59:19,154 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:59:49,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:00:20,425 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:00:51,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:01:21,664 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:01:38,380 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:01:38,751 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:01:41,047 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.64s
2019-11-27 16:01:42,062 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.71s
2019-11-27 16:01:44,048 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 1.1s
2019-11-27 16:01:44,802 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.61s
2019-11-27 16:01:45,637 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.68s
2019-11-27 16:01:47,355 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-11-27 16:01:49,354 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-11-27 16:01:50,452 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-11-27 16:01:50,651 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:01:52,279 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:02:22,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:02:53,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:24,143 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:45,243 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-11-27 16:03:45,264 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-11-27 16:03:45,287 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:54,826 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:57,456 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,665 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,672 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-11-27 16:03:59,687 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-11-27 16:03:59,761 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,861 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.8.1 based on Marlin"
2019-11-27 16:03:59,926 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-11-27 16:03:59,937 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-11-27 16:03:59,990 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:04:01,610 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': u'Prusa-Firmware 3.8.1 based on Marlin'}
2019-11-27 16:04:24,308 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-11-27 16:04:24,337 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-11-27 16:04:25,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:04:56,077 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:05:11,486 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode
2019-11-27 16:05:11,494 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode
2019-11-27 16:05:16,357 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode finished, needed 4.87s
2019-11-27 16:05:17,654 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-11-27 16:05:23,381 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-11-27 16:05:23,445 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-11-27 16:05:23,458 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:05:23,460 - octoprint.events - ERROR - Got an exception while sending event PrintStarted (Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}) to <bound method ZTimelapse.on_print_started of <octoprint.timelapse.ZTimelapse object at 0x703c8250>>
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/events.py", line 187, in _work
listener(event, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/timelapse.py", line 468, in on_print_started
self.start_timelapse(payload["file"])
KeyError: u'file'
2019-11-27 16:05:23,472 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-11-27 16:05:23,774 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:05:23,777 - octoprint.plugins.telegram - DEBUG - Got an event: PrintStarted Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}
2019-11-27 16:05:23,812 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 0.17848459396136335, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 1980, 'filepos': 646L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:05:23,849 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 19.3, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 19.6, u'target': 0.0, u'offset': 0}}
2019-11-27 16:05:23,947 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintStarted', 'status': {u'progress': {'completion': 0.17848459396136335, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 1980, 'filepos': 646L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 19.6, 'payload': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'time_left': u'00:33:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'PrintStarted'}, 'percent': 0, 'bed_temp': 19.3, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 19.3, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 19.6, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': u'16:38:23', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:00:00', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 0.0, 'e2_temp': 19.6}
2019-11-27 16:05:23,952 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Started printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode.
2019-11-27 16:05:23,955 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintStarted
2019-11-27 16:05:23,958 - octoprint.plugins.telegram - INFO - Sending a message: Started printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:05:23,961 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:05:24,015 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:05:24,016 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:05:24,018 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:05:24,369 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': u'local', u'throttled_now': False, u'throttled_mask': 327680, 'file': '9abac95ac19612db2adaea14fc45f07071903bb4', u'throttled_past': True}
2019-11-27 16:05:26,305 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-11-27 16:05:26,537 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:05:26,690 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:05:57,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:06:03,774 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-11-27 16:06:04,768 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-11-27 16:06:27,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:06:58,601 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:07:29,226 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:07:59,838 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:08:30,129 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:30,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': None}
2019-11-27 16:08:30,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:08:41,818 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:41,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.3, u'old': 0.4}
2019-11-27 16:08:41,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.3}
2019-11-27 16:08:59,648 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:59,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 0.2}
2019-11-27 16:08:59,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.6}
2019-11-27 16:09:01,063 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:09:03,916 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:03,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:08,386 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:08,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:08,866 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:30,520 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:30,585 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:30,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:31,734 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:09:32,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:32,614 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:46,034 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:46,089 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:46,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 0.8}
2019-11-27 16:09:50,473 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:09:51,049 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:51,077 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 1.0}
2019-11-27 16:09:52,909 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:09:53,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 1.0}
2019-11-27 16:10:02,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:10:07,076 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:07,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:10:07,420 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.443, u'old': 1.0}
2019-11-27 16:10:10,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.043, u'old': 0.443}
2019-11-27 16:10:10,727 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.043}
2019-11-27 16:10:17,810 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:17,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:18,468 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.2}
2019-11-27 16:10:20,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:20,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.2}
2019-11-27 16:10:33,090 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:10:34,411 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:34,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:34,474 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=1.20 old_z=0.60 last_z=0.00 notification_height=3.00 notification_time=5
2019-11-27 16:10:34,482 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 4.346072233765085, 'printTimeLeftOrigin': 'estimate', 'printTime': 311, 'printTimeLeft': 1920, 'filepos': 15730L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:10:34,486 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 208.6, u'target': 210.0, u'offset': 0}}
2019-11-27 16:10:34,494 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 4.346072233765085, 'printTimeLeftOrigin': 'estimate', 'printTime': 311, 'printTimeLeft': 1920, 'filepos': 15730L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 208.6, 'payload': {u'new': 1.2, u'old': 0.6}, 'time_left': u'00:32:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 4, 'bed_temp': 59.7, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 208.6, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:34', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:05:11', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 1.2, 'e2_temp': 208.6}
2019-11-27 16:10:34,496 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=1.2.
Bed 59.7/60.0, Extruder 208.6/210.0.
00:05:11, 4%% done, 00:32:00 remaining.
Completed time 16:42:34.
2019-11-27 16:10:34,498 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:10:34,499 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=1.2.\nBed 59.7/60.0, Extruder 208.6/210.0.\n11:11:11, 4%% done, 11:11:00 remaining.\nCompleted time 11:11:34. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:10:34,501 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:10:34,536 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:10:34,538 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:10:34,540 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:10:37,202 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:10:39,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.686, u'old': 1.2}
2019-11-27 16:10:39,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.286, u'old': 0.686}
2019-11-27 16:10:39,364 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.286}
2019-11-27 16:10:41,772 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:41,823 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-11-27 16:10:41,982 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-11-27 16:10:58,001 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:58,064 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-11-27 16:10:58,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.929, u'old': 1.4}
2019-11-27 16:11:01,093 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.529, u'old': 0.929}
2019-11-27 16:11:01,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.529}
2019-11-27 16:11:03,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:11:05,476 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:05,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:05,690 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.6}
2019-11-27 16:11:12,490 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:12,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:12,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.6}
2019-11-27 16:11:13,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:13,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.171, u'old': 1.6}
2019-11-27 16:11:15,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.771, u'old': 1.171}
2019-11-27 16:11:16,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.771}
2019-11-27 16:11:19,788 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:19,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:20,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:25,847 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:25,899 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:25,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:26,742 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:26,788 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:28,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:28,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 1.8}
2019-11-27 16:11:28,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:28,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:34,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:11:35,374 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:35,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:35,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:36,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:36,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:37,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:37,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.414, u'old': 2.0}
2019-11-27 16:11:39,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.014, u'old': 1.414}
2019-11-27 16:11:40,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.014}
2019-11-27 16:11:44,109 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:44,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:44,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:50,281 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:50,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:50,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:51,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:51,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:52,971 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:53,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.657, u'old': 2.2}
2019-11-27 16:11:55,193 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.257, u'old': 1.657}
2019-11-27 16:11:55,871 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:55,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.257}
2019-11-27 16:11:59,675 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:11:59,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:05,035 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:12:05,876 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:05,902 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:06,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:06,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:07,043 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:07,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:08,018 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:08,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:08,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.9, u'old': 2.4}
2019-11-27 16:12:11,650 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:11,705 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.5, u'old': 1.9}
2019-11-27 16:12:12,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.5}
2019-11-27 16:12:15,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:15,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:22,030 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:22,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:22,186 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:24,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:24,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:24,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:24,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.1, u'old': 2.6}
2019-11-27 16:12:27,794 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:27,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.7, u'old': 2.1}
2019-11-27 16:12:28,527 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.7}
2019-11-27 16:12:31,604 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:31,778 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.8}
2019-11-27 16:12:35,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:12:37,858 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:37,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:37,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.8}
2019-11-27 16:12:42,925 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:42,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:43,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.8}
2019-11-27 16:12:46,446 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-11-27 16:12:47,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 2.9}
2019-11-27 16:12:50,162 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:50,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 2.4}
2019-11-27 16:12:50,231 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=3.00 old_z=2.40 last_z=3.00 notification_height=3.00 notification_time=5
2019-11-27 16:12:50,242 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.850791300119358, 'printTimeLeftOrigin': 'estimate', 'printTime': 446, 'printTimeLeft': 1740, 'filepos': 50131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:12:50,246 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:12:50,254 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.850791300119358, 'printTimeLeftOrigin': 'estimate', 'printTime': 446, 'printTimeLeft': 1740, 'filepos': 50131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 3.0, u'old': 2.4}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:50', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:07:26', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 3.0, 'e2_temp': 210.1}
2019-11-27 16:12:50,259 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=3.0.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:07:26, 13%% done, 00:29:00 remaining.
Completed time 16:41:50.
2019-11-27 16:12:50,264 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:12:50,270 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=3.0.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:26, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:50. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:12:50,275 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:12:50,344 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:12:50,345 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:12:50,346 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:12:52,873 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:12:54,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 3.0}
2019-11-27 16:12:54,522 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=2.40 old_z=3.00 last_z=2.40 notification_height=3.00 notification_time=5
2019-11-27 16:12:54,533 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.94003359710004, 'printTimeLeftOrigin': 'estimate', 'printTime': 451, 'printTimeLeft': 1740, 'filepos': 50454L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:12:54,536 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:12:54,540 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.94003359710004, 'printTimeLeftOrigin': 'estimate', 'printTime': 451, 'printTimeLeft': 1740, 'filepos': 50454L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 2.4, u'old': 3.0}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:54', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:07:31', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 2.4, 'e2_temp': 210.1}
2019-11-27 16:12:54,543 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=2.4.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:07:31, 13%% done, 00:29:00 remaining.
Completed time 16:41:54.
2019-11-27 16:12:54,544 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:12:54,546 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=2.4.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:31, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:12:54,548 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:12:54,592 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:12:54,593 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:12:54,594 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:12:57,060 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:13:02,968 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:13:04,652 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:04,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 2.4}
2019-11-27 16:13:04,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.5, u'old': 3.0}
2019-11-27 16:13:06,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:13:08,469 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.1, u'old': 2.5}
2019-11-27 16:13:09,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.1}
2019-11-27 16:13:12,194 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:12,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-11-27 16:13:12,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-11-27 16:13:26,055 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 108026}
2019-11-27 16:13:26,324 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:26,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-11-27 16:13:26,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.7, u'old': 3.2}
2019-11-27 16:13:30,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 2.7}
2019-11-27 16:13:30,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 3.3}
2019-11-27 16:13:33,917 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:33,984 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 2.8}
2019-11-27 16:13:34,153 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 3.4}
2019-11-27 16:13:36,993 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:13:47,405 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:47,479 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 2.8}
2019-11-27 16:13:47,768 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.4}
2019-11-27 16:13:51,263 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-11-27 16:13:51,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 3.5}
2019-11-27 16:13:55,020 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:55,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 3.0}
2019-11-27 16:13:55,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 3.6}
2019-11-27 16:14:07,643 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:14:09,075 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:09,129 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 3.0}
2019-11-27 16:14:09,363 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.1, u'old': 3.6}
2019-11-27 16:14:12,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.7, u'old': 3.1}
2019-11-27 16:14:13,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.7}
2019-11-27 16:14:16,607 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:16,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-11-27 16:14:16,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 3.8}
2019-11-27 16:14:19,216 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.9, u'old': 3.3}
2019-11-27 16:14:20,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 3.9}
2019-11-27 16:14:23,121 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:23,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.9, u'old': 3.3}
2019-11-27 16:14:23,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 3.9}
2019-11-27 16:14:27,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 3.4}
2019-11-27 16:14:28,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.0}
2019-11-27 16:14:34,361 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:34,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-11-27 16:14:35,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-11-27 16:14:38,325 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:14:39,120 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-11-27 16:14:39,750 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:39,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 4.1}
2019-11-27 16:14:44,288 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 3.6}
2019-11-27 16:14:44,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.748, u'old': 4.2}
2019-11-27 16:14:49,542 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:49,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.348, u'old': 3.748}
2019-11-27 16:14:50,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.748, u'old': 4.348}
2019-11-27 16:14:54,558 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:54,623 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.348, u'old': 3.748}
2019-11-27 16:14:55,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.348}
2019-11-27 16:14:59,966 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:00,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-11-27 16:15:00,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-11-27 16:15:01,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-11-27 16:15:01,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.996, u'old': 4.4}
2019-11-27 16:15:08,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:15:10,164 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:10,221 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.596, u'old': 3.996}
2019-11-27 16:15:11,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.596}
2019-11-27 16:15:15,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:15,270 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:15,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.6}
2019-11-27 16:15:18,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:18,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.6}
2019-11-27 16:15:18,857 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:18,953 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.6}
2019-11-27 16:15:19,382 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:19,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.8}
2019-11-27 16:15:20,887 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:20,945 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:21,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.8}
2019-11-27 16:15:23,261 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:23,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.244, u'old': 4.8}
2019-11-27 16:15:23,871 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.844, u'old': 4.244}
2019-11-27 16:15:24,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 4.844}
2019-11-27 16:15:31,449 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:31,503 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-11-27 16:15:31,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-11-27 16:15:35,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-11-27 16:15:35,623 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.00 old_z=4.40 last_z=2.40 notification_height=3.00 notification_time=5
2019-11-27 16:15:35,633 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 20.18340259051324, 'printTimeLeftOrigin': 'estimate', 'printTime': 612, 'printTimeLeft': 1620, 'filepos': 73051L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.492, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:15:35,637 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:15:35,645 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 20.18340259051324, 'printTimeLeftOrigin': 'estimate', 'printTime': 612, 'printTimeLeft': 1620, 'filepos': 73051L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.492, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 5.0, u'old': 4.4}, 'time_left': u'00:27:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 20, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:35', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 5.0, 'e2_temp': 210.0}
2019-11-27 16:15:35,650 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.0.
Bed 59.8/60.0, Extruder 210.0/210.0.
00:10:12, 20%% done, 00:27:00 remaining.
Completed time 16:42:35.
2019-11-27 16:15:35,655 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:15:35,661 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.0.\nBed 59.8/60.0, Extruder 210.0/210.0.\n11:11:12, 20%% done, 11:11:00 remaining.\nCompleted time 11:11:35. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:15:35,665 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:15:35,693 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:15:35,694 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:15:35,695 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:15:38,285 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:15:39,638 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:15:39,752 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:39,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.492, u'old': 5.0}
2019-11-27 16:15:39,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.092, u'old': 4.492}
2019-11-27 16:15:39,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 5.092}
2019-11-27 16:15:44,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 4.6}
2019-11-27 16:15:44,326 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 5.2}
2019-11-27 16:15:48,082 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:48,158 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 4.6}
2019-11-27 16:15:48,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.741, u'old': 5.2}
2019-11-27 16:15:49,044 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.341, u'old': 4.741}
2019-11-27 16:15:50,126 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 5.341}
2019-11-27 16:16:00,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:00,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 4.8}
2019-11-27 16:16:00,164 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.40 old_z=4.80 last_z=5.40 notification_height=3.00 notification_time=5
2019-11-27 16:16:00,168 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 21.116993059546438, 'printTimeLeftOrigin': 'estimate', 'printTime': 636, 'printTimeLeft': 1560, 'filepos': 76430L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:16:00,170 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:16:00,174 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 21.116993059546438, 'printTimeLeftOrigin': 'estimate', 'printTime': 636, 'printTimeLeft': 1560, 'filepos': 76430L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 5.4, u'old': 4.8}, 'time_left': u'00:26:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 21, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:00', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:36', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 5.4, 'e2_temp': 210.0}
2019-11-27 16:16:00,180 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:10:36, 21%% done, 00:26:00 remaining.
Completed time 16:42:00.
2019-11-27 16:16:00,183 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:16:00,186 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:36, 21%% done, 11:11:00 remaining.\nCompleted time 11:11:00. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:16:00,190 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:16:00,254 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:16:00,256 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:16:00,258 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:16:02,707 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:16:04,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.989, u'old': 5.4}
2019-11-27 16:16:04,278 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=4.99 old_z=5.40 last_z=4.99 notification_height=3.00 notification_time=5
2019-11-27 16:16:04,283 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 21.30072720038902, 'printTimeLeftOrigin': 'estimate', 'printTime': 640, 'printTimeLeft': 1560, 'filepos': 77095L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:16:04,286 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:16:04,290 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 21.30072720038902, 'printTimeLeftOrigin': 'estimate', 'printTime': 640, 'printTimeLeft': 1560, 'filepos': 77095L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 4.989, u'old': 5.4}, 'time_left': u'00:26:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 21, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:04', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:40', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 4.989, 'e2_temp': 210.0}
2019-11-27 16:16:04,294 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=4.989.
Bed 59.8/60.0, Extruder 210.0/210.0.
00:10:40, 21%% done, 00:26:00 remaining.
Completed time 16:42:04.
2019-11-27 16:16:04,297 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:16:04,301 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=4.989.\nBed 59.8/60.0, Extruder 210.0/210.0.\n11:11:40, 21%% done, 11:11:00 remaining.\nCompleted time 11:11:04. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:16:04,303 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:16:04,370 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:16:04,372 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:16:04,374 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:16:06,905 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:16:08,036 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:08,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.589, u'old': 4.989}
2019-11-27 16:16:08,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.589}
2019-11-27 16:16:08,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-11-27 16:16:09,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-11-27 16:16:10,260 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:16:12,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-11-27 16:16:12,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 5.6}
2019-11-27 16:16:13,615 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:13,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 5.2}
2019-11-27 16:16:13,743 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 5.8}
2019-11-27 16:16:17,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 5.2}
2019-11-27 16:16:17,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.237, u'old': 5.8}
2019-11-27 16:16:18,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.837, u'old': 5.237}
2019-11-27 16:16:19,487 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:19,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 5.837}
2019-11-27 16:16:26,006 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:26,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 5.4}
2019-11-27 16:16:26,304 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 6.0}
2019-11-27 16:16:29,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 5.4}
2019-11-27 16:16:30,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.485, u'old': 6.0}
2019-11-27 16:16:30,923 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.085, u'old': 5.485}
2019-11-27 16:16:31,965 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:32,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.085}
2019-11-27 16:16:38,470 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:38,533 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-11-27 16:16:38,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-11-27 16:16:40,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:16:42,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-11-27 16:16:42,558 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.733, u'old': 6.2}
2019-11-27 16:16:43,402 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.333, u'old': 5.733}
2019-11-27 16:16:44,447 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:44,510 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 6.333}
2019-11-27 16:16:50,954 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:51,010 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 5.8}
2019-11-27 16:16:51,234 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 6.4}
2019-11-27 16:16:54,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 5.8}
2019-11-27 16:16:54,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.981, u'old': 6.4}
2019-11-27 16:16:55,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.581, u'old': 5.981}
2019-11-27 16:16:56,591 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:56,646 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 6.581}
2019-11-27 16:17:03,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:03,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 6.0}
2019-11-27 16:17:03,408 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 6.6}
2019-11-27 16:17:07,233 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 6.0}
2019-11-27 16:17:07,272 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.6}
2019-11-27 16:17:07,548 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-11-27 16:17:07,612 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-11-27 16:17:11,085 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:11,159 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-11-27 16:17:11,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.229, u'old': 6.8}
2019-11-27 16:17:11,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:17:11,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.829, u'old': 6.229}
2019-11-27 16:17:12,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 6.829}
2019-11-27 16:17:19,147 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:19,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 6.4}
2019-11-27 16:17:19,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 7.0}
2019-11-27 16:17:22,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 6.4}
2019-11-27 16:17:22,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.477, u'old': 7.0}
2019-11-27 16:17:23,390 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.077, u'old': 6.477}
2019-11-27 16:17:24,461 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:24,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 7.077}
2019-11-27 16:17:30,969 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:31,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 6.6}
2019-11-27 16:17:31,274 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 7.2}
2019-11-27 16:17:33,602 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:17:34,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 6.6}
2019-11-27 16:17:34,405 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.725, u'old': 7.2}
2019-11-27 16:17:35,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.325, u'old': 6.725}
2019-11-27 16:17:36,231 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:36,285 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.325}
2019-11-27 16:17:42,181 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:17:42,706 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:42,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-11-27 16:17:42,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.973, u'old': 7.4}
2019-11-27 16:17:46,553 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.573, u'old': 6.973}
2019-11-27 16:17:47,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 7.573}
2019-11-27 16:17:54,102 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:54,154 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 7.0}
2019-11-27 16:17:54,385 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 7.6}
2019-11-27 16:17:57,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 7.2}
2019-11-27 16:17:57,804 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.222, u'old': 7.8}
2019-11-27 16:18:01,325 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:01,392 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.822, u'old': 7.222}
2019-11-27 16:18:02,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 7.822}
2019-11-27 16:18:08,921 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:08,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-11-27 16:18:08,995 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=8.00 old_z=7.40 last_z=8.00 notification_height=3.00 notification_time=5
2019-11-27 16:18:09,004 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.083064409177315, 'printTimeLeftOrigin': 'estimate', 'printTime': 765, 'printTimeLeft': 1440, 'filepos': 94404L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:18:09,007 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:18:09,014 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.083064409177315, 'printTimeLeftOrigin': 'estimate', 'printTime': 765, 'printTimeLeft': 1440, 'filepos': 94404L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 8.0, u'old': 7.4}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:09', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:12:45', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 8.0, 'e2_temp': 209.8}
2019-11-27 16:18:09,017 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=8.0.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:12:45, 26%% done, 00:24:00 remaining.
Completed time 16:42:09.
2019-11-27 16:18:09,020 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:18:09,024 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=8.0.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:45, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:18:09,030 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:18:09,094 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:18:09,095 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:18:09,097 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:18:11,539 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:18:12,844 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:18:13,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-11-27 16:18:13,197 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=7.40 old_z=8.00 last_z=7.40 notification_height=3.00 notification_time=5
2019-11-27 16:18:13,204 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.345541753238145, 'printTimeLeftOrigin': 'estimate', 'printTime': 769, 'printTimeLeft': 1440, 'filepos': 95354L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.07, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:18:13,206 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:18:13,211 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.345541753238145, 'printTimeLeftOrigin': 'estimate', 'printTime': 769, 'printTimeLeft': 1440, 'filepos': 95354L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.07, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 7.4, u'old': 8.0}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:13', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:12:49', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 7.4, 'e2_temp': 210.1}
2019-11-27 16:18:13,214 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=7.4.
Bed 59.9/60.0, Extruder 210.1/210.0.
00:12:49, 26%% done, 00:24:00 remaining.
Completed time 16:42:13.
2019-11-27 16:18:13,217 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:18:13,219 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=7.4.\nBed 59.9/60.0, Extruder 210.1/210.0.\n11:11:49, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:18:13,222 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:18:13,274 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:18:13,276 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:18:13,277 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:18:15,864 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:18:17,049 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:17,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-11-27 16:18:17,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.47, u'old': 8.0}
2019-11-27 16:18:17,144 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.07, u'old': 7.47}
2019-11-27 16:18:17,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 8.07}
2019-11-27 16:18:20,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 7.6}
2019-11-27 16:18:20,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 8.2}
2019-11-27 16:18:24,183 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:24,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 7.6}
2019-11-27 16:18:24,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.718, u'old': 8.2}
2019-11-27 16:18:24,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.318, u'old': 7.718}
2019-11-27 16:18:26,047 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 8.318}
2019-11-27 16:18:32,502 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:32,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 7.8}
2019-11-27 16:18:32,781 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 8.4}
2019-11-27 16:18:36,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 7.8}
2019-11-27 16:18:36,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.966, u'old': 8.4}
2019-11-27 16:18:36,944 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.566, u'old': 7.966}
2019-11-27 16:18:37,778 - tornado.access - WARNING - 404 GET /apple-touch-icon-152x152-precomposed.png (::ffff:192.168.62.124) 19.19ms
2019-11-27 16:18:37,837 - tornado.access - WARNING - 404 GET /apple-touch-icon-152x152.png (::ffff:192.168.62.124) 9.13ms
2019-11-27 16:18:37,858 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.124
2019-11-27 16:18:38,110 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:38,135 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.566}
2019-11-27 16:18:38,178 - octoprint.server.util.flask - INFO - Passively logging in user None from ::ffff:192.168.62.124
2019-11-27 16:18:43,518 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:18:44,492 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:44,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-11-27 16:18:44,775 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.6}
2019-11-27 16:18:47,044 - octoprint.server.util.sockjs - INFO - User osh logged out, logging out on socket
2019-11-27 16:18:47,079 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.124
2019-11-27 16:18:48,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-11-27 16:18:48,703 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 8.6}
2019-11-27 16:18:49,783 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:49,830 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 8.2}
2019-11-27 16:18:49,942 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 8.8}
2019-11-27 16:18:50,899 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.124
2019-11-27 16:18:51,041 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-11-27 16:18:52,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 8.2}
2019-11-27 16:18:52,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.214, u'old': 8.8}
2019-11-27 16:18:53,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.814, u'old': 8.214}
2019-11-27 16:18:54,574 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 8.814}
2019-11-27 16:19:01,031 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:01,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 8.4}
2019-11-27 16:19:01,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 9.0}
2019-11-27 16:19:04,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 8.4}
2019-11-27 16:19:04,760 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.462, u'old': 9.0}
2019-11-27 16:19:05,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.062, u'old': 8.462}
2019-11-27 16:19:06,733 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:06,785 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.062}
2019-11-27 16:19:13,242 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:13,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-11-27 16:19:13,546 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-11-27 16:19:14,163 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:19:16,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-11-27 16:19:16,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.71, u'old': 9.2}
2019-11-27 16:19:17,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.31, u'old': 8.71}
2019-11-27 16:19:18,924 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:18,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 9.31}
2019-11-27 16:19:25,435 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:25,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 8.8}
2019-11-27 16:19:25,747 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 9.4}
2019-11-27 16:19:29,156 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 8.8}
2019-11-27 16:19:29,230 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.958, u'old': 9.4}
2019-11-27 16:19:30,080 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.558, u'old': 8.958}
2019-11-27 16:19:31,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:31,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.558}
2019-11-27 16:19:37,627 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:37,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:37,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.6}
2019-11-27 16:19:40,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:41,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.6}
2019-11-27 16:19:41,580 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:41,765 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.6}
2019-11-27 16:19:42,445 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:42,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-11-27 16:19:44,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:19:45,909 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:45,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:46,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-11-27 16:19:46,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:46,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.206, u'old': 9.8}
2019-11-27 16:19:47,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.806, u'old': 9.206}
2019-11-27 16:19:48,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 9.806}
2019-11-27 16:19:54,865 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:54,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 9.4}
2019-11-27 16:19:55,134 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 10.0}
2019-11-27 16:19:58,779 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 9.4}
2019-11-27 16:19:59,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.454, u'old': 10.0}
2019-11-27 16:19:59,790 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.054, u'old': 9.454}
2019-11-27 16:20:00,846 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:00,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 10.054}
2019-11-27 16:20:07,349 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:07,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 9.6}
2019-11-27 16:20:07,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 10.2}
2019-11-27 16:20:11,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 9.6}
2019-11-27 16:20:11,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.703, u'old': 10.2}
2019-11-27 16:20:12,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.303, u'old': 9.703}
2019-11-27 16:20:13,424 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:13,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.303}
2019-11-27 16:20:15,463 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:20:19,929 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:19,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:20,013 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.40 old_z=9.80 last_z=10.40 notification_height=3.00 notification_time=5
2019-11-27 16:20:20,018 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 31.426550550373545, 'printTimeLeftOrigin': 'estimate', 'printTime': 896, 'printTimeLeft': 1320, 'filepos': 113744L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:20,021 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:20,026 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 31.426550550373545, 'printTimeLeftOrigin': 'estimate', 'printTime': 896, 'printTimeLeft': 1320, 'filepos': 113744L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 10.4, u'old': 9.8}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 31, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:20', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:14:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 10.4, 'e2_temp': 209.9}
2019-11-27 16:20:20,029 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.4.
Bed 59.9/60.0, Extruder 209.9/210.0.
00:14:56, 31%% done, 00:22:00 remaining.
Completed time 16:42:20.
2019-11-27 16:20:20,032 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:20,034 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.4.\nBed 59.9/60.0, Extruder 209.9/210.0.\n11:11:56, 31%% done, 11:11:00 remaining.\nCompleted time 11:11:20. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:20,036 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:20,123 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:20,124 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:20,125 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:22,678 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:23,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-11-27 16:20:23,855 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=9.80 old_z=10.40 last_z=9.80 notification_height=3.00 notification_time=5
2019-11-27 16:20:23,866 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 31.619126033331863, 'printTimeLeftOrigin': 'estimate', 'printTime': 900, 'printTimeLeft': 1320, 'filepos': 114441L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:23,868 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:23,892 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 31.619126033331863, 'printTimeLeftOrigin': 'estimate', 'printTime': 900, 'printTimeLeft': 1320, 'filepos': 114441L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 9.8, u'old': 10.4}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 31, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:23', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:00', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 9.8, 'e2_temp': 210.0}
2019-11-27 16:20:23,904 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=9.8.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:15:00, 31%% done, 00:22:00 remaining.
Completed time 16:42:23.
2019-11-27 16:20:23,915 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:23,921 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=9.8.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:00, 31%% done, 11:11:00 remaining.\nCompleted time 11:11:23. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:23,926 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:23,976 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:23,978 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:23,980 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:26,532 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:27,630 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:27,656 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:27,689 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-11-27 16:20:27,740 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:27,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.951, u'old': 10.4}
2019-11-27 16:20:27,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.551, u'old': 9.951}
2019-11-27 16:20:27,854 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.551}
2019-11-27 16:20:32,258 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:32,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.6}
2019-11-27 16:20:34,589 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:34,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:35,442 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.6}
2019-11-27 16:20:36,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:36,084 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.60 old_z=10.00 last_z=9.80 notification_height=3.00 notification_time=5
2019-11-27 16:20:36,094 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 32.1620396976261, 'printTimeLeftOrigin': 'estimate', 'printTime': 912, 'printTimeLeft': 1320, 'filepos': 116406L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:36,098 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.3, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:36,106 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 32.1620396976261, 'printTimeLeftOrigin': 'estimate', 'printTime': 912, 'printTimeLeft': 1320, 'filepos': 116406L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.3, 'payload': {u'new': 10.6, u'old': 10.0}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 32, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.3, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 10.6, 'e2_temp': 210.3}
2019-11-27 16:20:36,115 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.6.
Bed 59.9/60.0, Extruder 210.3/210.0.
00:15:12, 32%% done, 00:22:00 remaining.
Completed time 16:42:36.
2019-11-27 16:20:36,121 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:36,125 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.6.\nBed 59.9/60.0, Extruder 210.3/210.0.\n11:11:12, 32%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:36,128 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:36,187 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:36,188 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:36,190 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:38,727 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:39,756 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:39,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.199, u'old': 10.6}
2019-11-27 16:20:39,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.799, u'old': 10.199}
2019-11-27 16:20:39,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 10.799}
2019-11-27 16:20:44,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 10.2}
2019-11-27 16:20:44,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 10.8}
2019-11-27 16:20:46,105 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:20:47,954 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:48,008 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-11-27 16:20:48,107 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.447, u'old': 11.0}
2019-11-27 16:20:51,680 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.047, u'old': 10.447}
2019-11-27 16:20:52,768 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 11.047}
2019-11-27 16:20:59,227 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:59,281 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 10.6}
2019-11-27 16:20:59,501 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.695, u'old': 11.2}
2019-11-27 16:21:03,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.295, u'old': 10.695}
2019-11-27 16:21:04,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 11.295}
2019-11-27 16:21:10,620 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:10,677 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 10.8}
2019-11-27 16:21:10,892 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 11.4}
2019-11-27 16:21:12,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 10.8}
2019-11-27 16:21:13,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.943, u'old': 11.4}
2019-11-27 16:21:14,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.543, u'old': 10.943}
2019-11-27 16:21:15,814 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:15,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.543}
2019-11-27 16:21:16,715 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:21:22,326 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:22,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:22,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-11-27 16:21:25,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:25,864 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-11-27 16:21:26,097 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:26,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.191, u'old': 11.6}
2019-11-27 16:21:26,920 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.791, u'old': 11.191}
2019-11-27 16:21:27,967 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:28,019 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.791}
2019-11-27 16:21:34,471 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:34,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:34,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.8}
2019-11-27 16:21:38,270 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:38,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.8}
2019-11-27 16:21:38,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:38,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 11.8}
2019-11-27 16:21:38,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 11.4}
2019-11-27 16:21:39,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 12.0}
2019-11-27 16:21:42,618 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:42,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 11.4}
2019-11-27 16:21:42,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.439, u'old': 12.0}
2019-11-27 16:21:43,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.039, u'old': 11.439}
2019-11-27 16:21:44,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.039}
2019-11-27 16:21:47,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:21:51,346 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:51,398 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-11-27 16:21:51,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-11-27 16:21:55,233 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-11-27 16:21:55,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.687, u'old': 12.2}
2019-11-27 16:21:56,335 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.287, u'old': 11.687}
2019-11-27 16:21:57,373 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:57,430 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 12.287}
2019-11-27 16:22:07,387 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:07,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 11.8}
2019-11-27 16:22:07,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.935, u'old': 12.4}
2019-11-27 16:22:08,565 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.535, u'old': 11.935}
2019-11-27 16:22:09,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 12.535}
2019-11-27 16:22:16,116 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:16,169 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 12.0}
2019-11-27 16:22:16,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 12.6}
2019-11-27 16:22:18,101 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:22:19,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 12.0}
2019-11-27 16:22:20,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.184, u'old': 12.6}
2019-11-27 16:22:21,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.784, u'old': 12.184}
2019-11-27 16:22:22,130 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:22,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.784}
2019-11-27 16:22:28,635 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:28,700 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-11-27 16:22:28,719 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.80 old_z=12.20 last_z=12.80 notification_height=3.00 notification_time=5
2019-11-27 16:22:28,728 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 36.30476106272933, 'printTimeLeftOrigin': 'estimate', 'printTime': 1025, 'printTimeLeft': 1200, 'filepos': 131400L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:22:28,731 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:22:28,736 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 36.30476106272933, 'printTimeLeftOrigin': 'estimate', 'printTime': 1025, 'printTimeLeft': 1200, 'filepos': 131400L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 12.8, u'old': 12.2}, 'time_left': u'00:20:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 36, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:28', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:17:05', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 12.8, 'e2_temp': 210.0}
2019-11-27 16:22:28,739 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.8.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:17:05, 36%% done, 00:20:00 remaining.
Completed time 16:42:28.
2019-11-27 16:22:28,742 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:22:28,745 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.8.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:05, 36%% done, 11:11:00 remaining.\nCompleted time 11:11:28. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:22:28,747 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:22:28,833 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:22:28,835 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:22:28,837 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:22:31,392 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:22:32,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-11-27 16:22:32,466 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.20 old_z=12.80 last_z=12.20 notification_height=3.00 notification_time=5
2019-11-27 16:22:32,470 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 36.45644533840237, 'printTimeLeftOrigin': 'estimate', 'printTime': 1029, 'printTimeLeft': 1200, 'filepos': 131949L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:22:32,476 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:22:32,483 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 36.45644533840237, 'printTimeLeftOrigin': 'estimate', 'printTime': 1029, 'printTimeLeft': 1200, 'filepos': 131949L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 12.2, u'old': 12.8}, 'time_left': u'00:20:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 36, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:32', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:17:09', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 12.2, 'e2_temp': 209.9}
2019-11-27 16:22:32,485 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.2.
Bed 60.1/60.0, Extruder 209.9/210.0.
00:17:09, 36%% done, 00:20:00 remaining.
Completed time 16:42:32.
2019-11-27 16:22:32,487 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:22:32,489 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.2.\nBed 60.1/60.0, Extruder 209.9/210.0.\n11:11:09, 36%% done, 11:11:00 remaining.\nCompleted time 11:11:32. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:22:32,490 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:22:32,553 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:22:32,554 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:22:32,555 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:22:35,108 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:22:36,113 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:36,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-11-27 16:22:36,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 12.8}
2019-11-27 16:22:36,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 12.4}
2019-11-27 16:22:36,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 13.0}
2019-11-27 16:22:37,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 12.4}
2019-11-27 16:22:37,165 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.432, u'old': 13.0}
2019-11-27 16:22:38,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.032, u'old': 12.432}
2019-11-27 16:22:39,302 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 13.032}
2019-11-27 16:22:45,787 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:45,842 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 12.6}
2019-11-27 16:22:46,030 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 13.2}
2019-11-27 16:22:48,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:22:49,577 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 12.6}
2019-11-27 16:22:49,809 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.68, u'old': 13.2}
2019-11-27 16:22:50,679 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.28, u'old': 12.68}
2019-11-27 16:22:51,724 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:51,777 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.28}
2019-11-27 16:22:58,226 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:58,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-11-27 16:22:58,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-11-27 16:23:01,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-11-27 16:23:01,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.928, u'old': 13.4}
2019-11-27 16:23:02,825 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.528, u'old': 12.928}
2019-11-27 16:23:03,861 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:03,926 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 13.528}
2019-11-27 16:23:10,381 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:10,434 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 13.0}
2019-11-27 16:23:10,649 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 13.6}
2019-11-27 16:23:14,493 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 13.0}
2019-11-27 16:23:14,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.176, u'old': 13.6}
2019-11-27 16:23:14,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.776, u'old': 13.176}
2019-11-27 16:23:16,031 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:16,092 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 13.776}
2019-11-27 16:23:19,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:23:22,538 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:22,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 13.2}
2019-11-27 16:23:22,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 13.8}
2019-11-27 16:23:26,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 13.2}
2019-11-27 16:23:26,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 13.8}
2019-11-27 16:23:26,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-11-27 16:23:26,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-11-27 16:23:30,002 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:30,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-11-27 16:23:30,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.424, u'old': 14.0}
2019-11-27 16:23:30,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.024, u'old': 13.424}
2019-11-27 16:23:31,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 14.024}
2019-11-27 16:23:38,308 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:38,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 13.6}
2019-11-27 16:23:38,579 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 14.2}
2019-11-27 16:23:41,568 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 13.6}
2019-11-27 16:23:41,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.672, u'old': 14.2}
2019-11-27 16:23:42,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.272, u'old': 13.672}
2019-11-27 16:23:43,541 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:43,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 14.272}
2019-11-27 16:23:50,053 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:23:50,079 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:50,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 13.8}
2019-11-27 16:23:50,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.92, u'old': 14.4}
2019-11-27 16:23:53,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.52, u'old': 13.92}
2019-11-27 16:23:54,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.52}
2019-11-27 16:24:01,438 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:01,497 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-11-27 16:24:01,755 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.168, u'old': 14.6}
2019-11-27 16:24:05,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.768, u'old': 14.168}
2019-11-27 16:24:06,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 14.768}
2019-11-27 16:24:12,823 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:12,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 14.2}
2019-11-27 16:24:13,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 14.8}
2019-11-27 16:24:16,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 14.4}
2019-11-27 16:24:16,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 15.0}
2019-11-27 16:24:19,450 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:19,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 14.4}
2019-11-27 16:24:19,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.416, u'old': 15.0}
2019-11-27 16:24:20,489 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.016, u'old': 14.416}
2019-11-27 16:24:20,697 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:24:21,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.016}
2019-11-27 16:24:28,016 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:28,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-11-27 16:24:28,092 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.20 old_z=14.60 last_z=15.20 notification_height=3.00 notification_time=5
2019-11-27 16:24:28,102 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 40.927401529552185, 'printTimeLeftOrigin': 'estimate', 'printTime': 1144, 'printTimeLeft': 1080, 'filepos': 148131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:24:28,111 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:24:28,125 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 40.927401529552185, 'printTimeLeftOrigin': 'estimate', 'printTime': 1144, 'printTimeLeft': 1080, 'filepos': 148131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 15.2, u'old': 14.6}, 'time_left': u'00:18:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 40, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:28', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:19:04', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 15.2, 'e2_temp': 210.1}
2019-11-27 16:24:28,131 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.2.
Bed 60.2/60.0, Extruder 210.1/210.0.
00:19:04, 40%% done, 00:18:00 remaining.
Completed time 16:42:28.
2019-11-27 16:24:28,135 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:24:28,139 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.2.\nBed 60.2/60.0, Extruder 210.1/210.0.\n11:11:04, 40%% done, 11:11:00 remaining.\nCompleted time 11:11:28. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:24:28,143 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:24:28,182 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:24:28,184 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:24:28,185 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:24:30,666 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:24:31,837 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-11-27 16:24:31,844 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=14.60 old_z=15.20 last_z=14.60 notification_height=3.00 notification_time=5
2019-11-27 16:24:31,848 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 41.135449361213034, 'printTimeLeftOrigin': 'estimate', 'printTime': 1148, 'printTimeLeft': 1080, 'filepos': 148884L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.665, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:24:31,849 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:24:31,854 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 41.135449361213034, 'printTimeLeftOrigin': 'estimate', 'printTime': 1148, 'printTimeLeft': 1080, 'filepos': 148884L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.665, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 14.6, u'old': 15.2}, 'time_left': u'00:18:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 41, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:31', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:19:08', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 14.6, 'e2_temp': 210.0}
2019-11-27 16:24:31,859 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=14.6.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:19:08, 41%% done, 00:18:00 remaining.
Completed time 16:42:31.
2019-11-27 16:24:31,861 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:24:31,864 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=14.6.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:08, 41%% done, 11:11:00 remaining.\nCompleted time 11:11:31. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:24:31,866 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:24:31,902 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:24:31,903 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:24:31,905 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:24:34,450 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:24:35,486 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:35,512 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-11-27 16:24:35,550 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.665, u'old': 15.2}
2019-11-27 16:24:35,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.265, u'old': 14.665}
2019-11-27 16:24:35,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 15.265}
2019-11-27 16:24:39,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 14.8}
2019-11-27 16:24:40,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 15.4}
2019-11-27 16:24:43,709 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:43,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 14.8}
2019-11-27 16:24:43,832 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.913, u'old': 15.4}
2019-11-27 16:24:44,279 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.513, u'old': 14.913}
2019-11-27 16:24:45,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 15.513}
2019-11-27 16:24:51,312 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:24:51,853 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:51,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 15.0}
2019-11-27 16:24:52,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 15.6}
2019-11-27 16:24:55,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 15.0}
2019-11-27 16:24:55,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.161, u'old': 15.6}
2019-11-27 16:24:56,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.761, u'old': 15.161}
2019-11-27 16:24:57,570 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:57,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.761}
2019-11-27 16:25:04,079 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:04,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-11-27 16:25:04,401 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-11-27 16:25:07,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-11-27 16:25:07,867 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 15.8}
2019-11-27 16:25:08,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 15.4}
2019-11-27 16:25:08,672 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 16.0}
2019-11-27 16:25:11,960 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:12,030 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 15.4}
2019-11-27 16:25:12,098 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.409, u'old': 16.0}
2019-11-27 16:25:13,025 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.009, u'old': 15.409}
2019-11-27 16:25:14,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 16.009}
2019-11-27 16:25:20,571 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:20,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 15.6}
2019-11-27 16:25:20,841 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 16.2}
2019-11-27 16:25:21,967 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:25:24,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 15.6}
2019-11-27 16:25:24,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.657, u'old': 16.2}
2019-11-27 16:25:25,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.257, u'old': 15.657}
2019-11-27 16:25:26,251 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:26,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.257}
2019-11-27 16:25:32,761 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:32,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:33,034 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-11-27 16:25:36,002 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:36,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-11-27 16:25:36,178 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.80 old_z=16.40 last_z=14.60 notification_height=3.00 notification_time=5
2019-11-27 16:25:36,184 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 43.648324565669064, 'printTimeLeftOrigin': 'estimate', 'printTime': 1212, 'printTimeLeft': 1020, 'filepos': 157979L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:25:36,186 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:25:36,191 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 43.648324565669064, 'printTimeLeftOrigin': 'estimate', 'printTime': 1212, 'printTimeLeft': 1020, 'filepos': 157979L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 15.8, u'old': 16.4}, 'time_left': u'00:17:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 43, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:20:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 15.8, 'e2_temp': 210.1}
2019-11-27 16:25:36,193 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.8.
Bed 60.1/60.0, Extruder 210.1/210.0.
00:20:12, 43%% done, 00:17:00 remaining.
Completed time 16:42:36.
2019-11-27 16:25:36,195 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:25:36,198 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.8.\nBed 60.1/60.0, Extruder 210.1/210.0.\n11:11:12, 43%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:25:36,208 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:25:36,285 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:25:36,286 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:25:36,287 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:25:38,975 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:25:40,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:40,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:40,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.905, u'old': 16.4}
2019-11-27 16:25:40,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.505, u'old': 15.905}
2019-11-27 16:25:40,246 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.505}
2019-11-27 16:25:45,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:45,258 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:45,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.6}
2019-11-27 16:25:48,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:48,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.6}
2019-11-27 16:25:48,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:49,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.153, u'old': 16.6}
2019-11-27 16:25:49,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.753, u'old': 16.153}
2019-11-27 16:25:51,013 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:51,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.753}
2019-11-27 16:25:52,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:25:57,528 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:57,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:25:57,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.8}
2019-11-27 16:26:00,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:26:00,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.8}
2019-11-27 16:26:01,571 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:26:01,763 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 16.8}
2019-11-27 16:26:02,393 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-11-27 16:26:02,475 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-11-27 16:26:06,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:06,195 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-11-27 16:26:06,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.401, u'old': 17.0}
2019-11-27 16:26:07,173 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.001, u'old': 16.401}
2019-11-27 16:26:08,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 17.001}
2019-11-27 16:26:14,699 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:14,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 16.6}
2019-11-27 16:26:14,968 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 17.2}
2019-11-27 16:26:18,933 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 16.6}
2019-11-27 16:26:19,069 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.649, u'old': 17.2}
2019-11-27 16:26:19,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.249, u'old': 16.649}
2019-11-27 16:26:20,678 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:20,735 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.249}
2019-11-27 16:26:23,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:26:27,180 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:27,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:27,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.4}
2019-11-27 16:26:30,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:30,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.4}
2019-11-27 16:26:31,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:31,517 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.897, u'old': 17.4}
2019-11-27 16:26:31,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.497, u'old': 16.897}
2019-11-27 16:26:32,962 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:33,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.497}
2019-11-27 16:26:39,466 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:39,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:39,541 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.60 old_z=17.00 last_z=17.60 notification_height=3.00 notification_time=5
2019-11-27 16:26:39,554 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 46.48832942840723, 'printTimeLeftOrigin': 'estimate', 'printTime': 1276, 'printTimeLeft': 900, 'filepos': 168258L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:26:39,557 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:26:39,564 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 46.48832942840723, 'printTimeLeftOrigin': 'estimate', 'printTime': 1276, 'printTimeLeft': 900, 'filepos': 168258L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 17.6, u'old': 17.0}, 'time_left': u'00:15:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 46, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:39', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:21:16', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 17.6, 'e2_temp': 209.9}
2019-11-27 16:26:39,566 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.6.
Bed 60.0/60.0, Extruder 209.9/210.0.
00:21:16, 46%% done, 00:15:00 remaining.
Completed time 16:41:39.
2019-11-27 16:26:39,567 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:26:39,570 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.6.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:16, 46%% done, 11:11:00 remaining.\nCompleted time 11:11:39. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:26:39,572 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:26:39,609 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:26:39,611 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:26:39,613 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:26:42,234 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:26:43,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-11-27 16:26:43,301 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.00 old_z=17.60 last_z=17.00 notification_height=3.00 notification_time=5
2019-11-27 16:26:43,308 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 46.66377481101631, 'printTimeLeftOrigin': 'estimate', 'printTime': 1279, 'printTimeLeft': 900, 'filepos': 168893L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:26:43,312 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:26:43,319 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 46.66377481101631, 'printTimeLeftOrigin': 'estimate', 'printTime': 1279, 'printTimeLeft': 900, 'filepos': 168893L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 17.0, u'old': 17.6}, 'time_left': u'00:15:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 46, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:43', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:21:19', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 17.0, 'e2_temp': 210.2}
2019-11-27 16:26:43,322 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.0.
Bed 59.9/60.0, Extruder 210.2/210.0.
00:21:19, 46%% done, 00:15:00 remaining.
Completed time 16:41:43.
2019-11-27 16:26:43,327 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:26:43,332 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.0.\nBed 59.9/60.0, Extruder 210.2/210.0.\n11:11:19, 46%% done, 11:11:00 remaining.\nCompleted time 11:11:43. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:26:43,337 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:26:43,394 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:26:43,396 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:26:43,398 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:26:46,165 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:26:47,180 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:47,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:47,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-11-27 16:26:47,287 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:47,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.146, u'old': 17.6}
2019-11-27 16:26:47,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.746, u'old': 17.146}
2019-11-27 16:26:47,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 17.746}
2019-11-27 16:26:51,739 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 17.2}
2019-11-27 16:26:51,969 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.394, u'old': 17.8}
2019-11-27 16:26:53,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:26:55,510 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:55,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.994, u'old': 17.394}
2019-11-27 16:26:56,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 17.994}
2019-11-27 16:27:03,110 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:03,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 17.4}
2019-11-27 16:27:03,426 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.0}
2019-11-27 16:27:06,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-11-27 16:27:06,849 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.642, u'old': 18.2}
2019-11-27 16:27:10,437 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:10,490 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.242, u'old': 17.642}
2019-11-27 16:27:11,566 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 18.242}
2019-11-27 16:27:18,022 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:18,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 17.8}
2019-11-27 16:27:18,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 18.4}
2019-11-27 16:27:19,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 17.8}
2019-11-27 16:27:20,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.89, u'old': 18.4}
2019-11-27 16:27:22,262 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.49, u'old': 17.89}
2019-11-27 16:27:23,303 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:23,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.49}
2019-11-27 16:27:24,590 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:27:29,813 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:29,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:30,111 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.6}
2019-11-27 16:27:33,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:33,403 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.6}
2019-11-27 16:27:33,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:33,726 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.138, u'old': 18.6}
2019-11-27 16:27:34,500 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.738, u'old': 18.138}
2019-11-27 16:27:35,533 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:35,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 18.738}
2019-11-27 16:27:42,039 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:42,098 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 18.2}
2019-11-27 16:27:42,317 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 18.8}
2019-11-27 16:27:46,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 18.2}
2019-11-27 16:27:46,109 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.386, u'old': 18.8}
2019-11-27 16:27:46,954 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.986, u'old': 18.386}
2019-11-27 16:27:47,994 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:48,046 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 18.986}
2019-11-27 16:27:54,505 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:54,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 18.4}
2019-11-27 16:27:54,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 19.0}
2019-11-27 16:27:55,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:27:58,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 18.4}
2019-11-27 16:27:58,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 19.0}
2019-11-27 16:27:59,591 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:59,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 18.6}
2019-11-27 16:27:59,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 19.2}
2019-11-27 16:28:02,972 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:28:04,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 18.6}
2019-11-27 16:28:04,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.634, u'old': 19.2}
2019-11-27 16:28:04,647 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:04,673 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.234, u'old': 18.634}
2019-11-27 16:28:05,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.234}
2019-11-27 16:28:12,249 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:12,310 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:12,504 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:28:12,647 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.4}
2019-11-27 16:28:16,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:16,354 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.4}
2019-11-27 16:28:16,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:16,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.882, u'old': 19.4}
2019-11-27 16:28:17,658 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:17,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.482, u'old': 18.882}
2019-11-27 16:28:18,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 19.482}
2019-11-27 16:28:25,921 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:28:26,068 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 108926}
2019-11-27 16:28:29,294 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:29,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 19.0}
2019-11-27 16:28:29,449 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.13, u'old': 19.6}
2019-11-27 16:28:30,353 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.73, u'old': 19.13}
2019-11-27 16:28:31,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 19.73}
2019-11-27 16:28:37,865 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:37,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 19.2}
2019-11-27 16:28:38,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 19.8}
2019-11-27 16:28:42,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 19.2}
2019-11-27 16:28:42,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.378, u'old': 19.8}
2019-11-27 16:28:43,252 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:43,283 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.978, u'old': 19.378}
2019-11-27 16:28:44,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 19.978}
2019-11-27 16:28:50,909 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:50,966 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 19.4}
2019-11-27 16:28:50,990 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=20.00 old_z=19.40 last_z=20.00 notification_height=3.00 notification_time=5
2019-11-27 16:28:51,001 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.65526501922992, 'printTimeLeftOrigin': 'estimate', 'printTime': 1407, 'printTimeLeft': 780, 'filepos': 186959L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 20.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:28:51,005 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:28:51,013 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.65526501922992, 'printTimeLeftOrigin': 'estimate', 'printTime': 1407, 'printTimeLeft': 780, 'filepos': 186959L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 20.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 20.0, u'old': 19.4}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:51', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:23:27', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 20.0, 'e2_temp': 210.0}
2019-11-27 16:28:51,020 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=20.0.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:23:27, 51%% done, 00:13:00 remaining.
Completed time 16:41:51.
2019-11-27 16:28:51,025 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:28:51,032 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=20.0.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:27, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:51. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:28:51,042 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:28:51,106 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:28:51,108 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:28:51,113 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:28:53,655 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:28:54,758 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 20.0}
2019-11-27 16:28:54,783 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=19.40 old_z=20.00 last_z=19.40 notification_height=3.00 notification_time=5
2019-11-27 16:28:54,792 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.80639671102073, 'printTimeLeftOrigin': 'estimate', 'printTime': 1411, 'printTimeLeft': 780, 'filepos': 187506L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 19.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:28:54,794 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:28:54,801 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.80639671102073, 'printTimeLeftOrigin': 'estimate', 'printTime': 1411, 'printTimeLeft': 780, 'filepos': 187506L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 19.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 19.4, u'old': 20.0}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:54', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:23:31', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 19.4, 'e2_temp': 210.0}
2019-11-27 16:28:54,804 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=19.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:23:31, 51%% done, 00:13:00 remaining.
Completed time 16:41:54.
2019-11-27 16:28:54,806 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:28:54,809 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=19.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:31, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:28:54,812 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:28:54,893 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:28:54,894 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:28:54,896 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:28:56,524 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:28:57,454 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:28:58,474 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:58,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 19.4}
2019-11-27 16:28:58,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 20.0}
2019-11-27 16:28:58,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 19.6}
2019-11-27 16:28:58,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 20.2}
2019-11-27 16:29:00,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 19.6}
2019-11-27 16:29:00,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.627, u'old': 20.2}
2019-11-27 16:29:01,343 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.227, u'old': 19.627}
2019-11-27 16:29:02,432 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 20.227}
2019-11-27 16:29:08,881 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:08,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 19.8}
2019-11-27 16:29:09,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 20.4}
2019-11-27 16:29:13,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 19.8}
2019-11-27 16:29:13,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.875, u'old': 20.4}
2019-11-27 16:29:14,359 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:14,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.475, u'old': 19.875}
2019-11-27 16:29:15,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 20.475}
2019-11-27 16:29:21,963 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:22,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 20.0}
2019-11-27 16:29:22,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 20.6}
2019-11-27 16:29:27,027 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:27,099 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 20.0}
2019-11-27 16:29:27,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.123, u'old': 20.6}
2019-11-27 16:29:27,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:29:27,506 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.723, u'old': 20.123}
2019-11-27 16:29:28,614 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.723}
2019-11-27 16:29:35,069 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:35,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:35,340 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.8}
2019-11-27 16:29:39,041 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:39,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.8}
2019-11-27 16:29:40,070 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:40,096 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:40,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.371, u'old': 20.8}
2019-11-27 16:29:41,672 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.971, u'old': 20.371}
2019-11-27 16:29:42,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 20.971}
2019-11-27 16:29:48,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:48,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:48,423 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 21.0}
2019-11-27 16:29:52,209 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:52,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 21.0}
2019-11-27 16:29:53,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:53,151 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:53,204 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.0}
2019-11-27 16:29:53,484 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:53,534 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.2}
2019-11-27 16:29:57,387 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:57,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.2}
2019-11-27 16:29:57,839 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:29:57,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:58,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.619, u'old': 21.2}
2019-11-27 16:30:00,785 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:00,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.219, u'old': 20.619}
2019-11-27 16:30:01,786 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 21.219}
2019-11-27 16:30:06,205 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:06,276 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 20.8}
2019-11-27 16:30:06,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 21.4}
2019-11-27 16:30:10,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 20.8}
2019-11-27 16:30:10,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.867, u'old': 21.4}
2019-11-27 16:30:12,354 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:12,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.467, u'old': 20.867}
2019-11-27 16:30:13,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.467}
2019-11-27 16:30:17,562 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:17,609 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:17,715 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.6}
2019-11-27 16:30:19,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:20,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.6}
2019-11-27 16:30:23,678 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:23,748 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:23,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.115, u'old': 21.6}
2019-11-27 16:30:26,287 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.715, u'old': 21.115}
2019-11-27 16:30:27,297 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.715}
2019-11-27 16:30:28,456 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:30:30,470 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:30,528 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:30,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:32,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:33,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:36,171 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:36,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:36,269 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=21.80 old_z=21.20 last_z=19.40 notification_height=3.00 notification_time=5
2019-11-27 16:30:36,275 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 56.999303744308385, 'printTimeLeftOrigin': 'estimate', 'printTime': 1512, 'printTimeLeft': 720, 'filepos': 206301L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:30:36,278 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:30:36,286 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 56.999303744308385, 'printTimeLeftOrigin': 'estimate', 'printTime': 1512, 'printTimeLeft': 720, 'filepos': 206301L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 21.8, u'old': 21.2}, 'time_left': u'00:12:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 56, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 21.8, 'e2_temp': 210.0}
2019-11-27 16:30:36,289 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=21.8.
Bed 59.9/60.0, Extruder 210.0/210.0.
00:25:12, 56%% done, 00:12:00 remaining.
Completed time 16:42:36.
2019-11-27 16:30:36,292 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:30:36,295 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=21.8.\nBed 59.9/60.0, Extruder 210.0/210.0.\n11:11:12, 56%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:30:36,298 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:30:36,391 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:30:36,393 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:30:36,395 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:30:39,066 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:30:40,179 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:40,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:40,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.363, u'old': 21.8}
2019-11-27 16:30:40,276 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.963, u'old': 21.363}
2019-11-27 16:30:40,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 21.963}
2019-11-27 16:30:43,473 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:43,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:43,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:45,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:46,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:49,298 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:49,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:49,415 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:50,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:50,199 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.0}
2019-11-27 16:30:50,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:50,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:51,455 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:52,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:54,769 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:54,838 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:54,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:55,946 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:55,985 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.611, u'old': 22.2}
2019-11-27 16:30:58,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.211, u'old': 21.611}
2019-11-27 16:30:59,117 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:30:59,521 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.211}
2019-11-27 16:31:02,502 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:02,558 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:02,577 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=22.40 old_z=21.80 last_z=22.40 notification_height=3.00 notification_time=5
2019-11-27 16:31:02,585 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 58.777518677335216, 'printTimeLeftOrigin': 'estimate', 'printTime': 1539, 'printTimeLeft': 660, 'filepos': 212737L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 22.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:31:02,590 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:31:02,601 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 58.777518677335216, 'printTimeLeftOrigin': 'estimate', 'printTime': 1539, 'printTimeLeft': 660, 'filepos': 212737L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 22.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 22.4, u'old': 21.8}, 'time_left': u'00:11:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 58, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:02', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:39', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 22.4, 'e2_temp': 210.0}
2019-11-27 16:31:02,605 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=22.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:25:39, 58%% done, 00:11:00 remaining.
Completed time 16:42:02.
2019-11-27 16:31:02,608 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:31:02,610 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=22.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:39, 58%% done, 11:11:00 remaining.\nCompleted time 11:11:02. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:31:02,611 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:31:02,666 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:31:02,667 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:31:02,668 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:31:05,181 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:31:06,369 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.4}
2019-11-27 16:31:06,386 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=21.80 old_z=22.40 last_z=21.80 notification_height=3.00 notification_time=5
2019-11-27 16:31:06,395 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 58.92257194642146, 'printTimeLeftOrigin': 'estimate', 'printTime': 1542, 'printTimeLeft': 660, 'filepos': 213262L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:31:06,399 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:31:06,409 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 58.92257194642146, 'printTimeLeftOrigin': 'estimate', 'printTime': 1542, 'printTimeLeft': 660, 'filepos': 213262L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 21.8, u'old': 22.4}, 'time_left': u'00:11:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 58, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:06', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:42', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 21.8, 'e2_temp': 210.1}
2019-11-27 16:31:06,417 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=21.8.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:25:42, 58%% done, 00:11:00 remaining.
Completed time 16:42:06.
2019-11-27 16:31:06,421 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:31:06,425 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=21.8.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:42, 58%% done, 11:11:00 remaining.\nCompleted time 11:11:06. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:31:06,428 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:31:06,450 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:31:06,451 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:31:06,452 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:31:08,880 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:31:09,893 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:09,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:09,964 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.4}
2019-11-27 16:31:10,000 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:10,033 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.859, u'old': 22.4}
2019-11-27 16:31:11,905 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.459, u'old': 21.859}
2019-11-27 16:31:12,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.459}
2019-11-27 16:31:15,966 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:16,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:16,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:18,381 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:19,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:22,346 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:22,410 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:22,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:22,843 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:22,913 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:23,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:23,958 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.108, u'old': 22.6}
2019-11-27 16:31:26,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.708, u'old': 22.108}
2019-11-27 16:31:27,583 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:27,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.708}
2019-11-27 16:31:29,779 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:31:30,499 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:30,676 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:32,891 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:32,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:33,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:36,544 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:36,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:37,634 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:37,742 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:38,712 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:38,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:38,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.356, u'old': 22.8}
2019-11-27 16:31:41,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.956, u'old': 22.356}
2019-11-27 16:31:42,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 22.956}
2019-11-27 16:31:45,167 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:45,232 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:45,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:47,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:48,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:51,202 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:51,265 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:51,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:52,400 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:52,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:53,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:53,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.0}
2019-11-27 16:31:53,769 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:53,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:31:54,942 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:55,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:31:59,076 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:59,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:59,222 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:32:00,409 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:32:00,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:32:00,635 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.604, u'old': 23.2}
2019-11-27 16:32:03,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.204, u'old': 22.604}
2019-11-27 16:32:04,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:04,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.204}
2019-11-27 16:32:07,161 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:07,297 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:09,532 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:09,584 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:10,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:13,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:13,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:14,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:14,584 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:14,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:15,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:15,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.852, u'old': 23.4}
2019-11-27 16:32:18,371 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.452, u'old': 22.852}
2019-11-27 16:32:19,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.452}
2019-11-27 16:32:22,218 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:22,289 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:22,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:24,756 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:25,660 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:28,312 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:28,370 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:28,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:29,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:29,891 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:31,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:32:31,235 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:31,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.1, u'old': 23.6}
2019-11-27 16:32:33,836 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:33,893 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.7, u'old': 23.1}
2019-11-27 16:32:34,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.7}
2019-11-27 16:32:37,555 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:37,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:40,020 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:40,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:40,992 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:44,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:44,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:45,870 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:45,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:45,991 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.8}
2019-11-27 16:32:46,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:46,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.9}
2019-11-27 16:32:47,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:47,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.9}
2019-11-27 16:32:52,886 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:52,935 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:53,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 23.9}
2019-11-27 16:32:55,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:32:56,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 24.0}
2019-11-27 16:33:01,730 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:33:02,118 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:02,143 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:33:02,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 24.0}
2019-11-27 16:33:03,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:33:03,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.0}
2019-11-27 16:33:04,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:04,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.1}
2019-11-27 16:33:04,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:04,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.1}
2019-11-27 16:33:10,751 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:10,814 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:11,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.1}
2019-11-27 16:33:14,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:15,318 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:17,242 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:17,305 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:18,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:22,057 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:22,103 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:23,583 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:23,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:23,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.7, u'old': 24.2}
2019-11-27 16:33:29,410 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:29,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 23.7}
2019-11-27 16:33:30,226 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.3}
2019-11-27 16:33:32,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:33:33,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:33,968 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:35,947 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:36,004 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:36,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:40,711 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:40,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:42,141 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:42,199 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:42,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 24.4}
2019-11-27 16:33:45,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 23.9}
2019-11-27 16:33:46,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 24.5}
2019-11-27 16:33:48,275 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:48,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 23.9}
2019-11-27 16:33:49,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.5}
2019-11-27 16:33:52,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:52,824 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:33:54,795 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:54,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:55,835 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:33:59,450 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:59,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:34:00,979 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:01,042 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:34:01,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.6}
2019-11-27 16:34:01,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:01,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.7}
2019-11-27 16:34:02,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:02,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.7}
2019-11-27 16:34:02,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:34:06,096 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:06,160 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:06,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.7}
2019-11-27 16:34:09,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:09,946 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=24.80 old_z=24.20 last_z=24.80 notification_height=3.00 notification_time=5
2019-11-27 16:34:09,951 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 71.76268732593608, 'printTimeLeftOrigin': 'estimate', 'printTime': 1726, 'printTimeLeft': 480, 'filepos': 259735L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:34:09,953 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:34:09,957 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 71.76268732593608, 'printTimeLeftOrigin': 'estimate', 'printTime': 1726, 'printTimeLeft': 480, 'filepos': 259735L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 24.8, u'old': 24.2}, 'time_left': u'00:08:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 71, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:09', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:28:46', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 24.8, 'e2_temp': 210.0}
2019-11-27 16:34:09,961 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=24.8.
Bed 59.9/60.0, Extruder 210.0/210.0.
00:28:46, 71%% done, 00:08:00 remaining.
Completed time 16:42:09.
2019-11-27 16:34:09,964 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:34:09,966 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=24.8.\nBed 59.9/60.0, Extruder 210.0/210.0.\n11:11:46, 71%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:34:09,968 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:34:10,053 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:34:10,055 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:34:10,056 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:34:12,755 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:34:13,814 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:13,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:13,853 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=24.20 old_z=24.80 last_z=24.20 notification_height=3.00 notification_time=5
2019-11-27 16:34:13,859 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 71.89116307855532, 'printTimeLeftOrigin': 'estimate', 'printTime': 1730, 'printTimeLeft': 480, 'filepos': 260200L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:34:13,861 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:34:13,866 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 71.89116307855532, 'printTimeLeftOrigin': 'estimate', 'printTime': 1730, 'printTimeLeft': 480, 'filepos': 260200L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 24.2, u'old': 24.8}, 'time_left': u'00:08:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 71, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:13', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:28:50', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 24.2, 'e2_temp': 209.9}
2019-11-27 16:34:13,869 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=24.2.
Bed 60.0/60.0, Extruder 209.9/210.0.
00:28:50, 71%% done, 00:08:00 remaining.
Completed time 16:42:13.
2019-11-27 16:34:13,871 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:34:13,874 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=24.2.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:50, 71%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:34:13,877 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:34:13,904 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:34:13,906 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:34:13,907 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:34:16,453 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:34:17,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:17,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:17,678 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:17,718 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:18,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:18,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.8}
2019-11-27 16:34:18,898 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:18,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:18,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.9}
2019-11-27 16:34:19,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:19,877 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.9}
2019-11-27 16:34:23,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:24,316 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:24,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 24.9}
2019-11-27 16:34:27,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:28,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:30,103 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:30,170 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:31,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:33,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:34:34,691 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:34,771 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:35,982 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:36,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:36,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 25.0}
2019-11-27 16:34:42,957 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:43,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 24.5}
2019-11-27 16:34:43,618 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 25.1}
2019-11-27 16:34:47,068 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 24.5}
2019-11-27 16:34:47,185 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.1}
2019-11-27 16:34:47,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:47,987 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:48,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:49,372 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:50,408 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:54,528 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:54,589 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:54,652 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:55,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:55,865 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 25.2}
2019-11-27 16:34:56,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 24.7}
2019-11-27 16:34:56,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 25.3}
2019-11-27 16:34:57,568 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:35:03,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:03,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 24.7}
2019-11-27 16:35:03,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.3}
2019-11-27 16:35:04,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:35:06,182 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:06,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:13,171 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:13,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:13,253 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:15,011 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:15,141 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:15,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:15,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.4}
2019-11-27 16:35:16,235 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:16,343 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.5}
2019-11-27 16:35:20,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:20,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:21,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.5}
2019-11-27 16:35:23,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:23,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.5}
2019-11-27 16:35:26,201 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:26,273 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:26,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:28,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:29,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:33,778 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:33,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:33,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:34,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:34,889 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:34,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:35:36,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:36,441 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=25.60 old_z=25.00 last_z=24.20 notification_height=3.00 notification_time=5
2019-11-27 16:35:36,451 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 77.64411387648646, 'printTimeLeftOrigin': 'estimate', 'printTime': 1813, 'printTimeLeft': 360, 'filepos': 281022L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 25.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:35:36,454 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:35:36,471 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 77.64411387648646, 'printTimeLeftOrigin': 'estimate', 'printTime': 1813, 'printTimeLeft': 360, 'filepos': 281022L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 25.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 25.6, u'old': 25.0}, 'time_left': u'00:06:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 77, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:30:13', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 25.6, 'e2_temp': 209.8}
2019-11-27 16:35:36,474 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=25.6.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:30:13, 77%% done, 00:06:00 remaining.
Completed time 16:41:36.
2019-11-27 16:35:36,477 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:35:36,480 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=25.6.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:13, 77%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:35:36,483 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:35:36,547 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:35:36,549 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:35:36,551 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:35:39,283 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:35:40,307 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:40,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 25.6}
2019-11-27 16:35:46,581 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:46,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 25.1}
2019-11-27 16:35:47,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.7}
2019-11-27 16:35:48,865 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:49,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:51,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:52,075 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:52,129 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:56,751 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:56,852 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:58,354 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:58,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:58,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:59,373 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:59,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 25.8}
2019-11-27 16:35:59,590 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 25.3}
2019-11-27 16:35:59,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 25.9}
2019-11-27 16:36:05,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:36:09,615 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:09,682 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 25.3}
2019-11-27 16:36:10,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 25.9}
2019-11-27 16:36:14,482 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:15,383 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:15,437 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:17,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:18,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:23,911 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:23,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:24,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:26,075 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:26,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 26.0}
2019-11-27 16:36:26,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 25.5}
2019-11-27 16:36:26,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 26.1}
2019-11-27 16:36:34,945 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:35,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 25.5}
2019-11-27 16:36:35,967 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.1}
2019-11-27 16:36:36,132 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:36:42,052 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:42,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:42,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:47,689 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:47,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:47,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:49,693 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:49,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:51,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:51,930 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 26.2}
2019-11-27 16:36:57,982 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:58,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.3, u'old': 25.7}
2019-11-27 16:36:58,995 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 26.3}
2019-11-27 16:37:05,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:05,177 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.3, u'old': 25.7}
2019-11-27 16:37:05,335 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.3}
2019-11-27 16:37:06,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:06,324 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:06,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:37:09,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:09,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:12,749 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:12,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:12,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:15,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:15,266 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:17,554 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:17,603 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 26.4}
2019-11-27 16:37:19,027 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:19,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.5, u'old': 25.9}
2019-11-27 16:37:19,213 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 26.5}
2019-11-27 16:37:23,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.5, u'old': 25.9}
2019-11-27 16:37:23,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.5}
2019-11-27 16:37:24,392 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:24,455 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:25,747 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:30,036 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:30,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:30,113 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:32,359 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:32,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:34,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:34,713 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 26.6}
2019-11-27 16:37:34,972 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.7, u'old': 26.1}
2019-11-27 16:37:35,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 26.7}
2019-11-27 16:37:37,359 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:37,442 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.7, u'old': 26.1}
2019-11-27 16:37:37,453 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:37:37,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.7}
2019-11-27 16:37:38,879 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:40,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:46,777 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:46,831 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:46,948 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:48,980 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:49,037 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:53,993 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:54,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:54,241 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 26.8}
2019-11-27 16:37:54,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:37:54,766 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:37:56,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:37:58,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:02,492 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:02,563 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:02,626 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:04,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:04,146 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:08,055 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:38:15,179 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:15,244 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:15,485 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.0}
2019-11-27 16:38:16,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:16,192 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=27.20 old_z=26.60 last_z=27.20 notification_height=3.00 notification_time=5
2019-11-27 16:38:16,206 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 88.56400026524027, 'printTimeLeftOrigin': 'estimate', 'printTime': 1972, 'printTimeLeft': 240, 'filepos': 320545L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 27.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:38:16,208 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:38:16,217 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 88.56400026524027, 'printTimeLeftOrigin': 'estimate', 'printTime': 1972, 'printTimeLeft': 240, 'filepos': 320545L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 27.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 27.2, u'old': 26.6}, 'time_left': u'00:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 88, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:16', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:32:52', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 27.2, 'e2_temp': 210.2}
2019-11-27 16:38:16,226 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=27.2.
Bed 60.1/60.0, Extruder 210.2/210.0.
00:32:52, 88%% done, 00:04:00 remaining.
Completed time 16:42:16.
2019-11-27 16:38:16,229 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:38:16,232 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=27.2.\nBed 60.1/60.0, Extruder 210.2/210.0.\n11:11:52, 88%% done, 11:11:00 remaining.\nCompleted time 11:11:16. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:38:16,235 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:38:16,323 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:38:16,324 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:38:16,326 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:38:18,915 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:38:19,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:19,974 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=26.60 old_z=27.20 last_z=26.60 notification_height=3.00 notification_time=5
2019-11-27 16:38:19,981 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 88.70960611820874, 'printTimeLeftOrigin': 'estimate', 'printTime': 1976, 'printTimeLeft': 240, 'filepos': 321072L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 26.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:38:19,982 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:38:19,988 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 88.70960611820874, 'printTimeLeftOrigin': 'estimate', 'printTime': 1976, 'printTimeLeft': 240, 'filepos': 321072L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 26.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 26.6, u'old': 27.2}, 'time_left': u'00:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 88, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:19', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:32:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 26.6, 'e2_temp': 210.2}
2019-11-27 16:38:19,991 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=26.6.
Bed 60.1/60.0, Extruder 210.2/210.0.
00:32:56, 88%% done, 00:04:00 remaining.
Completed time 16:42:19.
2019-11-27 16:38:19,993 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:38:19,996 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=26.6.\nBed 60.1/60.0, Extruder 210.2/210.0.\n11:11:56, 88%% done, 11:11:00 remaining.\nCompleted time 11:11:19. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:38:19,998 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:38:20,034 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:38:20,035 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:38:20,037 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:38:22,622 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:38:23,645 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:23,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:23,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:34,951 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:35,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:35,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:37,489 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:37,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.2}
2019-11-27 16:38:37,824 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:37,876 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:38,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:38:45,977 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:46,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:46,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:46,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:46,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:57,644 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:57,704 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:57,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.4}
2019-11-27 16:38:58,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:38:58,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.6}
2019-11-27 16:39:07,580 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:07,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:39:07,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.6}
2019-11-27 16:39:09,455 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:39:11,827 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:39:11,914 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.6}
2019-11-27 16:39:12,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:12,407 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.8}
2019-11-27 16:39:20,598 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:20,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:20,725 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.8}
2019-11-27 16:39:31,733 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:31,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:31,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 27.8}
2019-11-27 16:39:32,650 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 27.4}
2019-11-27 16:39:32,714 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 28.0}
2019-11-27 16:39:40,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:39:52,829 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:52,887 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 27.4}
2019-11-27 16:39:53,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 28.0}
2019-11-27 16:39:53,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.2, u'old': 27.6}
2019-11-27 16:39:53,873 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 28.2}
2019-11-27 16:40:10,749 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:40:13,960 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:14,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.2, u'old': 27.6}
2019-11-27 16:40:14,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 28.2}
2019-11-27 16:40:14,906 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.4, u'old': 27.8}
2019-11-27 16:40:15,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 28.4}
2019-11-27 16:40:35,133 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:35,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.4, u'old': 27.8}
2019-11-27 16:40:35,368 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 28.4}
2019-11-27 16:40:36,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.6, u'old': 28.0}
2019-11-27 16:40:36,188 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 28.6}
2019-11-27 16:40:41,479 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:40:56,658 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:56,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.6, u'old': 28.0}
2019-11-27 16:40:56,750 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=28.60 old_z=28.00 last_z=26.60 notification_height=3.00 notification_time=5
2019-11-27 16:40:56,761 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 97.32577030193184, 'printTimeLeftOrigin': 'estimate', 'printTime': 2133, 'printTimeLeft': 60, 'filepos': 352257L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 28.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:40:56,763 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:40:56,771 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 97.32577030193184, 'printTimeLeftOrigin': 'estimate', 'printTime': 2133, 'printTimeLeft': 60, 'filepos': 352257L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 28.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 28.6, u'old': 28.0}, 'time_left': u'00:01:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 97, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:56', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:33', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 28.6, 'e2_temp': 209.8}
2019-11-27 16:40:56,774 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=28.6.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:35:33, 97%% done, 00:01:00 remaining.
Completed time 16:41:56.
2019-11-27 16:40:56,776 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:40:56,780 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=28.6.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:33, 97%% done, 11:11:00 remaining.\nCompleted time 11:11:56. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:40:56,783 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:40:56,823 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:40:56,825 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:40:56,826 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:40:59,500 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:41:12,122 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:41:16,372 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:41:16,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 58.6, u'old': 28.6}
2019-11-27 16:41:19,335 - octoprint.util.comm - INFO - Finished in 2155.967 s.
2019-11-27 16:41:19,343 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Finishing"
2019-11-27 16:41:19,411 - octoprint.printer.standard.job - INFO - Print job done - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh
2019-11-27 16:41:19,571 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-11-27 16:41:19,594 - octoprint.plugins.telegram - DEBUG - Got an event: PrintDone Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'time': 2156.041444578208, u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}
2019-11-27 16:41:19,616 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 2156, 'printTimeLeft': 0, 'filepos': 361936L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 58.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:41:19,626 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.7, u'target': 0.0, u'offset': 0}}
2019-11-27 16:41:19,661 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:41:19,701 - octoprint.plugins.telegram - INFO - An Exception in get final time : unsupported type for timedelta seconds component: unicode
2019-11-27 16:41:19,720 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintDone', 'status': {u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 2156, 'printTimeLeft': 0, 'filepos': 361936L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 58.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 211.7, 'payload': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'time': 2156.041444578208, u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'time_left': u'00:00:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'delay': 5, 'with_gif': False, 'with_image': True, 'event': u'PrintDone'}, 'percent': 100, 'bed_temp': 60.2, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.7, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': '', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 58.6, 'e2_temp': 211.7}
2019-11-27 16:41:19,728 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Finished printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode.
2019-11-27 16:41:19,731 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintDone
2019-11-27 16:41:20,225 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': u'local', u'throttled_mask': 327680, u'elapsed': 2156, 'file': '9abac95ac19612db2adaea14fc45f07071903bb4', u'throttled_now': False, u'throttled_past': True}
2019-11-27 16:41:24,783 - octoprint.plugins.telegram - INFO - Sending a message: Finished printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:41:24,786 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:41:24,845 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:41:24,848 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:41:24,851 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:41:27,777 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:41:42,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:42:13,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:42:44,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:02,975 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:43:14,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:26,077 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 109826}
2019-11-27 16:43:45,466 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:50,781 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:43:51,054 - octoprint.server.util.flask - INFO - Passively logging in user None from ::ffff:192.168.62.170
2019-11-27 16:44:06,045 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:44:08,566 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:44:16,140 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:44:46,857 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:44:48,885 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.124
2019-11-27 16:45:17,544 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:45:48,206 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:45:51,440 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-11-27 16:45:51,688 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:45:51,981 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:45:54,242 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:46:18,867 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:46:49,486 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:47:20,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:47:50,701 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:48:21,324 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:48:51,954 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:49:22,582 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:49:53,236 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:50:23,891 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:50:54,508 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:51:25,113 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:51:55,748 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:52:26,372 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:52:56,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:53:27,614 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:53:58,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:54:28,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:54:59,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:55:30,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:56:00,735 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:56:31,380 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:57:02,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:57:32,670 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:58:02,979 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:58:03,313 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:58:26,064 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 110726}
2019-11-27 16:58:33,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:59:04,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:59:35,269 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:00:05,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:00:36,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:01:07,184 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:01:37,797 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:02:08,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:02:39,055 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:03:09,687 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:03:40,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:04:11,268 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:04:41,903 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:05:12,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:05:43,188 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:06:13,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:06:44,445 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:07:09,100 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-11-27 17:07:09,128 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-11-27 17:07:15,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
|
AttributeError
|
def on_print_resumed(self, event, payload):
"""
Override this to perform additional actions upon the pausing of a print job.
"""
if not self._in_timelapse:
self.start_timelapse(payload["name"])
|
def on_print_resumed(self, event, payload):
"""
Override this to perform additional actions upon the pausing of a print job.
"""
if not self._in_timelapse:
self.start_timelapse(payload["file"])
|
https://github.com/OctoPrint/OctoPrint/issues/3354
|
2019-11-27 10:13:02,875 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:13:02,882 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-11-27 10:13:02,883 - octoprint.server - INFO - OctoPrint 1.4.0rc1
2019-11-27 10:13:02,889 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| M73 ETA Override (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Octoslack (1.9.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Prusa Mesh Leveling (0.3.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Telegram Notifications (1.5.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_telegram
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2019-11-27 10:13:02,915 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917016576
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-11-27 10:13:02,916 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-11-27 10:13:05,965 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:13:25,005 - octoprint.plugins.tracking - INFO - Sent tracking event pong, payload: {'plugins': u'telegram:1.5.0,prusameshmap:0.3.0,m73etaoverride:1.0.1,firmwareupdater:1.6.1,octoslack:1.9.1'}
2019-11-27 10:13:25,845 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 86426}
2019-11-27 10:13:36,600 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:14:07,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:14:37,863 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:15:08,528 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:15:39,186 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:16:09,814 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:16:40,423 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:17:11,072 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:17:41,708 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:18:12,330 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:18:42,990 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:19:13,652 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:19:44,302 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:20:14,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:20:45,546 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:21:16,178 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:21:46,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:22:17,433 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:22:48,088 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:23:18,716 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:23:49,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:24:20,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:24:50,728 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:25:21,360 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:25:52,004 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:26:22,631 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:26:53,262 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:27:23,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:27:54,509 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:28:02,879 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:28:25,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:28:26,432 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 87326}
2019-11-27 10:28:55,828 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:29:26,474 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:29:57,089 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:30:27,713 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:30:58,338 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:31:28,978 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:31:59,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:32:30,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:33:00,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:33:31,506 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:34:02,141 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:34:32,775 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:35:03,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:35:34,012 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:36:04,639 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:36:35,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:37:05,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:37:36,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:38:07,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:38:37,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:39:08,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:39:39,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:40:09,673 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:40:40,288 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:41:10,898 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:41:41,551 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:42:12,222 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:42:42,876 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:43:02,882 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:43:13,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:43:25,869 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 88226}
2019-11-27 10:43:44,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:44:14,777 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:44:45,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:45:16,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:45:46,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:46:17,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:46:47,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:47:18,552 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:47:49,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:48:19,818 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:48:50,488 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:49:21,118 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:49:51,741 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:50:22,378 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:50:53,048 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:51:23,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:51:54,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:52:24,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:52:55,574 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:53:26,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:53:56,819 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:54:27,449 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:54:58,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:55:28,691 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:55:59,332 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:56:29,970 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:57:00,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:57:31,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:58:01,882 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:58:02,886 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:58:25,840 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 89126}
2019-11-27 10:58:32,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:59:03,139 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:59:33,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:00:04,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:00:35,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:01:05,696 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:01:36,322 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:02:06,953 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:02:37,607 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:03:08,239 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:03:38,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:04:09,510 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:04:40,131 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:05:10,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:05:41,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:06:12,078 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:06:42,758 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:07:13,392 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:07:44,044 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:08:14,689 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:08:46,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:09:17,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:09:47,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:10:18,306 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:10:48,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:11:19,582 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:11:50,229 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:12:20,885 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:12:51,525 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:13:02,890 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:13:22,151 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:13:25,895 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 90026}
2019-11-27 11:13:52,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:14:23,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:14:54,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:15:24,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:15:55,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:16:25,915 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:16:56,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:17:27,187 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:17:57,831 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:18:28,455 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:18:59,144 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:19:29,832 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:20:00,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:20:31,113 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:21:01,742 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:21:32,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:22:02,989 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:22:33,621 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:23:04,274 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:23:34,910 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:24:05,588 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:24:36,249 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:25:06,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:25:37,521 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:26:08,174 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:26:38,847 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:27:09,486 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:27:40,111 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:28:02,894 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:28:10,754 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:28:25,893 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 90926}
2019-11-27 11:28:41,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:29:12,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:29:42,649 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:30:13,275 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:30:43,911 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:31:14,560 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:31:45,224 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:32:15,880 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:32:46,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:33:17,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:33:47,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:34:18,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:34:49,042 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:35:19,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:35:50,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:36:20,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:36:51,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:37:22,263 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:37:52,916 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:38:23,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:38:54,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:39:24,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:39:55,483 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:40:26,099 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:40:56,725 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:41:27,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:41:58,077 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:42:28,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:42:59,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:43:02,898 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:43:25,912 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 91826}
2019-11-27 11:43:30,091 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:44:00,714 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:44:31,375 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:45:02,029 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:45:32,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:46:03,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:46:33,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:47:04,642 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:47:35,294 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:48:05,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:48:36,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:49:07,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:49:37,860 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:50:08,538 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:50:39,163 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:51:09,768 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:51:40,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:52:11,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:52:41,684 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:53:12,367 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:53:42,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:54:13,622 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:54:44,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:55:14,879 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:55:45,515 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:56:16,167 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:56:46,773 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:57:17,414 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:57:48,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:58:02,902 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:58:18,647 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:58:25,903 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 92726}
2019-11-27 11:58:49,260 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:59:19,895 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:59:50,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:00:21,171 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:00:51,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:01:22,498 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:01:53,134 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:02:23,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:02:54,416 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:03:25,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:03:55,707 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:04:26,332 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:04:57,005 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:05:27,646 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:05:58,314 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:06:28,926 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:06:59,570 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:07:30,216 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:08:00,862 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:08:31,495 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:09:02,126 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:09:32,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:10:03,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:10:34,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:11:04,698 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:11:35,368 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:12:06,014 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:12:36,640 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:13:02,906 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:13:07,265 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:13:25,937 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 93626}
2019-11-27 12:13:37,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:14:08,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:14:39,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:15:09,862 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:15:40,469 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:16:11,095 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:16:41,718 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:17:12,386 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:17:43,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:18:13,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:18:44,292 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:19:14,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:19:45,533 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:20:16,170 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:20:46,784 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:21:17,407 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:21:48,039 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:22:18,684 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:22:49,335 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:23:19,993 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:23:50,626 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:24:21,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:24:51,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:25:22,545 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:25:53,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:26:23,789 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:26:54,412 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:27:25,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:27:55,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:28:02,910 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:28:25,874 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 94526}
2019-11-27 12:28:26,273 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:28:56,937 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:29:27,632 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:29:58,238 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:30:28,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:30:59,481 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:31:30,115 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:32:00,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:32:31,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:33:02,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:33:32,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:34:03,307 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:34:33,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:35:04,588 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:35:35,223 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:36:05,855 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:36:36,528 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:37:07,162 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:37:37,818 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:38:08,450 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:38:39,100 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:39:09,733 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:39:40,352 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:40:10,964 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:40:41,593 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:41:12,207 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:41:42,833 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:42:13,456 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:42:44,089 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:43:02,914 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:43:14,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:43:25,925 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 95426}
2019-11-27 12:43:45,406 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:44:16,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:44:46,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:45:17,331 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:45:47,945 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:46:18,570 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:46:49,200 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:47:19,812 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:47:50,436 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:48:21,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:48:51,700 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:49:22,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:49:53,032 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:50:23,654 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:50:54,296 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:51:24,951 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:51:55,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:52:26,242 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:52:56,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:53:27,517 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:53:58,148 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:54:28,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:54:59,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:55:30,069 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:56:00,685 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:56:31,319 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:57:01,983 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:57:32,600 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:58:02,918 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:58:03,237 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:58:25,958 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 96326}
2019-11-27 12:58:33,874 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:59:04,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:59:35,157 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:00:05,788 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:00:36,424 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:01:07,085 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:01:37,706 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:02:08,358 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:02:38,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:03:09,614 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:03:40,301 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:04:10,939 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:04:41,563 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:05:12,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:05:42,853 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:06:13,489 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:06:44,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:07:14,769 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:07:45,389 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:08:16,042 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:08:46,669 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:09:17,326 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:09:47,954 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:10:18,592 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:10:49,211 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:11:19,840 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:11:50,451 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:12:21,065 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:12:51,691 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:13:02,921 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:13:22,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:13:26,168 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 97226}
2019-11-27 13:13:52,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:14:23,624 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:14:54,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:15:24,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:15:55,519 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:16:26,155 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:16:56,817 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:17:27,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:17:58,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:18:28,699 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:18:59,357 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:19:29,987 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:20:00,653 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:20:31,283 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:21:01,910 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:21:32,547 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:22:03,204 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:22:33,827 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:23:04,469 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:23:35,091 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:24:05,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:24:36,336 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:25:06,952 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:25:37,577 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:26:08,225 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:26:38,884 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:27:09,502 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:27:40,126 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:28:02,925 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:28:10,753 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:28:25,964 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 98126}
2019-11-27 13:28:41,375 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:29:12,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:29:42,629 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:30:13,271 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:30:43,897 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:31:14,534 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:31:45,150 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:32:15,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:32:46,418 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:33:17,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:33:47,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:34:18,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:34:48,917 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:35:19,541 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:35:50,162 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:36:20,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:36:51,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:37:22,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:37:52,682 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:38:23,305 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:38:53,930 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:39:24,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:39:55,182 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:40:25,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:40:56,403 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:41:27,020 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:41:57,650 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:42:28,378 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:42:59,008 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:43:02,929 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:43:25,927 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 99026}
2019-11-27 13:43:29,644 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:44:00,269 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:44:30,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:45:01,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:45:32,241 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:46:02,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:46:33,508 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:47:04,144 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:47:34,816 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:48:05,459 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:48:36,202 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:49:06,837 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:49:37,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:50:08,082 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:50:38,801 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:51:09,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:51:40,049 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:52:10,676 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:52:41,292 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:53:11,992 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:53:42,632 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:54:13,346 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:54:43,992 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:55:14,610 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:55:45,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:56:15,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:56:46,527 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:57:17,156 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:57:47,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:58:02,934 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:58:18,515 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:58:25,997 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 99926}
2019-11-27 13:58:49,147 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:59:19,788 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:59:50,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:00:21,026 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:00:51,645 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:01:22,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:01:52,985 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:02:23,601 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:02:54,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:03:24,912 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:03:55,550 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:04:26,199 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:04:56,844 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:05:27,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:05:58,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:06:28,747 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:06:59,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:07:30,003 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:08:00,720 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:08:31,350 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:09:01,980 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:09:32,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:10:03,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:10:33,899 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:11:04,542 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:11:35,192 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:12:05,841 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:12:36,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:13:02,937 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:13:07,099 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:13:25,996 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 100826}
2019-11-27 14:13:37,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:14:08,353 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:14:38,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:15:09,599 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:15:40,231 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:16:10,853 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:16:41,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:17:12,146 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:17:42,765 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:18:13,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:18:43,996 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:19:14,625 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:19:45,267 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:20:15,871 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:20:46,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:21:17,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:21:47,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:22:18,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:22:49,047 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:23:19,686 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:23:50,340 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:24:20,962 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:24:51,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:25:22,219 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:25:52,851 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:26:23,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:26:54,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:27:24,711 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:27:55,359 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:28:02,940 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:28:26,002 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:28:26,018 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 101726}
2019-11-27 14:28:56,608 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:29:27,271 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:29:57,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:30:28,513 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:30:59,155 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:31:29,822 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:32:00,450 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:32:31,086 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:33:01,703 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:33:32,337 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:34:02,972 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:34:33,623 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:35:04,221 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:35:34,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:36:05,531 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:36:36,160 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:37:06,811 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:37:37,473 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:38:08,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:38:38,759 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:39:09,391 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:39:40,029 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:40:10,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:40:41,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:41:11,953 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:41:42,580 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:42:13,216 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:42:43,840 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:43:02,944 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:43:14,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:43:25,984 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 102626}
2019-11-27 14:43:45,115 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:44:15,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:44:46,411 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:45:17,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:45:47,692 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:46:18,349 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:46:48,956 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:47:19,610 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:47:50,212 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:48:20,843 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:48:51,502 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:49:22,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:49:52,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:50:23,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:50:54,032 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:51:24,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:51:55,287 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:52:25,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:52:56,592 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:53:27,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:53:57,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:54:28,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:54:59,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:55:29,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:56:00,424 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:56:31,053 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:57:01,698 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:57:32,340 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:58:02,949 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:58:02,976 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:58:26,022 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 103526}
2019-11-27 14:58:33,620 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:59:04,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:59:34,906 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:00:05,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:00:36,148 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:01:06,801 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:01:37,491 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:02:08,146 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:02:38,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:03:09,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:03:40,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:04:10,678 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:04:41,290 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:05:11,924 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:05:42,597 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:06:13,235 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:06:43,846 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:07:14,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:07:45,138 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:08:15,759 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:08:46,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:09:17,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:09:47,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:10:18,304 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:10:48,937 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:11:19,612 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:11:50,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:12:20,929 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:12:51,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:13:02,953 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:13:22,235 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:13:26,008 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 104426}
2019-11-27 15:13:52,888 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:14:23,487 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:14:54,102 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:15:24,775 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:15:55,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:16:26,092 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:16:56,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:17:27,321 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:17:57,959 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:18:28,579 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:18:59,182 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:19:29,825 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:20:00,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:20:31,090 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:21:01,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:21:32,334 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:22:02,941 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:22:33,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:23:04,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:23:34,847 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:24:05,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:24:36,127 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:25:06,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:25:37,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:26:08,097 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:26:38,727 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:27:09,366 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:27:40,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:28:02,956 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:28:10,634 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:28:25,980 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 105326}
2019-11-27 15:28:41,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:29:11,936 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:29:42,559 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:30:13,190 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:30:43,810 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:31:14,449 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:31:45,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:32:15,703 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:32:46,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:33:16,982 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:33:47,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:34:18,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:34:48,909 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:35:19,556 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:35:50,206 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:36:20,823 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:36:51,436 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:37:22,049 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:37:52,676 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:38:23,307 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:38:53,933 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:39:24,540 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:39:55,161 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:40:25,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:40:56,408 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:41:27,066 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:41:57,706 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:42:28,317 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:42:58,985 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:43:02,960 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:43:27,179 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 106226}
2019-11-27 15:43:29,619 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:44:00,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:44:30,879 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:45:01,498 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:45:32,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:46:02,767 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:46:33,377 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:47:04,018 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:47:34,628 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:48:05,265 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:48:35,918 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:49:06,529 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:49:37,179 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:50:07,770 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:50:38,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:51:09,051 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:51:39,700 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:52:10,304 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:52:40,928 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:53:11,579 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:53:42,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:54:12,892 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:54:43,539 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:55:14,201 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:55:44,819 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:56:15,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:56:46,064 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:57:16,668 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:57:47,274 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:58:02,964 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:58:17,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:58:26,013 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 107126}
2019-11-27 15:58:48,526 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:59:19,154 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:59:49,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:00:20,425 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:00:51,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:01:21,664 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:01:38,380 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:01:38,751 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:01:41,047 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.64s
2019-11-27 16:01:42,062 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.71s
2019-11-27 16:01:44,048 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 1.1s
2019-11-27 16:01:44,802 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.61s
2019-11-27 16:01:45,637 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.68s
2019-11-27 16:01:47,355 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-11-27 16:01:49,354 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-11-27 16:01:50,452 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-11-27 16:01:50,651 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:01:52,279 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:02:22,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:02:53,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:24,143 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:45,243 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-11-27 16:03:45,264 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-11-27 16:03:45,287 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:54,826 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:57,456 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,665 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,672 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-11-27 16:03:59,687 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-11-27 16:03:59,761 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,861 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.8.1 based on Marlin"
2019-11-27 16:03:59,926 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-11-27 16:03:59,937 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-11-27 16:03:59,990 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:04:01,610 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': u'Prusa-Firmware 3.8.1 based on Marlin'}
2019-11-27 16:04:24,308 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-11-27 16:04:24,337 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-11-27 16:04:25,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:04:56,077 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:05:11,486 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode
2019-11-27 16:05:11,494 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode
2019-11-27 16:05:16,357 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode finished, needed 4.87s
2019-11-27 16:05:17,654 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-11-27 16:05:23,381 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-11-27 16:05:23,445 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-11-27 16:05:23,458 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:05:23,460 - octoprint.events - ERROR - Got an exception while sending event PrintStarted (Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}) to <bound method ZTimelapse.on_print_started of <octoprint.timelapse.ZTimelapse object at 0x703c8250>>
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/events.py", line 187, in _work
listener(event, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/timelapse.py", line 468, in on_print_started
self.start_timelapse(payload["file"])
KeyError: u'file'
2019-11-27 16:05:23,472 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-11-27 16:05:23,774 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:05:23,777 - octoprint.plugins.telegram - DEBUG - Got an event: PrintStarted Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}
2019-11-27 16:05:23,812 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 0.17848459396136335, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 1980, 'filepos': 646L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:05:23,849 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 19.3, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 19.6, u'target': 0.0, u'offset': 0}}
2019-11-27 16:05:23,947 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintStarted', 'status': {u'progress': {'completion': 0.17848459396136335, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 1980, 'filepos': 646L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 19.6, 'payload': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'time_left': u'00:33:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'PrintStarted'}, 'percent': 0, 'bed_temp': 19.3, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 19.3, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 19.6, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': u'16:38:23', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:00:00', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 0.0, 'e2_temp': 19.6}
2019-11-27 16:05:23,952 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Started printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode.
2019-11-27 16:05:23,955 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintStarted
2019-11-27 16:05:23,958 - octoprint.plugins.telegram - INFO - Sending a message: Started printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:05:23,961 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:05:24,015 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:05:24,016 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:05:24,018 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:05:24,369 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': u'local', u'throttled_now': False, u'throttled_mask': 327680, 'file': '9abac95ac19612db2adaea14fc45f07071903bb4', u'throttled_past': True}
2019-11-27 16:05:26,305 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-11-27 16:05:26,537 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:05:26,690 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:05:57,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:06:03,774 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-11-27 16:06:04,768 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-11-27 16:06:27,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:06:58,601 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:07:29,226 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:07:59,838 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:08:30,129 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:30,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': None}
2019-11-27 16:08:30,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:08:41,818 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:41,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.3, u'old': 0.4}
2019-11-27 16:08:41,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.3}
2019-11-27 16:08:59,648 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:59,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 0.2}
2019-11-27 16:08:59,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.6}
2019-11-27 16:09:01,063 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:09:03,916 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:03,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:08,386 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:08,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:08,866 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:30,520 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:30,585 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:30,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:31,734 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:09:32,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:32,614 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:46,034 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:46,089 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:46,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 0.8}
2019-11-27 16:09:50,473 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:09:51,049 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:51,077 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 1.0}
2019-11-27 16:09:52,909 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:09:53,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 1.0}
2019-11-27 16:10:02,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:10:07,076 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:07,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:10:07,420 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.443, u'old': 1.0}
2019-11-27 16:10:10,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.043, u'old': 0.443}
2019-11-27 16:10:10,727 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.043}
2019-11-27 16:10:17,810 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:17,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:18,468 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.2}
2019-11-27 16:10:20,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:20,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.2}
2019-11-27 16:10:33,090 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:10:34,411 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:34,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:34,474 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=1.20 old_z=0.60 last_z=0.00 notification_height=3.00 notification_time=5
2019-11-27 16:10:34,482 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 4.346072233765085, 'printTimeLeftOrigin': 'estimate', 'printTime': 311, 'printTimeLeft': 1920, 'filepos': 15730L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:10:34,486 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 208.6, u'target': 210.0, u'offset': 0}}
2019-11-27 16:10:34,494 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 4.346072233765085, 'printTimeLeftOrigin': 'estimate', 'printTime': 311, 'printTimeLeft': 1920, 'filepos': 15730L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 208.6, 'payload': {u'new': 1.2, u'old': 0.6}, 'time_left': u'00:32:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 4, 'bed_temp': 59.7, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 208.6, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:34', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:05:11', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 1.2, 'e2_temp': 208.6}
2019-11-27 16:10:34,496 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=1.2.
Bed 59.7/60.0, Extruder 208.6/210.0.
00:05:11, 4%% done, 00:32:00 remaining.
Completed time 16:42:34.
2019-11-27 16:10:34,498 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:10:34,499 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=1.2.\nBed 59.7/60.0, Extruder 208.6/210.0.\n11:11:11, 4%% done, 11:11:00 remaining.\nCompleted time 11:11:34. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:10:34,501 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:10:34,536 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:10:34,538 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:10:34,540 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:10:37,202 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:10:39,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.686, u'old': 1.2}
2019-11-27 16:10:39,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.286, u'old': 0.686}
2019-11-27 16:10:39,364 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.286}
2019-11-27 16:10:41,772 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:41,823 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-11-27 16:10:41,982 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-11-27 16:10:58,001 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:58,064 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-11-27 16:10:58,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.929, u'old': 1.4}
2019-11-27 16:11:01,093 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.529, u'old': 0.929}
2019-11-27 16:11:01,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.529}
2019-11-27 16:11:03,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:11:05,476 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:05,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:05,690 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.6}
2019-11-27 16:11:12,490 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:12,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:12,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.6}
2019-11-27 16:11:13,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:13,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.171, u'old': 1.6}
2019-11-27 16:11:15,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.771, u'old': 1.171}
2019-11-27 16:11:16,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.771}
2019-11-27 16:11:19,788 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:19,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:20,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:25,847 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:25,899 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:25,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:26,742 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:26,788 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:28,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:28,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 1.8}
2019-11-27 16:11:28,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:28,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:34,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:11:35,374 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:35,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:35,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:36,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:36,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:37,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:37,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.414, u'old': 2.0}
2019-11-27 16:11:39,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.014, u'old': 1.414}
2019-11-27 16:11:40,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.014}
2019-11-27 16:11:44,109 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:44,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:44,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:50,281 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:50,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:50,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:51,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:51,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:52,971 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:53,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.657, u'old': 2.2}
2019-11-27 16:11:55,193 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.257, u'old': 1.657}
2019-11-27 16:11:55,871 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:55,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.257}
2019-11-27 16:11:59,675 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:11:59,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:05,035 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:12:05,876 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:05,902 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:06,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:06,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:07,043 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:07,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:08,018 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:08,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:08,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.9, u'old': 2.4}
2019-11-27 16:12:11,650 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:11,705 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.5, u'old': 1.9}
2019-11-27 16:12:12,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.5}
2019-11-27 16:12:15,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:15,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:22,030 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:22,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:22,186 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:24,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:24,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:24,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:24,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.1, u'old': 2.6}
2019-11-27 16:12:27,794 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:27,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.7, u'old': 2.1}
2019-11-27 16:12:28,527 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.7}
2019-11-27 16:12:31,604 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:31,778 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.8}
2019-11-27 16:12:35,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:12:37,858 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:37,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:37,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.8}
2019-11-27 16:12:42,925 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:42,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:43,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.8}
2019-11-27 16:12:46,446 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-11-27 16:12:47,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 2.9}
2019-11-27 16:12:50,162 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:50,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 2.4}
2019-11-27 16:12:50,231 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=3.00 old_z=2.40 last_z=3.00 notification_height=3.00 notification_time=5
2019-11-27 16:12:50,242 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.850791300119358, 'printTimeLeftOrigin': 'estimate', 'printTime': 446, 'printTimeLeft': 1740, 'filepos': 50131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:12:50,246 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:12:50,254 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.850791300119358, 'printTimeLeftOrigin': 'estimate', 'printTime': 446, 'printTimeLeft': 1740, 'filepos': 50131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 3.0, u'old': 2.4}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:50', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:07:26', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 3.0, 'e2_temp': 210.1}
2019-11-27 16:12:50,259 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=3.0.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:07:26, 13%% done, 00:29:00 remaining.
Completed time 16:41:50.
2019-11-27 16:12:50,264 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:12:50,270 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=3.0.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:26, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:50. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:12:50,275 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:12:50,344 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:12:50,345 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:12:50,346 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:12:52,873 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:12:54,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 3.0}
2019-11-27 16:12:54,522 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=2.40 old_z=3.00 last_z=2.40 notification_height=3.00 notification_time=5
2019-11-27 16:12:54,533 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.94003359710004, 'printTimeLeftOrigin': 'estimate', 'printTime': 451, 'printTimeLeft': 1740, 'filepos': 50454L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:12:54,536 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:12:54,540 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.94003359710004, 'printTimeLeftOrigin': 'estimate', 'printTime': 451, 'printTimeLeft': 1740, 'filepos': 50454L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 2.4, u'old': 3.0}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:54', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:07:31', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 2.4, 'e2_temp': 210.1}
2019-11-27 16:12:54,543 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=2.4.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:07:31, 13%% done, 00:29:00 remaining.
Completed time 16:41:54.
2019-11-27 16:12:54,544 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:12:54,546 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=2.4.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:31, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:12:54,548 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:12:54,592 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:12:54,593 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:12:54,594 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:12:57,060 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:13:02,968 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:13:04,652 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:04,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 2.4}
2019-11-27 16:13:04,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.5, u'old': 3.0}
2019-11-27 16:13:06,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:13:08,469 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.1, u'old': 2.5}
2019-11-27 16:13:09,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.1}
2019-11-27 16:13:12,194 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:12,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-11-27 16:13:12,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-11-27 16:13:26,055 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 108026}
2019-11-27 16:13:26,324 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:26,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-11-27 16:13:26,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.7, u'old': 3.2}
2019-11-27 16:13:30,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 2.7}
2019-11-27 16:13:30,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 3.3}
2019-11-27 16:13:33,917 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:33,984 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 2.8}
2019-11-27 16:13:34,153 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 3.4}
2019-11-27 16:13:36,993 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:13:47,405 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:47,479 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 2.8}
2019-11-27 16:13:47,768 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.4}
2019-11-27 16:13:51,263 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-11-27 16:13:51,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 3.5}
2019-11-27 16:13:55,020 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:55,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 3.0}
2019-11-27 16:13:55,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 3.6}
2019-11-27 16:14:07,643 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:14:09,075 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:09,129 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 3.0}
2019-11-27 16:14:09,363 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.1, u'old': 3.6}
2019-11-27 16:14:12,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.7, u'old': 3.1}
2019-11-27 16:14:13,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.7}
2019-11-27 16:14:16,607 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:16,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-11-27 16:14:16,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 3.8}
2019-11-27 16:14:19,216 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.9, u'old': 3.3}
2019-11-27 16:14:20,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 3.9}
2019-11-27 16:14:23,121 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:23,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.9, u'old': 3.3}
2019-11-27 16:14:23,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 3.9}
2019-11-27 16:14:27,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 3.4}
2019-11-27 16:14:28,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.0}
2019-11-27 16:14:34,361 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:34,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-11-27 16:14:35,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-11-27 16:14:38,325 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:14:39,120 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-11-27 16:14:39,750 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:39,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 4.1}
2019-11-27 16:14:44,288 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 3.6}
2019-11-27 16:14:44,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.748, u'old': 4.2}
2019-11-27 16:14:49,542 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:49,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.348, u'old': 3.748}
2019-11-27 16:14:50,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.748, u'old': 4.348}
2019-11-27 16:14:54,558 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:54,623 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.348, u'old': 3.748}
2019-11-27 16:14:55,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.348}
2019-11-27 16:14:59,966 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:00,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-11-27 16:15:00,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-11-27 16:15:01,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-11-27 16:15:01,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.996, u'old': 4.4}
2019-11-27 16:15:08,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:15:10,164 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:10,221 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.596, u'old': 3.996}
2019-11-27 16:15:11,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.596}
2019-11-27 16:15:15,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:15,270 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:15,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.6}
2019-11-27 16:15:18,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:18,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.6}
2019-11-27 16:15:18,857 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:18,953 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.6}
2019-11-27 16:15:19,382 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:19,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.8}
2019-11-27 16:15:20,887 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:20,945 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:21,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.8}
2019-11-27 16:15:23,261 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:23,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.244, u'old': 4.8}
2019-11-27 16:15:23,871 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.844, u'old': 4.244}
2019-11-27 16:15:24,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 4.844}
2019-11-27 16:15:31,449 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:31,503 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-11-27 16:15:31,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-11-27 16:15:35,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-11-27 16:15:35,623 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.00 old_z=4.40 last_z=2.40 notification_height=3.00 notification_time=5
2019-11-27 16:15:35,633 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 20.18340259051324, 'printTimeLeftOrigin': 'estimate', 'printTime': 612, 'printTimeLeft': 1620, 'filepos': 73051L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.492, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:15:35,637 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:15:35,645 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 20.18340259051324, 'printTimeLeftOrigin': 'estimate', 'printTime': 612, 'printTimeLeft': 1620, 'filepos': 73051L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.492, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 5.0, u'old': 4.4}, 'time_left': u'00:27:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 20, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:35', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 5.0, 'e2_temp': 210.0}
2019-11-27 16:15:35,650 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.0.
Bed 59.8/60.0, Extruder 210.0/210.0.
00:10:12, 20%% done, 00:27:00 remaining.
Completed time 16:42:35.
2019-11-27 16:15:35,655 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:15:35,661 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.0.\nBed 59.8/60.0, Extruder 210.0/210.0.\n11:11:12, 20%% done, 11:11:00 remaining.\nCompleted time 11:11:35. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:15:35,665 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:15:35,693 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:15:35,694 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:15:35,695 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:15:38,285 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:15:39,638 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:15:39,752 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:39,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.492, u'old': 5.0}
2019-11-27 16:15:39,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.092, u'old': 4.492}
2019-11-27 16:15:39,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 5.092}
2019-11-27 16:15:44,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 4.6}
2019-11-27 16:15:44,326 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 5.2}
2019-11-27 16:15:48,082 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:48,158 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 4.6}
2019-11-27 16:15:48,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.741, u'old': 5.2}
2019-11-27 16:15:49,044 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.341, u'old': 4.741}
2019-11-27 16:15:50,126 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 5.341}
2019-11-27 16:16:00,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:00,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 4.8}
2019-11-27 16:16:00,164 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.40 old_z=4.80 last_z=5.40 notification_height=3.00 notification_time=5
2019-11-27 16:16:00,168 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 21.116993059546438, 'printTimeLeftOrigin': 'estimate', 'printTime': 636, 'printTimeLeft': 1560, 'filepos': 76430L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:16:00,170 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:16:00,174 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 21.116993059546438, 'printTimeLeftOrigin': 'estimate', 'printTime': 636, 'printTimeLeft': 1560, 'filepos': 76430L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 5.4, u'old': 4.8}, 'time_left': u'00:26:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 21, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:00', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:36', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 5.4, 'e2_temp': 210.0}
2019-11-27 16:16:00,180 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:10:36, 21%% done, 00:26:00 remaining.
Completed time 16:42:00.
2019-11-27 16:16:00,183 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:16:00,186 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:36, 21%% done, 11:11:00 remaining.\nCompleted time 11:11:00. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:16:00,190 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:16:00,254 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:16:00,256 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:16:00,258 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:16:02,707 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:16:04,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.989, u'old': 5.4}
2019-11-27 16:16:04,278 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=4.99 old_z=5.40 last_z=4.99 notification_height=3.00 notification_time=5
2019-11-27 16:16:04,283 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 21.30072720038902, 'printTimeLeftOrigin': 'estimate', 'printTime': 640, 'printTimeLeft': 1560, 'filepos': 77095L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:16:04,286 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:16:04,290 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 21.30072720038902, 'printTimeLeftOrigin': 'estimate', 'printTime': 640, 'printTimeLeft': 1560, 'filepos': 77095L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 4.989, u'old': 5.4}, 'time_left': u'00:26:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 21, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:04', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:40', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 4.989, 'e2_temp': 210.0}
2019-11-27 16:16:04,294 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=4.989.
Bed 59.8/60.0, Extruder 210.0/210.0.
00:10:40, 21%% done, 00:26:00 remaining.
Completed time 16:42:04.
2019-11-27 16:16:04,297 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:16:04,301 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=4.989.\nBed 59.8/60.0, Extruder 210.0/210.0.\n11:11:40, 21%% done, 11:11:00 remaining.\nCompleted time 11:11:04. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:16:04,303 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:16:04,370 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:16:04,372 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:16:04,374 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:16:06,905 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:16:08,036 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:08,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.589, u'old': 4.989}
2019-11-27 16:16:08,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.589}
2019-11-27 16:16:08,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-11-27 16:16:09,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-11-27 16:16:10,260 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:16:12,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-11-27 16:16:12,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 5.6}
2019-11-27 16:16:13,615 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:13,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 5.2}
2019-11-27 16:16:13,743 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 5.8}
2019-11-27 16:16:17,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 5.2}
2019-11-27 16:16:17,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.237, u'old': 5.8}
2019-11-27 16:16:18,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.837, u'old': 5.237}
2019-11-27 16:16:19,487 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:19,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 5.837}
2019-11-27 16:16:26,006 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:26,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 5.4}
2019-11-27 16:16:26,304 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 6.0}
2019-11-27 16:16:29,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 5.4}
2019-11-27 16:16:30,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.485, u'old': 6.0}
2019-11-27 16:16:30,923 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.085, u'old': 5.485}
2019-11-27 16:16:31,965 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:32,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.085}
2019-11-27 16:16:38,470 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:38,533 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-11-27 16:16:38,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-11-27 16:16:40,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:16:42,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-11-27 16:16:42,558 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.733, u'old': 6.2}
2019-11-27 16:16:43,402 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.333, u'old': 5.733}
2019-11-27 16:16:44,447 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:44,510 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 6.333}
2019-11-27 16:16:50,954 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:51,010 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 5.8}
2019-11-27 16:16:51,234 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 6.4}
2019-11-27 16:16:54,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 5.8}
2019-11-27 16:16:54,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.981, u'old': 6.4}
2019-11-27 16:16:55,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.581, u'old': 5.981}
2019-11-27 16:16:56,591 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:56,646 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 6.581}
2019-11-27 16:17:03,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:03,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 6.0}
2019-11-27 16:17:03,408 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 6.6}
2019-11-27 16:17:07,233 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 6.0}
2019-11-27 16:17:07,272 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.6}
2019-11-27 16:17:07,548 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-11-27 16:17:07,612 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-11-27 16:17:11,085 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:11,159 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-11-27 16:17:11,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.229, u'old': 6.8}
2019-11-27 16:17:11,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:17:11,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.829, u'old': 6.229}
2019-11-27 16:17:12,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 6.829}
2019-11-27 16:17:19,147 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:19,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 6.4}
2019-11-27 16:17:19,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 7.0}
2019-11-27 16:17:22,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 6.4}
2019-11-27 16:17:22,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.477, u'old': 7.0}
2019-11-27 16:17:23,390 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.077, u'old': 6.477}
2019-11-27 16:17:24,461 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:24,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 7.077}
2019-11-27 16:17:30,969 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:31,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 6.6}
2019-11-27 16:17:31,274 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 7.2}
2019-11-27 16:17:33,602 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:17:34,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 6.6}
2019-11-27 16:17:34,405 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.725, u'old': 7.2}
2019-11-27 16:17:35,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.325, u'old': 6.725}
2019-11-27 16:17:36,231 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:36,285 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.325}
2019-11-27 16:17:42,181 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:17:42,706 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:42,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-11-27 16:17:42,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.973, u'old': 7.4}
2019-11-27 16:17:46,553 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.573, u'old': 6.973}
2019-11-27 16:17:47,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 7.573}
2019-11-27 16:17:54,102 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:54,154 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 7.0}
2019-11-27 16:17:54,385 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 7.6}
2019-11-27 16:17:57,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 7.2}
2019-11-27 16:17:57,804 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.222, u'old': 7.8}
2019-11-27 16:18:01,325 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:01,392 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.822, u'old': 7.222}
2019-11-27 16:18:02,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 7.822}
2019-11-27 16:18:08,921 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:08,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-11-27 16:18:08,995 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=8.00 old_z=7.40 last_z=8.00 notification_height=3.00 notification_time=5
2019-11-27 16:18:09,004 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.083064409177315, 'printTimeLeftOrigin': 'estimate', 'printTime': 765, 'printTimeLeft': 1440, 'filepos': 94404L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:18:09,007 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:18:09,014 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.083064409177315, 'printTimeLeftOrigin': 'estimate', 'printTime': 765, 'printTimeLeft': 1440, 'filepos': 94404L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 8.0, u'old': 7.4}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:09', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:12:45', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 8.0, 'e2_temp': 209.8}
2019-11-27 16:18:09,017 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=8.0.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:12:45, 26%% done, 00:24:00 remaining.
Completed time 16:42:09.
2019-11-27 16:18:09,020 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:18:09,024 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=8.0.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:45, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:18:09,030 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:18:09,094 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:18:09,095 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:18:09,097 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:18:11,539 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:18:12,844 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:18:13,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-11-27 16:18:13,197 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=7.40 old_z=8.00 last_z=7.40 notification_height=3.00 notification_time=5
2019-11-27 16:18:13,204 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.345541753238145, 'printTimeLeftOrigin': 'estimate', 'printTime': 769, 'printTimeLeft': 1440, 'filepos': 95354L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.07, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:18:13,206 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:18:13,211 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.345541753238145, 'printTimeLeftOrigin': 'estimate', 'printTime': 769, 'printTimeLeft': 1440, 'filepos': 95354L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.07, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 7.4, u'old': 8.0}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:13', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:12:49', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 7.4, 'e2_temp': 210.1}
2019-11-27 16:18:13,214 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=7.4.
Bed 59.9/60.0, Extruder 210.1/210.0.
00:12:49, 26%% done, 00:24:00 remaining.
Completed time 16:42:13.
2019-11-27 16:18:13,217 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:18:13,219 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=7.4.\nBed 59.9/60.0, Extruder 210.1/210.0.\n11:11:49, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:18:13,222 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:18:13,274 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:18:13,276 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:18:13,277 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:18:15,864 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:18:17,049 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:17,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-11-27 16:18:17,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.47, u'old': 8.0}
2019-11-27 16:18:17,144 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.07, u'old': 7.47}
2019-11-27 16:18:17,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 8.07}
2019-11-27 16:18:20,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 7.6}
2019-11-27 16:18:20,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 8.2}
2019-11-27 16:18:24,183 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:24,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 7.6}
2019-11-27 16:18:24,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.718, u'old': 8.2}
2019-11-27 16:18:24,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.318, u'old': 7.718}
2019-11-27 16:18:26,047 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 8.318}
2019-11-27 16:18:32,502 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:32,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 7.8}
2019-11-27 16:18:32,781 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 8.4}
2019-11-27 16:18:36,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 7.8}
2019-11-27 16:18:36,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.966, u'old': 8.4}
2019-11-27 16:18:36,944 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.566, u'old': 7.966}
2019-11-27 16:18:37,778 - tornado.access - WARNING - 404 GET /apple-touch-icon-152x152-precomposed.png (::ffff:192.168.62.124) 19.19ms
2019-11-27 16:18:37,837 - tornado.access - WARNING - 404 GET /apple-touch-icon-152x152.png (::ffff:192.168.62.124) 9.13ms
2019-11-27 16:18:37,858 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.124
2019-11-27 16:18:38,110 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:38,135 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.566}
2019-11-27 16:18:38,178 - octoprint.server.util.flask - INFO - Passively logging in user None from ::ffff:192.168.62.124
2019-11-27 16:18:43,518 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:18:44,492 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:44,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-11-27 16:18:44,775 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.6}
2019-11-27 16:18:47,044 - octoprint.server.util.sockjs - INFO - User osh logged out, logging out on socket
2019-11-27 16:18:47,079 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.124
2019-11-27 16:18:48,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-11-27 16:18:48,703 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 8.6}
2019-11-27 16:18:49,783 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:49,830 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 8.2}
2019-11-27 16:18:49,942 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 8.8}
2019-11-27 16:18:50,899 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.124
2019-11-27 16:18:51,041 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-11-27 16:18:52,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 8.2}
2019-11-27 16:18:52,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.214, u'old': 8.8}
2019-11-27 16:18:53,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.814, u'old': 8.214}
2019-11-27 16:18:54,574 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 8.814}
2019-11-27 16:19:01,031 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:01,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 8.4}
2019-11-27 16:19:01,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 9.0}
2019-11-27 16:19:04,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 8.4}
2019-11-27 16:19:04,760 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.462, u'old': 9.0}
2019-11-27 16:19:05,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.062, u'old': 8.462}
2019-11-27 16:19:06,733 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:06,785 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.062}
2019-11-27 16:19:13,242 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:13,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-11-27 16:19:13,546 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-11-27 16:19:14,163 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:19:16,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-11-27 16:19:16,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.71, u'old': 9.2}
2019-11-27 16:19:17,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.31, u'old': 8.71}
2019-11-27 16:19:18,924 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:18,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 9.31}
2019-11-27 16:19:25,435 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:25,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 8.8}
2019-11-27 16:19:25,747 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 9.4}
2019-11-27 16:19:29,156 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 8.8}
2019-11-27 16:19:29,230 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.958, u'old': 9.4}
2019-11-27 16:19:30,080 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.558, u'old': 8.958}
2019-11-27 16:19:31,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:31,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.558}
2019-11-27 16:19:37,627 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:37,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:37,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.6}
2019-11-27 16:19:40,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:41,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.6}
2019-11-27 16:19:41,580 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:41,765 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.6}
2019-11-27 16:19:42,445 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:42,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-11-27 16:19:44,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:19:45,909 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:45,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:46,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-11-27 16:19:46,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:46,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.206, u'old': 9.8}
2019-11-27 16:19:47,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.806, u'old': 9.206}
2019-11-27 16:19:48,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 9.806}
2019-11-27 16:19:54,865 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:54,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 9.4}
2019-11-27 16:19:55,134 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 10.0}
2019-11-27 16:19:58,779 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 9.4}
2019-11-27 16:19:59,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.454, u'old': 10.0}
2019-11-27 16:19:59,790 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.054, u'old': 9.454}
2019-11-27 16:20:00,846 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:00,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 10.054}
2019-11-27 16:20:07,349 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:07,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 9.6}
2019-11-27 16:20:07,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 10.2}
2019-11-27 16:20:11,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 9.6}
2019-11-27 16:20:11,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.703, u'old': 10.2}
2019-11-27 16:20:12,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.303, u'old': 9.703}
2019-11-27 16:20:13,424 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:13,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.303}
2019-11-27 16:20:15,463 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:20:19,929 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:19,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:20,013 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.40 old_z=9.80 last_z=10.40 notification_height=3.00 notification_time=5
2019-11-27 16:20:20,018 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 31.426550550373545, 'printTimeLeftOrigin': 'estimate', 'printTime': 896, 'printTimeLeft': 1320, 'filepos': 113744L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:20,021 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:20,026 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 31.426550550373545, 'printTimeLeftOrigin': 'estimate', 'printTime': 896, 'printTimeLeft': 1320, 'filepos': 113744L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 10.4, u'old': 9.8}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 31, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:20', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:14:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 10.4, 'e2_temp': 209.9}
2019-11-27 16:20:20,029 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.4.
Bed 59.9/60.0, Extruder 209.9/210.0.
00:14:56, 31%% done, 00:22:00 remaining.
Completed time 16:42:20.
2019-11-27 16:20:20,032 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:20,034 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.4.\nBed 59.9/60.0, Extruder 209.9/210.0.\n11:11:56, 31%% done, 11:11:00 remaining.\nCompleted time 11:11:20. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:20,036 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:20,123 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:20,124 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:20,125 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:22,678 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:23,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-11-27 16:20:23,855 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=9.80 old_z=10.40 last_z=9.80 notification_height=3.00 notification_time=5
2019-11-27 16:20:23,866 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 31.619126033331863, 'printTimeLeftOrigin': 'estimate', 'printTime': 900, 'printTimeLeft': 1320, 'filepos': 114441L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:23,868 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:23,892 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 31.619126033331863, 'printTimeLeftOrigin': 'estimate', 'printTime': 900, 'printTimeLeft': 1320, 'filepos': 114441L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 9.8, u'old': 10.4}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 31, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:23', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:00', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 9.8, 'e2_temp': 210.0}
2019-11-27 16:20:23,904 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=9.8.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:15:00, 31%% done, 00:22:00 remaining.
Completed time 16:42:23.
2019-11-27 16:20:23,915 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:23,921 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=9.8.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:00, 31%% done, 11:11:00 remaining.\nCompleted time 11:11:23. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:23,926 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:23,976 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:23,978 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:23,980 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:26,532 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:27,630 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:27,656 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:27,689 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-11-27 16:20:27,740 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:27,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.951, u'old': 10.4}
2019-11-27 16:20:27,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.551, u'old': 9.951}
2019-11-27 16:20:27,854 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.551}
2019-11-27 16:20:32,258 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:32,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.6}
2019-11-27 16:20:34,589 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:34,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:35,442 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.6}
2019-11-27 16:20:36,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:36,084 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.60 old_z=10.00 last_z=9.80 notification_height=3.00 notification_time=5
2019-11-27 16:20:36,094 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 32.1620396976261, 'printTimeLeftOrigin': 'estimate', 'printTime': 912, 'printTimeLeft': 1320, 'filepos': 116406L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:36,098 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.3, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:36,106 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 32.1620396976261, 'printTimeLeftOrigin': 'estimate', 'printTime': 912, 'printTimeLeft': 1320, 'filepos': 116406L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.3, 'payload': {u'new': 10.6, u'old': 10.0}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 32, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.3, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 10.6, 'e2_temp': 210.3}
2019-11-27 16:20:36,115 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.6.
Bed 59.9/60.0, Extruder 210.3/210.0.
00:15:12, 32%% done, 00:22:00 remaining.
Completed time 16:42:36.
2019-11-27 16:20:36,121 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:36,125 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.6.\nBed 59.9/60.0, Extruder 210.3/210.0.\n11:11:12, 32%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:36,128 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:36,187 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:36,188 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:36,190 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:38,727 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:39,756 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:39,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.199, u'old': 10.6}
2019-11-27 16:20:39,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.799, u'old': 10.199}
2019-11-27 16:20:39,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 10.799}
2019-11-27 16:20:44,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 10.2}
2019-11-27 16:20:44,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 10.8}
2019-11-27 16:20:46,105 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:20:47,954 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:48,008 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-11-27 16:20:48,107 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.447, u'old': 11.0}
2019-11-27 16:20:51,680 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.047, u'old': 10.447}
2019-11-27 16:20:52,768 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 11.047}
2019-11-27 16:20:59,227 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:59,281 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 10.6}
2019-11-27 16:20:59,501 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.695, u'old': 11.2}
2019-11-27 16:21:03,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.295, u'old': 10.695}
2019-11-27 16:21:04,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 11.295}
2019-11-27 16:21:10,620 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:10,677 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 10.8}
2019-11-27 16:21:10,892 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 11.4}
2019-11-27 16:21:12,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 10.8}
2019-11-27 16:21:13,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.943, u'old': 11.4}
2019-11-27 16:21:14,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.543, u'old': 10.943}
2019-11-27 16:21:15,814 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:15,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.543}
2019-11-27 16:21:16,715 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:21:22,326 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:22,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:22,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-11-27 16:21:25,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:25,864 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-11-27 16:21:26,097 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:26,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.191, u'old': 11.6}
2019-11-27 16:21:26,920 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.791, u'old': 11.191}
2019-11-27 16:21:27,967 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:28,019 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.791}
2019-11-27 16:21:34,471 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:34,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:34,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.8}
2019-11-27 16:21:38,270 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:38,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.8}
2019-11-27 16:21:38,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:38,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 11.8}
2019-11-27 16:21:38,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 11.4}
2019-11-27 16:21:39,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 12.0}
2019-11-27 16:21:42,618 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:42,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 11.4}
2019-11-27 16:21:42,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.439, u'old': 12.0}
2019-11-27 16:21:43,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.039, u'old': 11.439}
2019-11-27 16:21:44,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.039}
2019-11-27 16:21:47,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:21:51,346 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:51,398 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-11-27 16:21:51,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-11-27 16:21:55,233 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-11-27 16:21:55,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.687, u'old': 12.2}
2019-11-27 16:21:56,335 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.287, u'old': 11.687}
2019-11-27 16:21:57,373 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:57,430 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 12.287}
2019-11-27 16:22:07,387 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:07,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 11.8}
2019-11-27 16:22:07,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.935, u'old': 12.4}
2019-11-27 16:22:08,565 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.535, u'old': 11.935}
2019-11-27 16:22:09,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 12.535}
2019-11-27 16:22:16,116 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:16,169 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 12.0}
2019-11-27 16:22:16,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 12.6}
2019-11-27 16:22:18,101 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:22:19,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 12.0}
2019-11-27 16:22:20,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.184, u'old': 12.6}
2019-11-27 16:22:21,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.784, u'old': 12.184}
2019-11-27 16:22:22,130 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:22,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.784}
2019-11-27 16:22:28,635 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:28,700 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-11-27 16:22:28,719 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.80 old_z=12.20 last_z=12.80 notification_height=3.00 notification_time=5
2019-11-27 16:22:28,728 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 36.30476106272933, 'printTimeLeftOrigin': 'estimate', 'printTime': 1025, 'printTimeLeft': 1200, 'filepos': 131400L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:22:28,731 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:22:28,736 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 36.30476106272933, 'printTimeLeftOrigin': 'estimate', 'printTime': 1025, 'printTimeLeft': 1200, 'filepos': 131400L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 12.8, u'old': 12.2}, 'time_left': u'00:20:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 36, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:28', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:17:05', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 12.8, 'e2_temp': 210.0}
2019-11-27 16:22:28,739 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.8.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:17:05, 36%% done, 00:20:00 remaining.
Completed time 16:42:28.
2019-11-27 16:22:28,742 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:22:28,745 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.8.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:05, 36%% done, 11:11:00 remaining.\nCompleted time 11:11:28. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:22:28,747 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:22:28,833 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:22:28,835 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:22:28,837 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:22:31,392 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:22:32,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-11-27 16:22:32,466 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.20 old_z=12.80 last_z=12.20 notification_height=3.00 notification_time=5
2019-11-27 16:22:32,470 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 36.45644533840237, 'printTimeLeftOrigin': 'estimate', 'printTime': 1029, 'printTimeLeft': 1200, 'filepos': 131949L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:22:32,476 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:22:32,483 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 36.45644533840237, 'printTimeLeftOrigin': 'estimate', 'printTime': 1029, 'printTimeLeft': 1200, 'filepos': 131949L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 12.2, u'old': 12.8}, 'time_left': u'00:20:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 36, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:32', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:17:09', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 12.2, 'e2_temp': 209.9}
2019-11-27 16:22:32,485 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.2.
Bed 60.1/60.0, Extruder 209.9/210.0.
00:17:09, 36%% done, 00:20:00 remaining.
Completed time 16:42:32.
2019-11-27 16:22:32,487 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:22:32,489 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.2.\nBed 60.1/60.0, Extruder 209.9/210.0.\n11:11:09, 36%% done, 11:11:00 remaining.\nCompleted time 11:11:32. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:22:32,490 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:22:32,553 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:22:32,554 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:22:32,555 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:22:35,108 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:22:36,113 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:36,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-11-27 16:22:36,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 12.8}
2019-11-27 16:22:36,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 12.4}
2019-11-27 16:22:36,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 13.0}
2019-11-27 16:22:37,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 12.4}
2019-11-27 16:22:37,165 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.432, u'old': 13.0}
2019-11-27 16:22:38,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.032, u'old': 12.432}
2019-11-27 16:22:39,302 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 13.032}
2019-11-27 16:22:45,787 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:45,842 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 12.6}
2019-11-27 16:22:46,030 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 13.2}
2019-11-27 16:22:48,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:22:49,577 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 12.6}
2019-11-27 16:22:49,809 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.68, u'old': 13.2}
2019-11-27 16:22:50,679 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.28, u'old': 12.68}
2019-11-27 16:22:51,724 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:51,777 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.28}
2019-11-27 16:22:58,226 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:58,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-11-27 16:22:58,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-11-27 16:23:01,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-11-27 16:23:01,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.928, u'old': 13.4}
2019-11-27 16:23:02,825 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.528, u'old': 12.928}
2019-11-27 16:23:03,861 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:03,926 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 13.528}
2019-11-27 16:23:10,381 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:10,434 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 13.0}
2019-11-27 16:23:10,649 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 13.6}
2019-11-27 16:23:14,493 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 13.0}
2019-11-27 16:23:14,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.176, u'old': 13.6}
2019-11-27 16:23:14,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.776, u'old': 13.176}
2019-11-27 16:23:16,031 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:16,092 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 13.776}
2019-11-27 16:23:19,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:23:22,538 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:22,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 13.2}
2019-11-27 16:23:22,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 13.8}
2019-11-27 16:23:26,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 13.2}
2019-11-27 16:23:26,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 13.8}
2019-11-27 16:23:26,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-11-27 16:23:26,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-11-27 16:23:30,002 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:30,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-11-27 16:23:30,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.424, u'old': 14.0}
2019-11-27 16:23:30,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.024, u'old': 13.424}
2019-11-27 16:23:31,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 14.024}
2019-11-27 16:23:38,308 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:38,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 13.6}
2019-11-27 16:23:38,579 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 14.2}
2019-11-27 16:23:41,568 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 13.6}
2019-11-27 16:23:41,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.672, u'old': 14.2}
2019-11-27 16:23:42,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.272, u'old': 13.672}
2019-11-27 16:23:43,541 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:43,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 14.272}
2019-11-27 16:23:50,053 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:23:50,079 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:50,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 13.8}
2019-11-27 16:23:50,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.92, u'old': 14.4}
2019-11-27 16:23:53,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.52, u'old': 13.92}
2019-11-27 16:23:54,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.52}
2019-11-27 16:24:01,438 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:01,497 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-11-27 16:24:01,755 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.168, u'old': 14.6}
2019-11-27 16:24:05,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.768, u'old': 14.168}
2019-11-27 16:24:06,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 14.768}
2019-11-27 16:24:12,823 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:12,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 14.2}
2019-11-27 16:24:13,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 14.8}
2019-11-27 16:24:16,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 14.4}
2019-11-27 16:24:16,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 15.0}
2019-11-27 16:24:19,450 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:19,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 14.4}
2019-11-27 16:24:19,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.416, u'old': 15.0}
2019-11-27 16:24:20,489 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.016, u'old': 14.416}
2019-11-27 16:24:20,697 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:24:21,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.016}
2019-11-27 16:24:28,016 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:28,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-11-27 16:24:28,092 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.20 old_z=14.60 last_z=15.20 notification_height=3.00 notification_time=5
2019-11-27 16:24:28,102 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 40.927401529552185, 'printTimeLeftOrigin': 'estimate', 'printTime': 1144, 'printTimeLeft': 1080, 'filepos': 148131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:24:28,111 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:24:28,125 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 40.927401529552185, 'printTimeLeftOrigin': 'estimate', 'printTime': 1144, 'printTimeLeft': 1080, 'filepos': 148131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 15.2, u'old': 14.6}, 'time_left': u'00:18:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 40, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:28', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:19:04', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 15.2, 'e2_temp': 210.1}
2019-11-27 16:24:28,131 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.2.
Bed 60.2/60.0, Extruder 210.1/210.0.
00:19:04, 40%% done, 00:18:00 remaining.
Completed time 16:42:28.
2019-11-27 16:24:28,135 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:24:28,139 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.2.\nBed 60.2/60.0, Extruder 210.1/210.0.\n11:11:04, 40%% done, 11:11:00 remaining.\nCompleted time 11:11:28. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:24:28,143 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:24:28,182 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:24:28,184 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:24:28,185 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:24:30,666 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:24:31,837 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-11-27 16:24:31,844 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=14.60 old_z=15.20 last_z=14.60 notification_height=3.00 notification_time=5
2019-11-27 16:24:31,848 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 41.135449361213034, 'printTimeLeftOrigin': 'estimate', 'printTime': 1148, 'printTimeLeft': 1080, 'filepos': 148884L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.665, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:24:31,849 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:24:31,854 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 41.135449361213034, 'printTimeLeftOrigin': 'estimate', 'printTime': 1148, 'printTimeLeft': 1080, 'filepos': 148884L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.665, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 14.6, u'old': 15.2}, 'time_left': u'00:18:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 41, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:31', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:19:08', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 14.6, 'e2_temp': 210.0}
2019-11-27 16:24:31,859 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=14.6.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:19:08, 41%% done, 00:18:00 remaining.
Completed time 16:42:31.
2019-11-27 16:24:31,861 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:24:31,864 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=14.6.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:08, 41%% done, 11:11:00 remaining.\nCompleted time 11:11:31. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:24:31,866 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:24:31,902 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:24:31,903 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:24:31,905 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:24:34,450 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:24:35,486 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:35,512 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-11-27 16:24:35,550 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.665, u'old': 15.2}
2019-11-27 16:24:35,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.265, u'old': 14.665}
2019-11-27 16:24:35,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 15.265}
2019-11-27 16:24:39,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 14.8}
2019-11-27 16:24:40,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 15.4}
2019-11-27 16:24:43,709 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:43,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 14.8}
2019-11-27 16:24:43,832 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.913, u'old': 15.4}
2019-11-27 16:24:44,279 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.513, u'old': 14.913}
2019-11-27 16:24:45,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 15.513}
2019-11-27 16:24:51,312 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:24:51,853 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:51,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 15.0}
2019-11-27 16:24:52,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 15.6}
2019-11-27 16:24:55,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 15.0}
2019-11-27 16:24:55,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.161, u'old': 15.6}
2019-11-27 16:24:56,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.761, u'old': 15.161}
2019-11-27 16:24:57,570 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:57,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.761}
2019-11-27 16:25:04,079 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:04,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-11-27 16:25:04,401 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-11-27 16:25:07,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-11-27 16:25:07,867 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 15.8}
2019-11-27 16:25:08,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 15.4}
2019-11-27 16:25:08,672 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 16.0}
2019-11-27 16:25:11,960 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:12,030 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 15.4}
2019-11-27 16:25:12,098 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.409, u'old': 16.0}
2019-11-27 16:25:13,025 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.009, u'old': 15.409}
2019-11-27 16:25:14,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 16.009}
2019-11-27 16:25:20,571 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:20,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 15.6}
2019-11-27 16:25:20,841 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 16.2}
2019-11-27 16:25:21,967 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:25:24,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 15.6}
2019-11-27 16:25:24,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.657, u'old': 16.2}
2019-11-27 16:25:25,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.257, u'old': 15.657}
2019-11-27 16:25:26,251 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:26,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.257}
2019-11-27 16:25:32,761 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:32,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:33,034 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-11-27 16:25:36,002 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:36,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-11-27 16:25:36,178 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.80 old_z=16.40 last_z=14.60 notification_height=3.00 notification_time=5
2019-11-27 16:25:36,184 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 43.648324565669064, 'printTimeLeftOrigin': 'estimate', 'printTime': 1212, 'printTimeLeft': 1020, 'filepos': 157979L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:25:36,186 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:25:36,191 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 43.648324565669064, 'printTimeLeftOrigin': 'estimate', 'printTime': 1212, 'printTimeLeft': 1020, 'filepos': 157979L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 15.8, u'old': 16.4}, 'time_left': u'00:17:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 43, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:20:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 15.8, 'e2_temp': 210.1}
2019-11-27 16:25:36,193 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.8.
Bed 60.1/60.0, Extruder 210.1/210.0.
00:20:12, 43%% done, 00:17:00 remaining.
Completed time 16:42:36.
2019-11-27 16:25:36,195 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:25:36,198 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.8.\nBed 60.1/60.0, Extruder 210.1/210.0.\n11:11:12, 43%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:25:36,208 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:25:36,285 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:25:36,286 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:25:36,287 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:25:38,975 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:25:40,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:40,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:40,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.905, u'old': 16.4}
2019-11-27 16:25:40,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.505, u'old': 15.905}
2019-11-27 16:25:40,246 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.505}
2019-11-27 16:25:45,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:45,258 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:45,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.6}
2019-11-27 16:25:48,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:48,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.6}
2019-11-27 16:25:48,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:49,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.153, u'old': 16.6}
2019-11-27 16:25:49,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.753, u'old': 16.153}
2019-11-27 16:25:51,013 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:51,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.753}
2019-11-27 16:25:52,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:25:57,528 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:57,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:25:57,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.8}
2019-11-27 16:26:00,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:26:00,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.8}
2019-11-27 16:26:01,571 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:26:01,763 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 16.8}
2019-11-27 16:26:02,393 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-11-27 16:26:02,475 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-11-27 16:26:06,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:06,195 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-11-27 16:26:06,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.401, u'old': 17.0}
2019-11-27 16:26:07,173 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.001, u'old': 16.401}
2019-11-27 16:26:08,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 17.001}
2019-11-27 16:26:14,699 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:14,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 16.6}
2019-11-27 16:26:14,968 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 17.2}
2019-11-27 16:26:18,933 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 16.6}
2019-11-27 16:26:19,069 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.649, u'old': 17.2}
2019-11-27 16:26:19,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.249, u'old': 16.649}
2019-11-27 16:26:20,678 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:20,735 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.249}
2019-11-27 16:26:23,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:26:27,180 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:27,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:27,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.4}
2019-11-27 16:26:30,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:30,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.4}
2019-11-27 16:26:31,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:31,517 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.897, u'old': 17.4}
2019-11-27 16:26:31,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.497, u'old': 16.897}
2019-11-27 16:26:32,962 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:33,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.497}
2019-11-27 16:26:39,466 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:39,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:39,541 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.60 old_z=17.00 last_z=17.60 notification_height=3.00 notification_time=5
2019-11-27 16:26:39,554 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 46.48832942840723, 'printTimeLeftOrigin': 'estimate', 'printTime': 1276, 'printTimeLeft': 900, 'filepos': 168258L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:26:39,557 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:26:39,564 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 46.48832942840723, 'printTimeLeftOrigin': 'estimate', 'printTime': 1276, 'printTimeLeft': 900, 'filepos': 168258L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 17.6, u'old': 17.0}, 'time_left': u'00:15:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 46, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:39', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:21:16', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 17.6, 'e2_temp': 209.9}
2019-11-27 16:26:39,566 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.6.
Bed 60.0/60.0, Extruder 209.9/210.0.
00:21:16, 46%% done, 00:15:00 remaining.
Completed time 16:41:39.
2019-11-27 16:26:39,567 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:26:39,570 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.6.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:16, 46%% done, 11:11:00 remaining.\nCompleted time 11:11:39. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:26:39,572 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:26:39,609 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:26:39,611 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:26:39,613 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:26:42,234 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:26:43,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-11-27 16:26:43,301 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.00 old_z=17.60 last_z=17.00 notification_height=3.00 notification_time=5
2019-11-27 16:26:43,308 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 46.66377481101631, 'printTimeLeftOrigin': 'estimate', 'printTime': 1279, 'printTimeLeft': 900, 'filepos': 168893L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:26:43,312 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:26:43,319 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 46.66377481101631, 'printTimeLeftOrigin': 'estimate', 'printTime': 1279, 'printTimeLeft': 900, 'filepos': 168893L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 17.0, u'old': 17.6}, 'time_left': u'00:15:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 46, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:43', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:21:19', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 17.0, 'e2_temp': 210.2}
2019-11-27 16:26:43,322 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.0.
Bed 59.9/60.0, Extruder 210.2/210.0.
00:21:19, 46%% done, 00:15:00 remaining.
Completed time 16:41:43.
2019-11-27 16:26:43,327 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:26:43,332 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.0.\nBed 59.9/60.0, Extruder 210.2/210.0.\n11:11:19, 46%% done, 11:11:00 remaining.\nCompleted time 11:11:43. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:26:43,337 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:26:43,394 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:26:43,396 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:26:43,398 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:26:46,165 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:26:47,180 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:47,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:47,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-11-27 16:26:47,287 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:47,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.146, u'old': 17.6}
2019-11-27 16:26:47,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.746, u'old': 17.146}
2019-11-27 16:26:47,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 17.746}
2019-11-27 16:26:51,739 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 17.2}
2019-11-27 16:26:51,969 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.394, u'old': 17.8}
2019-11-27 16:26:53,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:26:55,510 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:55,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.994, u'old': 17.394}
2019-11-27 16:26:56,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 17.994}
2019-11-27 16:27:03,110 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:03,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 17.4}
2019-11-27 16:27:03,426 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.0}
2019-11-27 16:27:06,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-11-27 16:27:06,849 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.642, u'old': 18.2}
2019-11-27 16:27:10,437 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:10,490 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.242, u'old': 17.642}
2019-11-27 16:27:11,566 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 18.242}
2019-11-27 16:27:18,022 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:18,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 17.8}
2019-11-27 16:27:18,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 18.4}
2019-11-27 16:27:19,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 17.8}
2019-11-27 16:27:20,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.89, u'old': 18.4}
2019-11-27 16:27:22,262 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.49, u'old': 17.89}
2019-11-27 16:27:23,303 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:23,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.49}
2019-11-27 16:27:24,590 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:27:29,813 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:29,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:30,111 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.6}
2019-11-27 16:27:33,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:33,403 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.6}
2019-11-27 16:27:33,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:33,726 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.138, u'old': 18.6}
2019-11-27 16:27:34,500 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.738, u'old': 18.138}
2019-11-27 16:27:35,533 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:35,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 18.738}
2019-11-27 16:27:42,039 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:42,098 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 18.2}
2019-11-27 16:27:42,317 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 18.8}
2019-11-27 16:27:46,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 18.2}
2019-11-27 16:27:46,109 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.386, u'old': 18.8}
2019-11-27 16:27:46,954 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.986, u'old': 18.386}
2019-11-27 16:27:47,994 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:48,046 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 18.986}
2019-11-27 16:27:54,505 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:54,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 18.4}
2019-11-27 16:27:54,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 19.0}
2019-11-27 16:27:55,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:27:58,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 18.4}
2019-11-27 16:27:58,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 19.0}
2019-11-27 16:27:59,591 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:59,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 18.6}
2019-11-27 16:27:59,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 19.2}
2019-11-27 16:28:02,972 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:28:04,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 18.6}
2019-11-27 16:28:04,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.634, u'old': 19.2}
2019-11-27 16:28:04,647 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:04,673 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.234, u'old': 18.634}
2019-11-27 16:28:05,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.234}
2019-11-27 16:28:12,249 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:12,310 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:12,504 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:28:12,647 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.4}
2019-11-27 16:28:16,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:16,354 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.4}
2019-11-27 16:28:16,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:16,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.882, u'old': 19.4}
2019-11-27 16:28:17,658 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:17,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.482, u'old': 18.882}
2019-11-27 16:28:18,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 19.482}
2019-11-27 16:28:25,921 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:28:26,068 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 108926}
2019-11-27 16:28:29,294 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:29,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 19.0}
2019-11-27 16:28:29,449 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.13, u'old': 19.6}
2019-11-27 16:28:30,353 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.73, u'old': 19.13}
2019-11-27 16:28:31,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 19.73}
2019-11-27 16:28:37,865 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:37,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 19.2}
2019-11-27 16:28:38,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 19.8}
2019-11-27 16:28:42,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 19.2}
2019-11-27 16:28:42,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.378, u'old': 19.8}
2019-11-27 16:28:43,252 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:43,283 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.978, u'old': 19.378}
2019-11-27 16:28:44,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 19.978}
2019-11-27 16:28:50,909 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:50,966 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 19.4}
2019-11-27 16:28:50,990 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=20.00 old_z=19.40 last_z=20.00 notification_height=3.00 notification_time=5
2019-11-27 16:28:51,001 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.65526501922992, 'printTimeLeftOrigin': 'estimate', 'printTime': 1407, 'printTimeLeft': 780, 'filepos': 186959L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 20.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:28:51,005 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:28:51,013 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.65526501922992, 'printTimeLeftOrigin': 'estimate', 'printTime': 1407, 'printTimeLeft': 780, 'filepos': 186959L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 20.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 20.0, u'old': 19.4}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:51', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:23:27', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 20.0, 'e2_temp': 210.0}
2019-11-27 16:28:51,020 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=20.0.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:23:27, 51%% done, 00:13:00 remaining.
Completed time 16:41:51.
2019-11-27 16:28:51,025 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:28:51,032 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=20.0.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:27, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:51. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:28:51,042 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:28:51,106 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:28:51,108 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:28:51,113 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:28:53,655 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:28:54,758 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 20.0}
2019-11-27 16:28:54,783 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=19.40 old_z=20.00 last_z=19.40 notification_height=3.00 notification_time=5
2019-11-27 16:28:54,792 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.80639671102073, 'printTimeLeftOrigin': 'estimate', 'printTime': 1411, 'printTimeLeft': 780, 'filepos': 187506L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 19.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:28:54,794 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:28:54,801 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.80639671102073, 'printTimeLeftOrigin': 'estimate', 'printTime': 1411, 'printTimeLeft': 780, 'filepos': 187506L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 19.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 19.4, u'old': 20.0}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:54', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:23:31', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 19.4, 'e2_temp': 210.0}
2019-11-27 16:28:54,804 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=19.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:23:31, 51%% done, 00:13:00 remaining.
Completed time 16:41:54.
2019-11-27 16:28:54,806 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:28:54,809 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=19.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:31, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:28:54,812 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:28:54,893 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:28:54,894 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:28:54,896 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:28:56,524 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:28:57,454 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:28:58,474 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:58,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 19.4}
2019-11-27 16:28:58,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 20.0}
2019-11-27 16:28:58,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 19.6}
2019-11-27 16:28:58,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 20.2}
2019-11-27 16:29:00,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 19.6}
2019-11-27 16:29:00,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.627, u'old': 20.2}
2019-11-27 16:29:01,343 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.227, u'old': 19.627}
2019-11-27 16:29:02,432 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 20.227}
2019-11-27 16:29:08,881 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:08,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 19.8}
2019-11-27 16:29:09,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 20.4}
2019-11-27 16:29:13,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 19.8}
2019-11-27 16:29:13,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.875, u'old': 20.4}
2019-11-27 16:29:14,359 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:14,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.475, u'old': 19.875}
2019-11-27 16:29:15,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 20.475}
2019-11-27 16:29:21,963 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:22,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 20.0}
2019-11-27 16:29:22,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 20.6}
2019-11-27 16:29:27,027 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:27,099 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 20.0}
2019-11-27 16:29:27,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.123, u'old': 20.6}
2019-11-27 16:29:27,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:29:27,506 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.723, u'old': 20.123}
2019-11-27 16:29:28,614 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.723}
2019-11-27 16:29:35,069 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:35,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:35,340 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.8}
2019-11-27 16:29:39,041 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:39,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.8}
2019-11-27 16:29:40,070 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:40,096 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:40,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.371, u'old': 20.8}
2019-11-27 16:29:41,672 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.971, u'old': 20.371}
2019-11-27 16:29:42,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 20.971}
2019-11-27 16:29:48,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:48,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:48,423 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 21.0}
2019-11-27 16:29:52,209 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:52,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 21.0}
2019-11-27 16:29:53,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:53,151 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:53,204 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.0}
2019-11-27 16:29:53,484 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:53,534 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.2}
2019-11-27 16:29:57,387 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:57,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.2}
2019-11-27 16:29:57,839 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:29:57,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:58,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.619, u'old': 21.2}
2019-11-27 16:30:00,785 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:00,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.219, u'old': 20.619}
2019-11-27 16:30:01,786 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 21.219}
2019-11-27 16:30:06,205 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:06,276 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 20.8}
2019-11-27 16:30:06,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 21.4}
2019-11-27 16:30:10,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 20.8}
2019-11-27 16:30:10,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.867, u'old': 21.4}
2019-11-27 16:30:12,354 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:12,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.467, u'old': 20.867}
2019-11-27 16:30:13,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.467}
2019-11-27 16:30:17,562 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:17,609 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:17,715 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.6}
2019-11-27 16:30:19,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:20,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.6}
2019-11-27 16:30:23,678 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:23,748 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:23,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.115, u'old': 21.6}
2019-11-27 16:30:26,287 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.715, u'old': 21.115}
2019-11-27 16:30:27,297 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.715}
2019-11-27 16:30:28,456 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:30:30,470 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:30,528 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:30,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:32,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:33,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:36,171 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:36,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:36,269 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=21.80 old_z=21.20 last_z=19.40 notification_height=3.00 notification_time=5
2019-11-27 16:30:36,275 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 56.999303744308385, 'printTimeLeftOrigin': 'estimate', 'printTime': 1512, 'printTimeLeft': 720, 'filepos': 206301L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:30:36,278 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:30:36,286 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 56.999303744308385, 'printTimeLeftOrigin': 'estimate', 'printTime': 1512, 'printTimeLeft': 720, 'filepos': 206301L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 21.8, u'old': 21.2}, 'time_left': u'00:12:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 56, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 21.8, 'e2_temp': 210.0}
2019-11-27 16:30:36,289 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=21.8.
Bed 59.9/60.0, Extruder 210.0/210.0.
00:25:12, 56%% done, 00:12:00 remaining.
Completed time 16:42:36.
2019-11-27 16:30:36,292 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:30:36,295 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=21.8.\nBed 59.9/60.0, Extruder 210.0/210.0.\n11:11:12, 56%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:30:36,298 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:30:36,391 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:30:36,393 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:30:36,395 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:30:39,066 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:30:40,179 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:40,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:40,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.363, u'old': 21.8}
2019-11-27 16:30:40,276 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.963, u'old': 21.363}
2019-11-27 16:30:40,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 21.963}
2019-11-27 16:30:43,473 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:43,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:43,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:45,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:46,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:49,298 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:49,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:49,415 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:50,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:50,199 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.0}
2019-11-27 16:30:50,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:50,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:51,455 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:52,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:54,769 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:54,838 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:54,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:55,946 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:55,985 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.611, u'old': 22.2}
2019-11-27 16:30:58,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.211, u'old': 21.611}
2019-11-27 16:30:59,117 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:30:59,521 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.211}
2019-11-27 16:31:02,502 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:02,558 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:02,577 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=22.40 old_z=21.80 last_z=22.40 notification_height=3.00 notification_time=5
2019-11-27 16:31:02,585 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 58.777518677335216, 'printTimeLeftOrigin': 'estimate', 'printTime': 1539, 'printTimeLeft': 660, 'filepos': 212737L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 22.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:31:02,590 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:31:02,601 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 58.777518677335216, 'printTimeLeftOrigin': 'estimate', 'printTime': 1539, 'printTimeLeft': 660, 'filepos': 212737L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 22.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 22.4, u'old': 21.8}, 'time_left': u'00:11:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 58, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:02', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:39', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 22.4, 'e2_temp': 210.0}
2019-11-27 16:31:02,605 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=22.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:25:39, 58%% done, 00:11:00 remaining.
Completed time 16:42:02.
2019-11-27 16:31:02,608 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:31:02,610 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=22.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:39, 58%% done, 11:11:00 remaining.\nCompleted time 11:11:02. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:31:02,611 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:31:02,666 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:31:02,667 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:31:02,668 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:31:05,181 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:31:06,369 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.4}
2019-11-27 16:31:06,386 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=21.80 old_z=22.40 last_z=21.80 notification_height=3.00 notification_time=5
2019-11-27 16:31:06,395 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 58.92257194642146, 'printTimeLeftOrigin': 'estimate', 'printTime': 1542, 'printTimeLeft': 660, 'filepos': 213262L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:31:06,399 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:31:06,409 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 58.92257194642146, 'printTimeLeftOrigin': 'estimate', 'printTime': 1542, 'printTimeLeft': 660, 'filepos': 213262L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 21.8, u'old': 22.4}, 'time_left': u'00:11:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 58, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:06', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:42', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 21.8, 'e2_temp': 210.1}
2019-11-27 16:31:06,417 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=21.8.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:25:42, 58%% done, 00:11:00 remaining.
Completed time 16:42:06.
2019-11-27 16:31:06,421 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:31:06,425 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=21.8.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:42, 58%% done, 11:11:00 remaining.\nCompleted time 11:11:06. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:31:06,428 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:31:06,450 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:31:06,451 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:31:06,452 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:31:08,880 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:31:09,893 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:09,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:09,964 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.4}
2019-11-27 16:31:10,000 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:10,033 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.859, u'old': 22.4}
2019-11-27 16:31:11,905 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.459, u'old': 21.859}
2019-11-27 16:31:12,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.459}
2019-11-27 16:31:15,966 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:16,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:16,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:18,381 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:19,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:22,346 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:22,410 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:22,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:22,843 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:22,913 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:23,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:23,958 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.108, u'old': 22.6}
2019-11-27 16:31:26,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.708, u'old': 22.108}
2019-11-27 16:31:27,583 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:27,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.708}
2019-11-27 16:31:29,779 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:31:30,499 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:30,676 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:32,891 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:32,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:33,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:36,544 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:36,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:37,634 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:37,742 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:38,712 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:38,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:38,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.356, u'old': 22.8}
2019-11-27 16:31:41,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.956, u'old': 22.356}
2019-11-27 16:31:42,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 22.956}
2019-11-27 16:31:45,167 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:45,232 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:45,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:47,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:48,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:51,202 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:51,265 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:51,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:52,400 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:52,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:53,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:53,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.0}
2019-11-27 16:31:53,769 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:53,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:31:54,942 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:55,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:31:59,076 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:59,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:59,222 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:32:00,409 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:32:00,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:32:00,635 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.604, u'old': 23.2}
2019-11-27 16:32:03,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.204, u'old': 22.604}
2019-11-27 16:32:04,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:04,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.204}
2019-11-27 16:32:07,161 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:07,297 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:09,532 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:09,584 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:10,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:13,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:13,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:14,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:14,584 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:14,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:15,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:15,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.852, u'old': 23.4}
2019-11-27 16:32:18,371 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.452, u'old': 22.852}
2019-11-27 16:32:19,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.452}
2019-11-27 16:32:22,218 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:22,289 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:22,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:24,756 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:25,660 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:28,312 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:28,370 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:28,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:29,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:29,891 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:31,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:32:31,235 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:31,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.1, u'old': 23.6}
2019-11-27 16:32:33,836 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:33,893 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.7, u'old': 23.1}
2019-11-27 16:32:34,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.7}
2019-11-27 16:32:37,555 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:37,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:40,020 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:40,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:40,992 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:44,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:44,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:45,870 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:45,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:45,991 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.8}
2019-11-27 16:32:46,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:46,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.9}
2019-11-27 16:32:47,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:47,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.9}
2019-11-27 16:32:52,886 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:52,935 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:53,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 23.9}
2019-11-27 16:32:55,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:32:56,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 24.0}
2019-11-27 16:33:01,730 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:33:02,118 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:02,143 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:33:02,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 24.0}
2019-11-27 16:33:03,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:33:03,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.0}
2019-11-27 16:33:04,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:04,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.1}
2019-11-27 16:33:04,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:04,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.1}
2019-11-27 16:33:10,751 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:10,814 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:11,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.1}
2019-11-27 16:33:14,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:15,318 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:17,242 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:17,305 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:18,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:22,057 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:22,103 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:23,583 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:23,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:23,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.7, u'old': 24.2}
2019-11-27 16:33:29,410 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:29,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 23.7}
2019-11-27 16:33:30,226 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.3}
2019-11-27 16:33:32,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:33:33,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:33,968 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:35,947 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:36,004 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:36,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:40,711 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:40,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:42,141 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:42,199 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:42,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 24.4}
2019-11-27 16:33:45,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 23.9}
2019-11-27 16:33:46,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 24.5}
2019-11-27 16:33:48,275 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:48,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 23.9}
2019-11-27 16:33:49,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.5}
2019-11-27 16:33:52,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:52,824 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:33:54,795 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:54,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:55,835 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:33:59,450 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:59,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:34:00,979 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:01,042 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:34:01,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.6}
2019-11-27 16:34:01,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:01,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.7}
2019-11-27 16:34:02,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:02,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.7}
2019-11-27 16:34:02,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:34:06,096 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:06,160 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:06,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.7}
2019-11-27 16:34:09,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:09,946 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=24.80 old_z=24.20 last_z=24.80 notification_height=3.00 notification_time=5
2019-11-27 16:34:09,951 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 71.76268732593608, 'printTimeLeftOrigin': 'estimate', 'printTime': 1726, 'printTimeLeft': 480, 'filepos': 259735L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:34:09,953 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:34:09,957 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 71.76268732593608, 'printTimeLeftOrigin': 'estimate', 'printTime': 1726, 'printTimeLeft': 480, 'filepos': 259735L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 24.8, u'old': 24.2}, 'time_left': u'00:08:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 71, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:09', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:28:46', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 24.8, 'e2_temp': 210.0}
2019-11-27 16:34:09,961 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=24.8.
Bed 59.9/60.0, Extruder 210.0/210.0.
00:28:46, 71%% done, 00:08:00 remaining.
Completed time 16:42:09.
2019-11-27 16:34:09,964 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:34:09,966 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=24.8.\nBed 59.9/60.0, Extruder 210.0/210.0.\n11:11:46, 71%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:34:09,968 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:34:10,053 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:34:10,055 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:34:10,056 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:34:12,755 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:34:13,814 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:13,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:13,853 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=24.20 old_z=24.80 last_z=24.20 notification_height=3.00 notification_time=5
2019-11-27 16:34:13,859 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 71.89116307855532, 'printTimeLeftOrigin': 'estimate', 'printTime': 1730, 'printTimeLeft': 480, 'filepos': 260200L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:34:13,861 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:34:13,866 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 71.89116307855532, 'printTimeLeftOrigin': 'estimate', 'printTime': 1730, 'printTimeLeft': 480, 'filepos': 260200L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 24.2, u'old': 24.8}, 'time_left': u'00:08:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 71, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:13', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:28:50', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 24.2, 'e2_temp': 209.9}
2019-11-27 16:34:13,869 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=24.2.
Bed 60.0/60.0, Extruder 209.9/210.0.
00:28:50, 71%% done, 00:08:00 remaining.
Completed time 16:42:13.
2019-11-27 16:34:13,871 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:34:13,874 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=24.2.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:50, 71%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:34:13,877 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:34:13,904 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:34:13,906 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:34:13,907 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:34:16,453 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:34:17,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:17,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:17,678 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:17,718 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:18,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:18,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.8}
2019-11-27 16:34:18,898 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:18,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:18,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.9}
2019-11-27 16:34:19,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:19,877 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.9}
2019-11-27 16:34:23,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:24,316 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:24,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 24.9}
2019-11-27 16:34:27,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:28,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:30,103 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:30,170 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:31,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:33,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:34:34,691 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:34,771 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:35,982 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:36,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:36,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 25.0}
2019-11-27 16:34:42,957 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:43,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 24.5}
2019-11-27 16:34:43,618 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 25.1}
2019-11-27 16:34:47,068 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 24.5}
2019-11-27 16:34:47,185 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.1}
2019-11-27 16:34:47,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:47,987 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:48,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:49,372 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:50,408 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:54,528 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:54,589 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:54,652 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:55,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:55,865 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 25.2}
2019-11-27 16:34:56,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 24.7}
2019-11-27 16:34:56,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 25.3}
2019-11-27 16:34:57,568 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:35:03,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:03,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 24.7}
2019-11-27 16:35:03,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.3}
2019-11-27 16:35:04,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:35:06,182 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:06,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:13,171 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:13,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:13,253 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:15,011 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:15,141 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:15,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:15,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.4}
2019-11-27 16:35:16,235 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:16,343 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.5}
2019-11-27 16:35:20,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:20,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:21,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.5}
2019-11-27 16:35:23,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:23,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.5}
2019-11-27 16:35:26,201 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:26,273 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:26,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:28,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:29,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:33,778 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:33,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:33,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:34,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:34,889 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:34,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:35:36,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:36,441 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=25.60 old_z=25.00 last_z=24.20 notification_height=3.00 notification_time=5
2019-11-27 16:35:36,451 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 77.64411387648646, 'printTimeLeftOrigin': 'estimate', 'printTime': 1813, 'printTimeLeft': 360, 'filepos': 281022L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 25.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:35:36,454 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:35:36,471 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 77.64411387648646, 'printTimeLeftOrigin': 'estimate', 'printTime': 1813, 'printTimeLeft': 360, 'filepos': 281022L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 25.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 25.6, u'old': 25.0}, 'time_left': u'00:06:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 77, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:30:13', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 25.6, 'e2_temp': 209.8}
2019-11-27 16:35:36,474 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=25.6.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:30:13, 77%% done, 00:06:00 remaining.
Completed time 16:41:36.
2019-11-27 16:35:36,477 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:35:36,480 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=25.6.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:13, 77%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:35:36,483 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:35:36,547 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:35:36,549 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:35:36,551 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:35:39,283 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:35:40,307 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:40,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 25.6}
2019-11-27 16:35:46,581 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:46,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 25.1}
2019-11-27 16:35:47,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.7}
2019-11-27 16:35:48,865 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:49,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:51,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:52,075 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:52,129 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:56,751 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:56,852 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:58,354 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:58,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:58,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:59,373 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:59,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 25.8}
2019-11-27 16:35:59,590 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 25.3}
2019-11-27 16:35:59,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 25.9}
2019-11-27 16:36:05,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:36:09,615 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:09,682 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 25.3}
2019-11-27 16:36:10,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 25.9}
2019-11-27 16:36:14,482 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:15,383 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:15,437 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:17,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:18,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:23,911 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:23,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:24,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:26,075 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:26,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 26.0}
2019-11-27 16:36:26,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 25.5}
2019-11-27 16:36:26,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 26.1}
2019-11-27 16:36:34,945 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:35,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 25.5}
2019-11-27 16:36:35,967 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.1}
2019-11-27 16:36:36,132 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:36:42,052 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:42,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:42,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:47,689 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:47,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:47,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:49,693 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:49,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:51,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:51,930 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 26.2}
2019-11-27 16:36:57,982 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:58,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.3, u'old': 25.7}
2019-11-27 16:36:58,995 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 26.3}
2019-11-27 16:37:05,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:05,177 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.3, u'old': 25.7}
2019-11-27 16:37:05,335 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.3}
2019-11-27 16:37:06,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:06,324 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:06,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:37:09,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:09,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:12,749 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:12,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:12,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:15,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:15,266 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:17,554 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:17,603 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 26.4}
2019-11-27 16:37:19,027 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:19,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.5, u'old': 25.9}
2019-11-27 16:37:19,213 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 26.5}
2019-11-27 16:37:23,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.5, u'old': 25.9}
2019-11-27 16:37:23,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.5}
2019-11-27 16:37:24,392 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:24,455 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:25,747 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:30,036 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:30,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:30,113 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:32,359 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:32,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:34,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:34,713 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 26.6}
2019-11-27 16:37:34,972 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.7, u'old': 26.1}
2019-11-27 16:37:35,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 26.7}
2019-11-27 16:37:37,359 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:37,442 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.7, u'old': 26.1}
2019-11-27 16:37:37,453 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:37:37,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.7}
2019-11-27 16:37:38,879 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:40,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:46,777 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:46,831 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:46,948 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:48,980 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:49,037 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:53,993 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:54,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:54,241 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 26.8}
2019-11-27 16:37:54,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:37:54,766 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:37:56,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:37:58,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:02,492 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:02,563 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:02,626 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:04,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:04,146 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:08,055 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:38:15,179 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:15,244 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:15,485 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.0}
2019-11-27 16:38:16,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:16,192 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=27.20 old_z=26.60 last_z=27.20 notification_height=3.00 notification_time=5
2019-11-27 16:38:16,206 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 88.56400026524027, 'printTimeLeftOrigin': 'estimate', 'printTime': 1972, 'printTimeLeft': 240, 'filepos': 320545L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 27.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:38:16,208 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:38:16,217 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 88.56400026524027, 'printTimeLeftOrigin': 'estimate', 'printTime': 1972, 'printTimeLeft': 240, 'filepos': 320545L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 27.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 27.2, u'old': 26.6}, 'time_left': u'00:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 88, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:16', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:32:52', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 27.2, 'e2_temp': 210.2}
2019-11-27 16:38:16,226 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=27.2.
Bed 60.1/60.0, Extruder 210.2/210.0.
00:32:52, 88%% done, 00:04:00 remaining.
Completed time 16:42:16.
2019-11-27 16:38:16,229 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:38:16,232 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=27.2.\nBed 60.1/60.0, Extruder 210.2/210.0.\n11:11:52, 88%% done, 11:11:00 remaining.\nCompleted time 11:11:16. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:38:16,235 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:38:16,323 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:38:16,324 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:38:16,326 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:38:18,915 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:38:19,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:19,974 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=26.60 old_z=27.20 last_z=26.60 notification_height=3.00 notification_time=5
2019-11-27 16:38:19,981 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 88.70960611820874, 'printTimeLeftOrigin': 'estimate', 'printTime': 1976, 'printTimeLeft': 240, 'filepos': 321072L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 26.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:38:19,982 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:38:19,988 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 88.70960611820874, 'printTimeLeftOrigin': 'estimate', 'printTime': 1976, 'printTimeLeft': 240, 'filepos': 321072L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 26.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 26.6, u'old': 27.2}, 'time_left': u'00:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 88, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:19', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:32:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 26.6, 'e2_temp': 210.2}
2019-11-27 16:38:19,991 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=26.6.
Bed 60.1/60.0, Extruder 210.2/210.0.
00:32:56, 88%% done, 00:04:00 remaining.
Completed time 16:42:19.
2019-11-27 16:38:19,993 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:38:19,996 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=26.6.\nBed 60.1/60.0, Extruder 210.2/210.0.\n11:11:56, 88%% done, 11:11:00 remaining.\nCompleted time 11:11:19. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:38:19,998 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:38:20,034 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:38:20,035 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:38:20,037 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:38:22,622 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:38:23,645 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:23,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:23,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:34,951 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:35,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:35,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:37,489 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:37,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.2}
2019-11-27 16:38:37,824 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:37,876 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:38,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:38:45,977 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:46,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:46,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:46,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:46,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:57,644 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:57,704 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:57,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.4}
2019-11-27 16:38:58,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:38:58,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.6}
2019-11-27 16:39:07,580 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:07,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:39:07,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.6}
2019-11-27 16:39:09,455 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:39:11,827 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:39:11,914 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.6}
2019-11-27 16:39:12,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:12,407 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.8}
2019-11-27 16:39:20,598 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:20,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:20,725 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.8}
2019-11-27 16:39:31,733 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:31,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:31,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 27.8}
2019-11-27 16:39:32,650 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 27.4}
2019-11-27 16:39:32,714 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 28.0}
2019-11-27 16:39:40,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:39:52,829 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:52,887 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 27.4}
2019-11-27 16:39:53,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 28.0}
2019-11-27 16:39:53,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.2, u'old': 27.6}
2019-11-27 16:39:53,873 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 28.2}
2019-11-27 16:40:10,749 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:40:13,960 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:14,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.2, u'old': 27.6}
2019-11-27 16:40:14,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 28.2}
2019-11-27 16:40:14,906 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.4, u'old': 27.8}
2019-11-27 16:40:15,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 28.4}
2019-11-27 16:40:35,133 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:35,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.4, u'old': 27.8}
2019-11-27 16:40:35,368 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 28.4}
2019-11-27 16:40:36,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.6, u'old': 28.0}
2019-11-27 16:40:36,188 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 28.6}
2019-11-27 16:40:41,479 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:40:56,658 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:56,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.6, u'old': 28.0}
2019-11-27 16:40:56,750 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=28.60 old_z=28.00 last_z=26.60 notification_height=3.00 notification_time=5
2019-11-27 16:40:56,761 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 97.32577030193184, 'printTimeLeftOrigin': 'estimate', 'printTime': 2133, 'printTimeLeft': 60, 'filepos': 352257L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 28.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:40:56,763 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:40:56,771 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 97.32577030193184, 'printTimeLeftOrigin': 'estimate', 'printTime': 2133, 'printTimeLeft': 60, 'filepos': 352257L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 28.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 28.6, u'old': 28.0}, 'time_left': u'00:01:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 97, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:56', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:33', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 28.6, 'e2_temp': 209.8}
2019-11-27 16:40:56,774 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=28.6.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:35:33, 97%% done, 00:01:00 remaining.
Completed time 16:41:56.
2019-11-27 16:40:56,776 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:40:56,780 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=28.6.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:33, 97%% done, 11:11:00 remaining.\nCompleted time 11:11:56. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:40:56,783 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:40:56,823 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:40:56,825 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:40:56,826 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:40:59,500 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:41:12,122 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:41:16,372 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:41:16,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 58.6, u'old': 28.6}
2019-11-27 16:41:19,335 - octoprint.util.comm - INFO - Finished in 2155.967 s.
2019-11-27 16:41:19,343 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Finishing"
2019-11-27 16:41:19,411 - octoprint.printer.standard.job - INFO - Print job done - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh
2019-11-27 16:41:19,571 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-11-27 16:41:19,594 - octoprint.plugins.telegram - DEBUG - Got an event: PrintDone Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'time': 2156.041444578208, u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}
2019-11-27 16:41:19,616 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 2156, 'printTimeLeft': 0, 'filepos': 361936L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 58.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:41:19,626 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.7, u'target': 0.0, u'offset': 0}}
2019-11-27 16:41:19,661 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:41:19,701 - octoprint.plugins.telegram - INFO - An Exception in get final time : unsupported type for timedelta seconds component: unicode
2019-11-27 16:41:19,720 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintDone', 'status': {u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 2156, 'printTimeLeft': 0, 'filepos': 361936L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 58.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 211.7, 'payload': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'time': 2156.041444578208, u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'time_left': u'00:00:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'delay': 5, 'with_gif': False, 'with_image': True, 'event': u'PrintDone'}, 'percent': 100, 'bed_temp': 60.2, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.7, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': '', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 58.6, 'e2_temp': 211.7}
2019-11-27 16:41:19,728 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Finished printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode.
2019-11-27 16:41:19,731 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintDone
2019-11-27 16:41:20,225 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': u'local', u'throttled_mask': 327680, u'elapsed': 2156, 'file': '9abac95ac19612db2adaea14fc45f07071903bb4', u'throttled_now': False, u'throttled_past': True}
2019-11-27 16:41:24,783 - octoprint.plugins.telegram - INFO - Sending a message: Finished printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:41:24,786 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:41:24,845 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:41:24,848 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:41:24,851 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:41:27,777 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:41:42,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:42:13,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:42:44,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:02,975 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:43:14,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:26,077 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 109826}
2019-11-27 16:43:45,466 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:50,781 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:43:51,054 - octoprint.server.util.flask - INFO - Passively logging in user None from ::ffff:192.168.62.170
2019-11-27 16:44:06,045 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:44:08,566 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:44:16,140 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:44:46,857 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:44:48,885 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.124
2019-11-27 16:45:17,544 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:45:48,206 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:45:51,440 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-11-27 16:45:51,688 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:45:51,981 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:45:54,242 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:46:18,867 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:46:49,486 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:47:20,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:47:50,701 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:48:21,324 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:48:51,954 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:49:22,582 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:49:53,236 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:50:23,891 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:50:54,508 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:51:25,113 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:51:55,748 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:52:26,372 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:52:56,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:53:27,614 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:53:58,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:54:28,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:54:59,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:55:30,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:56:00,735 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:56:31,380 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:57:02,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:57:32,670 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:58:02,979 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:58:03,313 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:58:26,064 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 110726}
2019-11-27 16:58:33,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:59:04,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:59:35,269 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:00:05,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:00:36,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:01:07,184 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:01:37,797 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:02:08,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:02:39,055 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:03:09,687 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:03:40,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:04:11,268 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:04:41,903 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:05:12,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:05:43,188 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:06:13,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:06:44,445 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:07:09,100 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-11-27 17:07:09,128 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-11-27 17:07:15,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
|
AttributeError
|
def start_timelapse(self, gcode_file):
self._logger.debug("Starting timelapse for %s" % gcode_file)
self._image_number = 0
self._capture_errors = 0
self._capture_success = 0
self._in_timelapse = True
self._gcode_file = os.path.basename(gcode_file)
self._file_prefix = "{}_{}".format(
os.path.splitext(self._gcode_file)[0], time.strftime("%Y%m%d%H%M%S")
)
|
def start_timelapse(self, gcodeFile):
self._logger.debug("Starting timelapse for %s" % gcodeFile)
self._image_number = 0
self._capture_errors = 0
self._capture_success = 0
self._in_timelapse = True
self._gcode_file = os.path.basename(gcodeFile)
self._file_prefix = "{}_{}".format(
os.path.splitext(self._gcode_file)[0], time.strftime("%Y%m%d%H%M%S")
)
|
https://github.com/OctoPrint/OctoPrint/issues/3354
|
2019-11-27 10:13:02,875 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:13:02,882 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-11-27 10:13:02,883 - octoprint.server - INFO - OctoPrint 1.4.0rc1
2019-11-27 10:13:02,889 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| M73 ETA Override (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_m73etaoverride
| Octoslack (1.9.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Prusa Mesh Leveling (0.3.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrusaMeshMap
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Telegram Notifications (1.5.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_telegram
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
Prefix legend: ! = disabled, # = blacklisted, * = incompatible
2019-11-27 10:13:02,915 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 917016576
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-11-27 10:13:02,916 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-11-27 10:13:05,965 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:13:25,005 - octoprint.plugins.tracking - INFO - Sent tracking event pong, payload: {'plugins': u'telegram:1.5.0,prusameshmap:0.3.0,m73etaoverride:1.0.1,firmwareupdater:1.6.1,octoslack:1.9.1'}
2019-11-27 10:13:25,845 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 86426}
2019-11-27 10:13:36,600 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:14:07,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:14:37,863 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:15:08,528 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:15:39,186 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:16:09,814 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:16:40,423 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:17:11,072 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:17:41,708 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:18:12,330 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:18:42,990 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:19:13,652 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:19:44,302 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:20:14,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:20:45,546 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:21:16,178 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:21:46,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:22:17,433 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:22:48,088 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:23:18,716 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:23:49,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:24:20,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:24:50,728 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:25:21,360 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:25:52,004 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:26:22,631 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:26:53,262 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:27:23,890 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:27:54,509 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:28:02,879 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:28:25,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:28:26,432 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 87326}
2019-11-27 10:28:55,828 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:29:26,474 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:29:57,089 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:30:27,713 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:30:58,338 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:31:28,978 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:31:59,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:32:30,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:33:00,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:33:31,506 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:34:02,141 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:34:32,775 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:35:03,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:35:34,012 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:36:04,639 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:36:35,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:37:05,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:37:36,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:38:07,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:38:37,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:39:08,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:39:39,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:40:09,673 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:40:40,288 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:41:10,898 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:41:41,551 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:42:12,222 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:42:42,876 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:43:02,882 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:43:13,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:43:25,869 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 88226}
2019-11-27 10:43:44,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:44:14,777 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:44:45,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:45:16,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:45:46,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:46:17,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:46:47,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:47:18,552 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:47:49,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:48:19,818 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:48:50,488 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:49:21,118 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:49:51,741 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:50:22,378 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:50:53,048 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:51:23,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:51:54,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:52:24,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:52:55,574 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:53:26,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:53:56,819 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:54:27,449 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:54:58,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:55:28,691 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:55:59,332 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:56:29,970 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:57:00,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:57:31,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:58:01,882 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:58:02,886 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 10:58:25,840 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 89126}
2019-11-27 10:58:32,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:59:03,139 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 10:59:33,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:00:04,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:00:35,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:01:05,696 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:01:36,322 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:02:06,953 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:02:37,607 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:03:08,239 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:03:38,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:04:09,510 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:04:40,131 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:05:10,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:05:41,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:06:12,078 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:06:42,758 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:07:13,392 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:07:44,044 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:08:14,689 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:08:46,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:09:17,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:09:47,666 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:10:18,306 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:10:48,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:11:19,582 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:11:50,229 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:12:20,885 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:12:51,525 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:13:02,890 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:13:22,151 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:13:25,895 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 90026}
2019-11-27 11:13:52,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:14:23,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:14:54,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:15:24,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:15:55,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:16:25,915 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:16:56,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:17:27,187 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:17:57,831 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:18:28,455 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:18:59,144 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:19:29,832 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:20:00,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:20:31,113 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:21:01,742 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:21:32,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:22:02,989 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:22:33,621 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:23:04,274 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:23:34,910 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:24:05,588 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:24:36,249 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:25:06,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:25:37,521 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:26:08,174 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:26:38,847 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:27:09,486 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:27:40,111 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:28:02,894 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:28:10,754 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:28:25,893 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 90926}
2019-11-27 11:28:41,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:29:12,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:29:42,649 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:30:13,275 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:30:43,911 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:31:14,560 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:31:45,224 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:32:15,880 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:32:46,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:33:17,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:33:47,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:34:18,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:34:49,042 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:35:19,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:35:50,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:36:20,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:36:51,648 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:37:22,263 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:37:52,916 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:38:23,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:38:54,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:39:24,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:39:55,483 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:40:26,099 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:40:56,725 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:41:27,376 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:41:58,077 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:42:28,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:42:59,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:43:02,898 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:43:25,912 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 91826}
2019-11-27 11:43:30,091 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:44:00,714 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:44:31,375 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:45:02,029 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:45:32,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:46:03,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:46:33,955 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:47:04,642 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:47:35,294 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:48:05,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:48:36,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:49:07,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:49:37,860 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:50:08,538 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:50:39,163 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:51:09,768 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:51:40,405 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:52:11,041 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:52:41,684 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:53:12,367 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:53:42,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:54:13,622 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:54:44,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:55:14,879 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:55:45,515 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:56:16,167 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:56:46,773 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:57:17,414 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:57:48,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:58:02,902 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 11:58:18,647 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:58:25,903 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 92726}
2019-11-27 11:58:49,260 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:59:19,895 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 11:59:50,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:00:21,171 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:00:51,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:01:22,498 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:01:53,134 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:02:23,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:02:54,416 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:03:25,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:03:55,707 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:04:26,332 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:04:57,005 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:05:27,646 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:05:58,314 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:06:28,926 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:06:59,570 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:07:30,216 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:08:00,862 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:08:31,495 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:09:02,126 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:09:32,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:10:03,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:10:34,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:11:04,698 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:11:35,368 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:12:06,014 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:12:36,640 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:13:02,906 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:13:07,265 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:13:25,937 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 93626}
2019-11-27 12:13:37,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:14:08,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:14:39,227 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:15:09,862 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:15:40,469 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:16:11,095 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:16:41,718 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:17:12,386 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:17:43,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:18:13,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:18:44,292 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:19:14,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:19:45,533 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:20:16,170 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:20:46,784 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:21:17,407 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:21:48,039 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:22:18,684 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:22:49,335 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:23:19,993 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:23:50,626 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:24:21,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:24:51,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:25:22,545 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:25:53,168 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:26:23,789 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:26:54,412 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:27:25,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:27:55,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:28:02,910 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:28:25,874 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 94526}
2019-11-27 12:28:26,273 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:28:56,937 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:29:27,632 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:29:58,238 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:30:28,866 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:30:59,481 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:31:30,115 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:32:00,762 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:32:31,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:33:02,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:33:32,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:34:03,307 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:34:33,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:35:04,588 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:35:35,223 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:36:05,855 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:36:36,528 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:37:07,162 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:37:37,818 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:38:08,450 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:38:39,100 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:39:09,733 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:39:40,352 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:40:10,964 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:40:41,593 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:41:12,207 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:41:42,833 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:42:13,456 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:42:44,089 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:43:02,914 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:43:14,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:43:25,925 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 95426}
2019-11-27 12:43:45,406 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:44:16,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:44:46,675 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:45:17,331 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:45:47,945 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:46:18,570 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:46:49,200 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:47:19,812 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:47:50,436 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:48:21,062 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:48:51,700 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:49:22,362 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:49:53,032 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:50:23,654 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:50:54,296 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:51:24,951 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:51:55,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:52:26,242 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:52:56,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:53:27,517 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:53:58,148 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:54:28,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:54:59,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:55:30,069 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:56:00,685 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:56:31,319 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:57:01,983 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:57:32,600 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:58:02,918 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 12:58:03,237 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:58:25,958 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 96326}
2019-11-27 12:58:33,874 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:59:04,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 12:59:35,157 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:00:05,788 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:00:36,424 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:01:07,085 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:01:37,706 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:02:08,358 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:02:38,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:03:09,614 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:03:40,301 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:04:10,939 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:04:41,563 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:05:12,198 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:05:42,853 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:06:13,489 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:06:44,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:07:14,769 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:07:45,389 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:08:16,042 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:08:46,669 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:09:17,326 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:09:47,954 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:10:18,592 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:10:49,211 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:11:19,840 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:11:50,451 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:12:21,065 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:12:51,691 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:13:02,921 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:13:22,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:13:26,168 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 97226}
2019-11-27 13:13:52,981 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:14:23,624 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:14:54,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:15:24,881 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:15:55,519 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:16:26,155 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:16:56,817 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:17:27,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:17:58,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:18:28,699 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:18:59,357 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:19:29,987 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:20:00,653 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:20:31,283 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:21:01,910 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:21:32,547 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:22:03,204 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:22:33,827 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:23:04,469 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:23:35,091 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:24:05,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:24:36,336 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:25:06,952 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:25:37,577 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:26:08,225 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:26:38,884 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:27:09,502 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:27:40,126 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:28:02,925 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:28:10,753 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:28:25,964 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 98126}
2019-11-27 13:28:41,375 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:29:12,013 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:29:42,629 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:30:13,271 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:30:43,897 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:31:14,534 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:31:45,150 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:32:15,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:32:46,418 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:33:17,037 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:33:47,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:34:18,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:34:48,917 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:35:19,541 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:35:50,162 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:36:20,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:36:51,437 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:37:22,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:37:52,682 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:38:23,305 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:38:53,930 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:39:24,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:39:55,182 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:40:25,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:40:56,403 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:41:27,020 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:41:57,650 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:42:28,378 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:42:59,008 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:43:02,929 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:43:25,927 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 99026}
2019-11-27 13:43:29,644 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:44:00,269 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:44:30,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:45:01,604 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:45:32,241 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:46:02,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:46:33,508 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:47:04,144 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:47:34,816 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:48:05,459 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:48:36,202 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:49:06,837 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:49:37,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:50:08,082 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:50:38,801 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:51:09,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:51:40,049 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:52:10,676 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:52:41,292 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:53:11,992 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:53:42,632 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:54:13,346 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:54:43,992 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:55:14,610 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:55:45,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:56:15,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:56:46,527 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:57:17,156 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:57:47,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:58:02,934 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 13:58:18,515 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:58:25,997 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 99926}
2019-11-27 13:58:49,147 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:59:19,788 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 13:59:50,401 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:00:21,026 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:00:51,645 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:01:22,356 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:01:52,985 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:02:23,601 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:02:54,233 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:03:24,912 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:03:55,550 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:04:26,199 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:04:56,844 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:05:27,452 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:05:58,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:06:28,747 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:06:59,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:07:30,003 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:08:00,720 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:08:31,350 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:09:01,980 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:09:32,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:10:03,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:10:33,899 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:11:04,542 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:11:35,192 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:12:05,841 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:12:36,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:13:02,937 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:13:07,099 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:13:25,996 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 100826}
2019-11-27 14:13:37,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:14:08,353 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:14:38,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:15:09,599 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:15:40,231 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:16:10,853 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:16:41,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:17:12,146 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:17:42,765 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:18:13,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:18:43,996 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:19:14,625 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:19:45,267 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:20:15,871 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:20:46,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:21:17,149 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:21:47,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:22:18,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:22:49,047 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:23:19,686 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:23:50,340 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:24:20,962 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:24:51,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:25:22,219 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:25:52,851 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:26:23,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:26:54,071 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:27:24,711 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:27:55,359 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:28:02,940 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:28:26,002 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:28:26,018 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 101726}
2019-11-27 14:28:56,608 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:29:27,271 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:29:57,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:30:28,513 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:30:59,155 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:31:29,822 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:32:00,450 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:32:31,086 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:33:01,703 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:33:32,337 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:34:02,972 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:34:33,623 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:35:04,221 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:35:34,893 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:36:05,531 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:36:36,160 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:37:06,811 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:37:37,473 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:38:08,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:38:38,759 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:39:09,391 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:39:40,029 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:40:10,658 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:40:41,289 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:41:11,953 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:41:42,580 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:42:13,216 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:42:43,840 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:43:02,944 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:43:14,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:43:25,984 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 102626}
2019-11-27 14:43:45,115 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:44:15,761 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:44:46,411 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:45:17,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:45:47,692 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:46:18,349 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:46:48,956 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:47:19,610 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:47:50,212 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:48:20,843 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:48:51,502 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:49:22,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:49:52,782 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:50:23,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:50:54,032 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:51:24,667 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:51:55,287 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:52:25,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:52:56,592 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:53:27,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:53:57,877 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:54:28,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:54:59,145 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:55:29,792 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:56:00,424 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:56:31,053 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:57:01,698 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:57:32,340 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:58:02,949 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 14:58:02,976 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:58:26,022 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 103526}
2019-11-27 14:58:33,620 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:59:04,264 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 14:59:34,906 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:00:05,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:00:36,148 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:01:06,801 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:01:37,491 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:02:08,146 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:02:38,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:03:09,410 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:03:40,038 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:04:10,678 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:04:41,290 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:05:11,924 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:05:42,597 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:06:13,235 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:06:43,846 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:07:14,500 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:07:45,138 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:08:15,759 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:08:46,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:09:17,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:09:47,665 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:10:18,304 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:10:48,937 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:11:19,612 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:11:50,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:12:20,929 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:12:51,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:13:02,953 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:13:22,235 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:13:26,008 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 104426}
2019-11-27 15:13:52,888 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:14:23,487 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:14:54,102 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:15:24,775 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:15:55,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:16:26,092 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:16:56,717 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:17:27,321 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:17:57,959 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:18:28,579 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:18:59,182 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:19:29,825 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:20:00,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:20:31,090 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:21:01,722 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:21:32,334 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:22:02,941 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:22:33,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:23:04,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:23:34,847 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:24:05,470 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:24:36,127 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:25:06,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:25:37,431 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:26:08,097 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:26:38,727 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:27:09,366 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:27:40,010 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:28:02,956 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:28:10,634 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:28:25,980 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 105326}
2019-11-27 15:28:41,282 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:29:11,936 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:29:42,559 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:30:13,190 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:30:43,810 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:31:14,449 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:31:45,075 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:32:15,703 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:32:46,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:33:16,982 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:33:47,635 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:34:18,251 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:34:48,909 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:35:19,556 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:35:50,206 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:36:20,823 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:36:51,436 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:37:22,049 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:37:52,676 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:38:23,307 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:38:53,933 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:39:24,540 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:39:55,161 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:40:25,774 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:40:56,408 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:41:27,066 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:41:57,706 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:42:28,317 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:42:58,985 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:43:02,960 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:43:27,179 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 106226}
2019-11-27 15:43:29,619 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:44:00,243 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:44:30,879 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:45:01,498 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:45:32,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:46:02,767 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:46:33,377 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:47:04,018 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:47:34,628 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:48:05,265 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:48:35,918 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:49:06,529 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:49:37,179 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:50:07,770 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:50:38,429 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:51:09,051 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:51:39,700 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:52:10,304 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:52:40,928 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:53:11,579 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:53:42,247 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:54:12,892 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:54:43,539 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:55:14,201 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:55:44,819 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:56:15,443 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:56:46,064 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:57:16,668 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:57:47,274 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:58:02,964 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 15:58:17,896 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:58:26,013 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 107126}
2019-11-27 15:58:48,526 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:59:19,154 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 15:59:49,793 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:00:20,425 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:00:51,036 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:01:21,664 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:01:38,380 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:01:38,751 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:01:41,047 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.64s
2019-11-27 16:01:42,062 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.71s
2019-11-27 16:01:44,048 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 1.1s
2019-11-27 16:01:44,802 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.61s
2019-11-27 16:01:45,637 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.68s
2019-11-27 16:01:47,355 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-11-27 16:01:49,354 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-11-27 16:01:50,452 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-11-27 16:01:50,651 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:01:52,279 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:02:22,887 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:02:53,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:24,143 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:45,243 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-11-27 16:03:45,264 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-11-27 16:03:45,287 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:54,826 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:03:57,456 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,665 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,672 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-11-27 16:03:59,687 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-11-27 16:03:59,761 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:03:59,861 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.8.1 based on Marlin"
2019-11-27 16:03:59,926 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-11-27 16:03:59,937 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-11-27 16:03:59,990 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:04:01,610 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': u'Prusa-Firmware 3.8.1 based on Marlin'}
2019-11-27 16:04:24,308 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-11-27 16:04:24,337 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-11-27 16:04:25,447 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:04:56,077 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:05:11,486 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode
2019-11-27 16:05:11,494 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode
2019-11-27 16:05:16,357 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode finished, needed 4.87s
2019-11-27 16:05:17,654 - octoprint.printer.standard.job - INFO - Print job selected - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-11-27 16:05:23,381 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting"
2019-11-27 16:05:23,445 - octoprint.printer.standard.job - INFO - Print job started - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh, user: osh
2019-11-27 16:05:23,458 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-11-27 16:05:23,460 - octoprint.events - ERROR - Got an exception while sending event PrintStarted (Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}) to <bound method ZTimelapse.on_print_started of <octoprint.timelapse.ZTimelapse object at 0x703c8250>>
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/events.py", line 187, in _work
listener(event, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/timelapse.py", line 468, in on_print_started
self.start_timelapse(payload["file"])
KeyError: u'file'
2019-11-27 16:05:23,472 - octoprint.util.comm - INFO - Changing monitoring state from "Starting" to "Printing"
2019-11-27 16:05:23,774 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:05:23,777 - octoprint.plugins.telegram - DEBUG - Got an event: PrintStarted Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}
2019-11-27 16:05:23,812 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 0.17848459396136335, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 1980, 'filepos': 646L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:05:23,849 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 19.3, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 19.6, u'target': 0.0, u'offset': 0}}
2019-11-27 16:05:23,947 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintStarted', 'status': {u'progress': {'completion': 0.17848459396136335, 'printTimeLeftOrigin': 'estimate', 'printTime': 0, 'printTimeLeft': 1980, 'filepos': 646L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': None, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 19.6, 'payload': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'user': 'osh', u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'time_left': u'00:33:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'PrintStarted'}, 'percent': 0, 'bed_temp': 19.3, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 19.3, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 19.6, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 19.6, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': u'16:38:23', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:00:00', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 0.0, 'e2_temp': 19.6}
2019-11-27 16:05:23,952 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Started printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode.
2019-11-27 16:05:23,955 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintStarted
2019-11-27 16:05:23,958 - octoprint.plugins.telegram - INFO - Sending a message: Started printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:05:23,961 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:05:24,015 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:05:24,016 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:05:24,018 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:05:24,369 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': u'local', u'throttled_now': False, u'throttled_mask': 327680, 'file': '9abac95ac19612db2adaea14fc45f07071903bb4', u'throttled_past': True}
2019-11-27 16:05:26,305 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-11-27 16:05:26,537 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:05:26,690 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:05:57,347 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:06:03,774 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-11-27 16:06:04,768 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-11-27 16:06:27,977 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:06:58,601 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:07:29,226 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:07:59,838 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:08:30,129 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:30,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': None}
2019-11-27 16:08:30,475 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:08:41,818 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:41,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.3, u'old': 0.4}
2019-11-27 16:08:41,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.3}
2019-11-27 16:08:59,648 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:08:59,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 0.2}
2019-11-27 16:08:59,773 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.6}
2019-11-27 16:09:01,063 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:09:03,916 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:03,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:08,386 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:08,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:08,866 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:30,520 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:30,585 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:30,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:31,734 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:09:32,441 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:32,614 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.2, u'old': 0.8}
2019-11-27 16:09:46,034 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:46,089 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 0.2}
2019-11-27 16:09:46,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 0.8}
2019-11-27 16:09:50,473 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:09:51,049 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:09:51,077 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 1.0}
2019-11-27 16:09:52,909 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:09:53,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.4, u'old': 1.0}
2019-11-27 16:10:02,399 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:10:07,076 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:07,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 0.4}
2019-11-27 16:10:07,420 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.443, u'old': 1.0}
2019-11-27 16:10:10,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.043, u'old': 0.443}
2019-11-27 16:10:10,727 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.043}
2019-11-27 16:10:17,810 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:17,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:18,468 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.2}
2019-11-27 16:10:20,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:20,620 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.6, u'old': 1.2}
2019-11-27 16:10:33,090 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:10:34,411 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:34,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 0.6}
2019-11-27 16:10:34,474 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=1.20 old_z=0.60 last_z=0.00 notification_height=3.00 notification_time=5
2019-11-27 16:10:34,482 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 4.346072233765085, 'printTimeLeftOrigin': 'estimate', 'printTime': 311, 'printTimeLeft': 1920, 'filepos': 15730L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:10:34,486 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 208.6, u'target': 210.0, u'offset': 0}}
2019-11-27 16:10:34,494 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 4.346072233765085, 'printTimeLeftOrigin': 'estimate', 'printTime': 311, 'printTimeLeft': 1920, 'filepos': 15730L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 1.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 208.6, 'payload': {u'new': 1.2, u'old': 0.6}, 'time_left': u'00:32:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 4, 'bed_temp': 59.7, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.7, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 208.6, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 208.6, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:34', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:05:11', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 1.2, 'e2_temp': 208.6}
2019-11-27 16:10:34,496 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=1.2.
Bed 59.7/60.0, Extruder 208.6/210.0.
00:05:11, 4%% done, 00:32:00 remaining.
Completed time 16:42:34.
2019-11-27 16:10:34,498 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:10:34,499 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=1.2.\nBed 59.7/60.0, Extruder 208.6/210.0.\n11:11:11, 4%% done, 11:11:00 remaining.\nCompleted time 11:11:34. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:10:34,501 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:10:34,536 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:10:34,538 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:10:34,540 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:10:37,202 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:10:39,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.686, u'old': 1.2}
2019-11-27 16:10:39,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.286, u'old': 0.686}
2019-11-27 16:10:39,364 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.286}
2019-11-27 16:10:41,772 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:41,823 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-11-27 16:10:41,982 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.8, u'old': 1.4}
2019-11-27 16:10:58,001 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:10:58,064 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 0.8}
2019-11-27 16:10:58,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 0.929, u'old': 1.4}
2019-11-27 16:11:01,093 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.529, u'old': 0.929}
2019-11-27 16:11:01,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.529}
2019-11-27 16:11:03,778 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:11:05,476 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:05,529 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:05,690 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.6}
2019-11-27 16:11:12,490 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:12,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:12,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.0, u'old': 1.6}
2019-11-27 16:11:13,311 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 1.0}
2019-11-27 16:11:13,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.171, u'old': 1.6}
2019-11-27 16:11:15,397 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.771, u'old': 1.171}
2019-11-27 16:11:16,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.771}
2019-11-27 16:11:19,788 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:19,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:20,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:25,847 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:25,899 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:25,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:26,742 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:26,788 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.2, u'old': 1.8}
2019-11-27 16:11:28,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 1.2}
2019-11-27 16:11:28,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 1.8}
2019-11-27 16:11:28,863 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:28,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:34,381 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:11:35,374 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:35,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:35,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:36,152 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:36,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.4, u'old': 2.0}
2019-11-27 16:11:37,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 1.4}
2019-11-27 16:11:37,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.414, u'old': 2.0}
2019-11-27 16:11:39,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.014, u'old': 1.414}
2019-11-27 16:11:40,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.014}
2019-11-27 16:11:44,109 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:44,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:44,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:50,281 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:50,347 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:50,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:51,307 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:51,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.6, u'old': 2.2}
2019-11-27 16:11:52,971 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 1.6}
2019-11-27 16:11:53,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.657, u'old': 2.2}
2019-11-27 16:11:55,193 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.257, u'old': 1.657}
2019-11-27 16:11:55,871 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:11:55,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.257}
2019-11-27 16:11:59,675 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:11:59,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:05,035 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:12:05,876 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:05,902 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:06,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:06,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:07,043 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:07,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:08,018 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.8, u'old': 2.4}
2019-11-27 16:12:08,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 1.8}
2019-11-27 16:12:08,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 1.9, u'old': 2.4}
2019-11-27 16:12:11,650 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:11,705 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.5, u'old': 1.9}
2019-11-27 16:12:12,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.5}
2019-11-27 16:12:15,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:15,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:22,030 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:22,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:22,186 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:24,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:24,149 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.0, u'old': 2.6}
2019-11-27 16:12:24,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 2.0}
2019-11-27 16:12:24,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.1, u'old': 2.6}
2019-11-27 16:12:27,794 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:27,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.7, u'old': 2.1}
2019-11-27 16:12:28,527 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.7}
2019-11-27 16:12:31,604 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:31,778 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.8}
2019-11-27 16:12:35,710 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:12:37,858 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:37,918 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:37,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.2, u'old': 2.8}
2019-11-27 16:12:42,925 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:42,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 2.2}
2019-11-27 16:12:43,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.3, u'old': 2.8}
2019-11-27 16:12:46,446 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 2.3}
2019-11-27 16:12:47,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 2.9}
2019-11-27 16:12:50,162 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:12:50,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 2.4}
2019-11-27 16:12:50,231 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=3.00 old_z=2.40 last_z=3.00 notification_height=3.00 notification_time=5
2019-11-27 16:12:50,242 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.850791300119358, 'printTimeLeftOrigin': 'estimate', 'printTime': 446, 'printTimeLeft': 1740, 'filepos': 50131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:12:50,246 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:12:50,254 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.850791300119358, 'printTimeLeftOrigin': 'estimate', 'printTime': 446, 'printTimeLeft': 1740, 'filepos': 50131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 3.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 3.0, u'old': 2.4}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:50', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:07:26', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 3.0, 'e2_temp': 210.1}
2019-11-27 16:12:50,259 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=3.0.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:07:26, 13%% done, 00:29:00 remaining.
Completed time 16:41:50.
2019-11-27 16:12:50,264 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:12:50,270 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=3.0.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:26, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:50. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:12:50,275 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:12:50,344 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:12:50,345 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:12:50,346 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:12:52,873 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:12:54,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.4, u'old': 3.0}
2019-11-27 16:12:54,522 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=2.40 old_z=3.00 last_z=2.40 notification_height=3.00 notification_time=5
2019-11-27 16:12:54,533 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 13.94003359710004, 'printTimeLeftOrigin': 'estimate', 'printTime': 451, 'printTimeLeft': 1740, 'filepos': 50454L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:12:54,536 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:12:54,540 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 13.94003359710004, 'printTimeLeftOrigin': 'estimate', 'printTime': 451, 'printTimeLeft': 1740, 'filepos': 50454L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 2.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 2.4, u'old': 3.0}, 'time_left': u'00:29:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 13, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:54', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:07:31', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 2.4, 'e2_temp': 210.1}
2019-11-27 16:12:54,543 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=2.4.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:07:31, 13%% done, 00:29:00 remaining.
Completed time 16:41:54.
2019-11-27 16:12:54,544 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:12:54,546 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=2.4.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:31, 13%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:12:54,548 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:12:54,592 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:12:54,593 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:12:54,594 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:12:57,060 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:13:02,968 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:13:04,652 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:04,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 2.4}
2019-11-27 16:13:04,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.5, u'old': 3.0}
2019-11-27 16:13:06,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:13:08,469 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.1, u'old': 2.5}
2019-11-27 16:13:09,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.1}
2019-11-27 16:13:12,194 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:12,256 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-11-27 16:13:12,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.6, u'old': 3.2}
2019-11-27 16:13:26,055 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 108026}
2019-11-27 16:13:26,324 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:26,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 2.6}
2019-11-27 16:13:26,655 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.7, u'old': 3.2}
2019-11-27 16:13:30,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 2.7}
2019-11-27 16:13:30,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 3.3}
2019-11-27 16:13:33,917 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:33,984 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 2.8}
2019-11-27 16:13:34,153 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.8, u'old': 3.4}
2019-11-27 16:13:36,993 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:13:47,405 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:47,479 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 2.8}
2019-11-27 16:13:47,768 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 2.9, u'old': 3.4}
2019-11-27 16:13:51,263 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 2.9}
2019-11-27 16:13:51,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 3.5}
2019-11-27 16:13:55,020 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:13:55,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 3.0}
2019-11-27 16:13:55,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.0, u'old': 3.6}
2019-11-27 16:14:07,643 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:14:09,075 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:09,129 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 3.0}
2019-11-27 16:14:09,363 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.1, u'old': 3.6}
2019-11-27 16:14:12,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.7, u'old': 3.1}
2019-11-27 16:14:13,573 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.2, u'old': 3.7}
2019-11-27 16:14:16,607 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:16,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 3.2}
2019-11-27 16:14:16,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 3.8}
2019-11-27 16:14:19,216 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.9, u'old': 3.3}
2019-11-27 16:14:20,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.3, u'old': 3.9}
2019-11-27 16:14:23,121 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:23,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.9, u'old': 3.3}
2019-11-27 16:14:23,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.4, u'old': 3.9}
2019-11-27 16:14:27,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 3.4}
2019-11-27 16:14:28,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.0}
2019-11-27 16:14:34,361 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:34,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-11-27 16:14:35,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.5, u'old': 4.1}
2019-11-27 16:14:38,325 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:14:39,120 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.1, u'old': 3.5}
2019-11-27 16:14:39,750 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:39,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.6, u'old': 4.1}
2019-11-27 16:14:44,288 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 3.6}
2019-11-27 16:14:44,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.748, u'old': 4.2}
2019-11-27 16:14:49,542 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:49,595 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.348, u'old': 3.748}
2019-11-27 16:14:50,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.748, u'old': 4.348}
2019-11-27 16:14:54,558 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:14:54,623 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.348, u'old': 3.748}
2019-11-27 16:14:55,321 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.348}
2019-11-27 16:14:59,966 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:00,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-11-27 16:15:00,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.8, u'old': 4.4}
2019-11-27 16:15:01,007 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 3.8}
2019-11-27 16:15:01,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 3.996, u'old': 4.4}
2019-11-27 16:15:08,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:15:10,164 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:10,221 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.596, u'old': 3.996}
2019-11-27 16:15:11,091 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.596}
2019-11-27 16:15:15,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:15,270 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:15,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.6}
2019-11-27 16:15:18,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:18,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.0, u'old': 4.6}
2019-11-27 16:15:18,857 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 4.0}
2019-11-27 16:15:18,953 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.6}
2019-11-27 16:15:19,382 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:19,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.8}
2019-11-27 16:15:20,887 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:20,945 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:21,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.2, u'old': 4.8}
2019-11-27 16:15:23,261 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 4.2}
2019-11-27 16:15:23,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.244, u'old': 4.8}
2019-11-27 16:15:23,871 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.844, u'old': 4.244}
2019-11-27 16:15:24,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 4.844}
2019-11-27 16:15:31,449 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:31,503 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-11-27 16:15:31,720 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.4, u'old': 5.0}
2019-11-27 16:15:35,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 4.4}
2019-11-27 16:15:35,623 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.00 old_z=4.40 last_z=2.40 notification_height=3.00 notification_time=5
2019-11-27 16:15:35,633 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 20.18340259051324, 'printTimeLeftOrigin': 'estimate', 'printTime': 612, 'printTimeLeft': 1620, 'filepos': 73051L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.492, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:15:35,637 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:15:35,645 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 20.18340259051324, 'printTimeLeftOrigin': 'estimate', 'printTime': 612, 'printTimeLeft': 1620, 'filepos': 73051L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 4.492, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 5.0, u'old': 4.4}, 'time_left': u'00:27:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 20, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:35', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 5.0, 'e2_temp': 210.0}
2019-11-27 16:15:35,650 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.0.
Bed 59.8/60.0, Extruder 210.0/210.0.
00:10:12, 20%% done, 00:27:00 remaining.
Completed time 16:42:35.
2019-11-27 16:15:35,655 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:15:35,661 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.0.\nBed 59.8/60.0, Extruder 210.0/210.0.\n11:11:12, 20%% done, 11:11:00 remaining.\nCompleted time 11:11:35. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:15:35,665 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:15:35,693 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:15:35,694 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:15:35,695 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:15:38,285 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:15:39,638 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:15:39,752 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:39,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.492, u'old': 5.0}
2019-11-27 16:15:39,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.092, u'old': 4.492}
2019-11-27 16:15:39,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 5.092}
2019-11-27 16:15:44,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 4.6}
2019-11-27 16:15:44,326 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.6, u'old': 5.2}
2019-11-27 16:15:48,082 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:15:48,158 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 4.6}
2019-11-27 16:15:48,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.741, u'old': 5.2}
2019-11-27 16:15:49,044 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.341, u'old': 4.741}
2019-11-27 16:15:50,126 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.8, u'old': 5.341}
2019-11-27 16:16:00,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:00,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 4.8}
2019-11-27 16:16:00,164 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=5.40 old_z=4.80 last_z=5.40 notification_height=3.00 notification_time=5
2019-11-27 16:16:00,168 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 21.116993059546438, 'printTimeLeftOrigin': 'estimate', 'printTime': 636, 'printTimeLeft': 1560, 'filepos': 76430L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:16:00,170 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:16:00,174 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 21.116993059546438, 'printTimeLeftOrigin': 'estimate', 'printTime': 636, 'printTimeLeft': 1560, 'filepos': 76430L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 5.4, u'old': 4.8}, 'time_left': u'00:26:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 21, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:00', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:36', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 5.4, 'e2_temp': 210.0}
2019-11-27 16:16:00,180 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=5.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:10:36, 21%% done, 00:26:00 remaining.
Completed time 16:42:00.
2019-11-27 16:16:00,183 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:16:00,186 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=5.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:36, 21%% done, 11:11:00 remaining.\nCompleted time 11:11:00. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:16:00,190 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:16:00,254 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:16:00,256 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:16:00,258 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:16:02,707 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:16:04,271 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 4.989, u'old': 5.4}
2019-11-27 16:16:04,278 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=4.99 old_z=5.40 last_z=4.99 notification_height=3.00 notification_time=5
2019-11-27 16:16:04,283 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 21.30072720038902, 'printTimeLeftOrigin': 'estimate', 'printTime': 640, 'printTimeLeft': 1560, 'filepos': 77095L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:16:04,286 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:16:04,290 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 21.30072720038902, 'printTimeLeftOrigin': 'estimate', 'printTime': 640, 'printTimeLeft': 1560, 'filepos': 77095L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 5.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 4.989, u'old': 5.4}, 'time_left': u'00:26:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 21, 'bed_temp': 59.8, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.8, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:04', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:10:40', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 4.989, 'e2_temp': 210.0}
2019-11-27 16:16:04,294 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=4.989.
Bed 59.8/60.0, Extruder 210.0/210.0.
00:10:40, 21%% done, 00:26:00 remaining.
Completed time 16:42:04.
2019-11-27 16:16:04,297 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:16:04,301 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=4.989.\nBed 59.8/60.0, Extruder 210.0/210.0.\n11:11:40, 21%% done, 11:11:00 remaining.\nCompleted time 11:11:04. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:16:04,303 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:16:04,370 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:16:04,372 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:16:04,374 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:16:06,905 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:16:08,036 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:08,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.589, u'old': 4.989}
2019-11-27 16:16:08,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.589}
2019-11-27 16:16:08,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-11-27 16:16:09,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.0, u'old': 5.6}
2019-11-27 16:16:10,260 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:16:12,661 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 5.0}
2019-11-27 16:16:12,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 5.6}
2019-11-27 16:16:13,615 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:13,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 5.2}
2019-11-27 16:16:13,743 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.2, u'old': 5.8}
2019-11-27 16:16:17,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 5.2}
2019-11-27 16:16:17,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.237, u'old': 5.8}
2019-11-27 16:16:18,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.837, u'old': 5.237}
2019-11-27 16:16:19,487 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:19,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 5.837}
2019-11-27 16:16:26,006 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:26,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 5.4}
2019-11-27 16:16:26,304 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.4, u'old': 6.0}
2019-11-27 16:16:29,836 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 5.4}
2019-11-27 16:16:30,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.485, u'old': 6.0}
2019-11-27 16:16:30,923 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.085, u'old': 5.485}
2019-11-27 16:16:31,965 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:32,024 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.085}
2019-11-27 16:16:38,470 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:38,533 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-11-27 16:16:38,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.6, u'old': 6.2}
2019-11-27 16:16:40,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:16:42,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 5.6}
2019-11-27 16:16:42,558 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.733, u'old': 6.2}
2019-11-27 16:16:43,402 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.333, u'old': 5.733}
2019-11-27 16:16:44,447 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:44,510 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 6.333}
2019-11-27 16:16:50,954 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:51,010 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 5.8}
2019-11-27 16:16:51,234 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.8, u'old': 6.4}
2019-11-27 16:16:54,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 5.8}
2019-11-27 16:16:54,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 5.981, u'old': 6.4}
2019-11-27 16:16:55,542 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.581, u'old': 5.981}
2019-11-27 16:16:56,591 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:16:56,646 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 6.581}
2019-11-27 16:17:03,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:03,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 6.0}
2019-11-27 16:17:03,408 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.0, u'old': 6.6}
2019-11-27 16:17:07,233 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 6.0}
2019-11-27 16:17:07,272 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.6}
2019-11-27 16:17:07,548 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-11-27 16:17:07,612 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.2, u'old': 6.8}
2019-11-27 16:17:11,085 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:11,159 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 6.2}
2019-11-27 16:17:11,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.229, u'old': 6.8}
2019-11-27 16:17:11,581 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:17:11,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.829, u'old': 6.229}
2019-11-27 16:17:12,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 6.829}
2019-11-27 16:17:19,147 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:19,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 6.4}
2019-11-27 16:17:19,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.4, u'old': 7.0}
2019-11-27 16:17:22,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 6.4}
2019-11-27 16:17:22,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.477, u'old': 7.0}
2019-11-27 16:17:23,390 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.077, u'old': 6.477}
2019-11-27 16:17:24,461 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:24,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 7.077}
2019-11-27 16:17:30,969 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:31,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 6.6}
2019-11-27 16:17:31,274 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.6, u'old': 7.2}
2019-11-27 16:17:33,602 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:17:34,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 6.6}
2019-11-27 16:17:34,405 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.725, u'old': 7.2}
2019-11-27 16:17:35,132 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.325, u'old': 6.725}
2019-11-27 16:17:36,231 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:36,285 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.8, u'old': 7.325}
2019-11-27 16:17:42,181 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:17:42,706 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:42,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 6.8}
2019-11-27 16:17:42,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 6.973, u'old': 7.4}
2019-11-27 16:17:46,553 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.573, u'old': 6.973}
2019-11-27 16:17:47,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.0, u'old': 7.573}
2019-11-27 16:17:54,102 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:17:54,154 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 7.0}
2019-11-27 16:17:54,385 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.2, u'old': 7.6}
2019-11-27 16:17:57,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 7.2}
2019-11-27 16:17:57,804 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.222, u'old': 7.8}
2019-11-27 16:18:01,325 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:01,392 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.822, u'old': 7.222}
2019-11-27 16:18:02,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 7.822}
2019-11-27 16:18:08,921 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:08,979 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-11-27 16:18:08,995 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=8.00 old_z=7.40 last_z=8.00 notification_height=3.00 notification_time=5
2019-11-27 16:18:09,004 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.083064409177315, 'printTimeLeftOrigin': 'estimate', 'printTime': 765, 'printTimeLeft': 1440, 'filepos': 94404L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:18:09,007 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:18:09,014 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.083064409177315, 'printTimeLeftOrigin': 'estimate', 'printTime': 765, 'printTimeLeft': 1440, 'filepos': 94404L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 8.0, u'old': 7.4}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:09', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:12:45', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 8.0, 'e2_temp': 209.8}
2019-11-27 16:18:09,017 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=8.0.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:12:45, 26%% done, 00:24:00 remaining.
Completed time 16:42:09.
2019-11-27 16:18:09,020 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:18:09,024 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=8.0.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:45, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:18:09,030 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:18:09,094 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:18:09,095 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:18:09,097 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:18:11,539 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:18:12,844 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:18:13,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.4, u'old': 8.0}
2019-11-27 16:18:13,197 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=7.40 old_z=8.00 last_z=7.40 notification_height=3.00 notification_time=5
2019-11-27 16:18:13,204 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 26.345541753238145, 'printTimeLeftOrigin': 'estimate', 'printTime': 769, 'printTimeLeft': 1440, 'filepos': 95354L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.07, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:18:13,206 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:18:13,211 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 26.345541753238145, 'printTimeLeftOrigin': 'estimate', 'printTime': 769, 'printTimeLeft': 1440, 'filepos': 95354L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 8.07, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 7.4, u'old': 8.0}, 'time_left': u'00:24:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 26, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:13', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:12:49', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 7.4, 'e2_temp': 210.1}
2019-11-27 16:18:13,214 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=7.4.
Bed 59.9/60.0, Extruder 210.1/210.0.
00:12:49, 26%% done, 00:24:00 remaining.
Completed time 16:42:13.
2019-11-27 16:18:13,217 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:18:13,219 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=7.4.\nBed 59.9/60.0, Extruder 210.1/210.0.\n11:11:49, 26%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:18:13,222 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:18:13,274 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:18:13,276 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:18:13,277 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:18:15,864 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:18:17,049 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:17,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 7.4}
2019-11-27 16:18:17,110 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.47, u'old': 8.0}
2019-11-27 16:18:17,144 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.07, u'old': 7.47}
2019-11-27 16:18:17,175 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 8.07}
2019-11-27 16:18:20,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 7.6}
2019-11-27 16:18:20,987 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.6, u'old': 8.2}
2019-11-27 16:18:24,183 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:24,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 7.6}
2019-11-27 16:18:24,345 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.718, u'old': 8.2}
2019-11-27 16:18:24,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.318, u'old': 7.718}
2019-11-27 16:18:26,047 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 8.318}
2019-11-27 16:18:32,502 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:32,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 7.8}
2019-11-27 16:18:32,781 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.8, u'old': 8.4}
2019-11-27 16:18:36,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 7.8}
2019-11-27 16:18:36,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 7.966, u'old': 8.4}
2019-11-27 16:18:36,944 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.566, u'old': 7.966}
2019-11-27 16:18:37,778 - tornado.access - WARNING - 404 GET /apple-touch-icon-152x152-precomposed.png (::ffff:192.168.62.124) 19.19ms
2019-11-27 16:18:37,837 - tornado.access - WARNING - 404 GET /apple-touch-icon-152x152.png (::ffff:192.168.62.124) 9.13ms
2019-11-27 16:18:37,858 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.124
2019-11-27 16:18:38,110 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:38,135 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.566}
2019-11-27 16:18:38,178 - octoprint.server.util.flask - INFO - Passively logging in user None from ::ffff:192.168.62.124
2019-11-27 16:18:43,518 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:18:44,492 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:44,547 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-11-27 16:18:44,775 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.0, u'old': 8.6}
2019-11-27 16:18:47,044 - octoprint.server.util.sockjs - INFO - User osh logged out, logging out on socket
2019-11-27 16:18:47,079 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.124
2019-11-27 16:18:48,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 8.0}
2019-11-27 16:18:48,703 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 8.6}
2019-11-27 16:18:49,783 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:18:49,830 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 8.2}
2019-11-27 16:18:49,942 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.2, u'old': 8.8}
2019-11-27 16:18:50,899 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.124
2019-11-27 16:18:51,041 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-11-27 16:18:52,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 8.2}
2019-11-27 16:18:52,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.214, u'old': 8.8}
2019-11-27 16:18:53,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.814, u'old': 8.214}
2019-11-27 16:18:54,574 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 8.814}
2019-11-27 16:19:01,031 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:01,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 8.4}
2019-11-27 16:19:01,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.4, u'old': 9.0}
2019-11-27 16:19:04,696 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 8.4}
2019-11-27 16:19:04,760 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.462, u'old': 9.0}
2019-11-27 16:19:05,694 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.062, u'old': 8.462}
2019-11-27 16:19:06,733 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:06,785 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.062}
2019-11-27 16:19:13,242 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:13,295 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-11-27 16:19:13,546 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.6, u'old': 9.2}
2019-11-27 16:19:14,163 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:19:16,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 8.6}
2019-11-27 16:19:16,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.71, u'old': 9.2}
2019-11-27 16:19:17,900 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.31, u'old': 8.71}
2019-11-27 16:19:18,924 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:18,993 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 9.31}
2019-11-27 16:19:25,435 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:25,487 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 8.8}
2019-11-27 16:19:25,747 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.8, u'old': 9.4}
2019-11-27 16:19:29,156 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 8.8}
2019-11-27 16:19:29,230 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 8.958, u'old': 9.4}
2019-11-27 16:19:30,080 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.558, u'old': 8.958}
2019-11-27 16:19:31,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:31,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.558}
2019-11-27 16:19:37,627 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:37,692 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:37,915 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.6}
2019-11-27 16:19:40,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:41,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.0, u'old': 9.6}
2019-11-27 16:19:41,580 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 9.0}
2019-11-27 16:19:41,765 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.6}
2019-11-27 16:19:42,445 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:42,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-11-27 16:19:44,795 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:19:45,909 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:45,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:46,060 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.2, u'old': 9.8}
2019-11-27 16:19:46,356 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 9.2}
2019-11-27 16:19:46,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.206, u'old': 9.8}
2019-11-27 16:19:47,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.806, u'old': 9.206}
2019-11-27 16:19:48,417 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 9.806}
2019-11-27 16:19:54,865 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:19:54,921 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 9.4}
2019-11-27 16:19:55,134 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.4, u'old': 10.0}
2019-11-27 16:19:58,779 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 9.4}
2019-11-27 16:19:59,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.454, u'old': 10.0}
2019-11-27 16:19:59,790 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.054, u'old': 9.454}
2019-11-27 16:20:00,846 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:00,908 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 10.054}
2019-11-27 16:20:07,349 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:07,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 9.6}
2019-11-27 16:20:07,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.6, u'old': 10.2}
2019-11-27 16:20:11,293 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 9.6}
2019-11-27 16:20:11,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.703, u'old': 10.2}
2019-11-27 16:20:12,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.303, u'old': 9.703}
2019-11-27 16:20:13,424 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:13,481 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.303}
2019-11-27 16:20:15,463 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:20:19,929 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:19,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:20,013 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.40 old_z=9.80 last_z=10.40 notification_height=3.00 notification_time=5
2019-11-27 16:20:20,018 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 31.426550550373545, 'printTimeLeftOrigin': 'estimate', 'printTime': 896, 'printTimeLeft': 1320, 'filepos': 113744L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:20,021 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:20,026 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 31.426550550373545, 'printTimeLeftOrigin': 'estimate', 'printTime': 896, 'printTimeLeft': 1320, 'filepos': 113744L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 10.4, u'old': 9.8}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 31, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:20', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:14:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 10.4, 'e2_temp': 209.9}
2019-11-27 16:20:20,029 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.4.
Bed 59.9/60.0, Extruder 209.9/210.0.
00:14:56, 31%% done, 00:22:00 remaining.
Completed time 16:42:20.
2019-11-27 16:20:20,032 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:20,034 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.4.\nBed 59.9/60.0, Extruder 209.9/210.0.\n11:11:56, 31%% done, 11:11:00 remaining.\nCompleted time 11:11:20. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:20,036 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:20,123 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:20,124 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:20,125 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:22,678 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:23,840 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-11-27 16:20:23,855 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=9.80 old_z=10.40 last_z=9.80 notification_height=3.00 notification_time=5
2019-11-27 16:20:23,866 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 31.619126033331863, 'printTimeLeftOrigin': 'estimate', 'printTime': 900, 'printTimeLeft': 1320, 'filepos': 114441L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:23,868 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:23,892 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 31.619126033331863, 'printTimeLeftOrigin': 'estimate', 'printTime': 900, 'printTimeLeft': 1320, 'filepos': 114441L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 9.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 9.8, u'old': 10.4}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 31, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:23', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:00', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 9.8, 'e2_temp': 210.0}
2019-11-27 16:20:23,904 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=9.8.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:15:00, 31%% done, 00:22:00 remaining.
Completed time 16:42:23.
2019-11-27 16:20:23,915 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:23,921 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=9.8.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:00, 31%% done, 11:11:00 remaining.\nCompleted time 11:11:23. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:23,926 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:23,976 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:23,978 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:23,980 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:26,532 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:27,630 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:27,656 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:27,689 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.8, u'old': 10.4}
2019-11-27 16:20:27,740 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 9.8}
2019-11-27 16:20:27,782 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 9.951, u'old': 10.4}
2019-11-27 16:20:27,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.551, u'old': 9.951}
2019-11-27 16:20:27,854 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.551}
2019-11-27 16:20:32,258 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:32,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.6}
2019-11-27 16:20:34,589 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:34,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:35,442 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.0, u'old': 10.6}
2019-11-27 16:20:36,067 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 10.0}
2019-11-27 16:20:36,084 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=10.60 old_z=10.00 last_z=9.80 notification_height=3.00 notification_time=5
2019-11-27 16:20:36,094 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 32.1620396976261, 'printTimeLeftOrigin': 'estimate', 'printTime': 912, 'printTimeLeft': 1320, 'filepos': 116406L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:20:36,098 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.3, u'target': 210.0, u'offset': 0}}
2019-11-27 16:20:36,106 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 32.1620396976261, 'printTimeLeftOrigin': 'estimate', 'printTime': 912, 'printTimeLeft': 1320, 'filepos': 116406L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 10.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.3, 'payload': {u'new': 10.6, u'old': 10.0}, 'time_left': u'00:22:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 32, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.3, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.3, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:15:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 10.6, 'e2_temp': 210.3}
2019-11-27 16:20:36,115 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=10.6.
Bed 59.9/60.0, Extruder 210.3/210.0.
00:15:12, 32%% done, 00:22:00 remaining.
Completed time 16:42:36.
2019-11-27 16:20:36,121 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:20:36,125 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=10.6.\nBed 59.9/60.0, Extruder 210.3/210.0.\n11:11:12, 32%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:20:36,128 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:20:36,187 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:20:36,188 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:20:36,190 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:20:38,727 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:20:39,756 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:39,783 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.199, u'old': 10.6}
2019-11-27 16:20:39,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.799, u'old': 10.199}
2019-11-27 16:20:39,847 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.2, u'old': 10.799}
2019-11-27 16:20:44,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 10.2}
2019-11-27 16:20:44,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.4, u'old': 10.8}
2019-11-27 16:20:46,105 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:20:47,954 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:48,008 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 10.4}
2019-11-27 16:20:48,107 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.447, u'old': 11.0}
2019-11-27 16:20:51,680 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.047, u'old': 10.447}
2019-11-27 16:20:52,768 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.6, u'old': 11.047}
2019-11-27 16:20:59,227 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:20:59,281 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 10.6}
2019-11-27 16:20:59,501 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.695, u'old': 11.2}
2019-11-27 16:21:03,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.295, u'old': 10.695}
2019-11-27 16:21:04,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 11.295}
2019-11-27 16:21:10,620 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:10,677 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 10.8}
2019-11-27 16:21:10,892 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.8, u'old': 11.4}
2019-11-27 16:21:12,380 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 10.8}
2019-11-27 16:21:13,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 10.943, u'old': 11.4}
2019-11-27 16:21:14,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.543, u'old': 10.943}
2019-11-27 16:21:15,814 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:15,883 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.543}
2019-11-27 16:21:16,715 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:21:22,326 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:22,376 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:22,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-11-27 16:21:25,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:25,864 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.0, u'old': 11.6}
2019-11-27 16:21:26,097 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 11.0}
2019-11-27 16:21:26,155 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.191, u'old': 11.6}
2019-11-27 16:21:26,920 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.791, u'old': 11.191}
2019-11-27 16:21:27,967 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:28,019 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.791}
2019-11-27 16:21:34,471 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:34,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:34,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.8}
2019-11-27 16:21:38,270 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:38,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.2, u'old': 11.8}
2019-11-27 16:21:38,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 11.2}
2019-11-27 16:21:38,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 11.8}
2019-11-27 16:21:38,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 11.4}
2019-11-27 16:21:39,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.4, u'old': 12.0}
2019-11-27 16:21:42,618 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:42,695 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 11.4}
2019-11-27 16:21:42,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.439, u'old': 12.0}
2019-11-27 16:21:43,798 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.039, u'old': 11.439}
2019-11-27 16:21:44,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.039}
2019-11-27 16:21:47,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:21:51,346 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:51,398 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-11-27 16:21:51,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.6, u'old': 12.2}
2019-11-27 16:21:55,233 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 11.6}
2019-11-27 16:21:55,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.687, u'old': 12.2}
2019-11-27 16:21:56,335 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.287, u'old': 11.687}
2019-11-27 16:21:57,373 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:21:57,430 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.8, u'old': 12.287}
2019-11-27 16:22:07,387 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:07,454 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 11.8}
2019-11-27 16:22:07,641 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 11.935, u'old': 12.4}
2019-11-27 16:22:08,565 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.535, u'old': 11.935}
2019-11-27 16:22:09,659 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 12.535}
2019-11-27 16:22:16,116 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:16,169 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 12.0}
2019-11-27 16:22:16,399 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.0, u'old': 12.6}
2019-11-27 16:22:18,101 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:22:19,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 12.0}
2019-11-27 16:22:20,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.184, u'old': 12.6}
2019-11-27 16:22:21,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.784, u'old': 12.184}
2019-11-27 16:22:22,130 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:22,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.784}
2019-11-27 16:22:28,635 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:28,700 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-11-27 16:22:28,719 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.80 old_z=12.20 last_z=12.80 notification_height=3.00 notification_time=5
2019-11-27 16:22:28,728 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 36.30476106272933, 'printTimeLeftOrigin': 'estimate', 'printTime': 1025, 'printTimeLeft': 1200, 'filepos': 131400L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:22:28,731 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:22:28,736 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 36.30476106272933, 'printTimeLeftOrigin': 'estimate', 'printTime': 1025, 'printTimeLeft': 1200, 'filepos': 131400L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 12.8, u'old': 12.2}, 'time_left': u'00:20:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 36, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:28', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:17:05', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 12.8, 'e2_temp': 210.0}
2019-11-27 16:22:28,739 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.8.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:17:05, 36%% done, 00:20:00 remaining.
Completed time 16:42:28.
2019-11-27 16:22:28,742 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:22:28,745 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.8.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:05, 36%% done, 11:11:00 remaining.\nCompleted time 11:11:28. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:22:28,747 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:22:28,833 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:22:28,835 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:22:28,837 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:22:31,392 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:22:32,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.2, u'old': 12.8}
2019-11-27 16:22:32,466 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=12.20 old_z=12.80 last_z=12.20 notification_height=3.00 notification_time=5
2019-11-27 16:22:32,470 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 36.45644533840237, 'printTimeLeftOrigin': 'estimate', 'printTime': 1029, 'printTimeLeft': 1200, 'filepos': 131949L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:22:32,476 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:22:32,483 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 36.45644533840237, 'printTimeLeftOrigin': 'estimate', 'printTime': 1029, 'printTimeLeft': 1200, 'filepos': 131949L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 12.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 12.2, u'old': 12.8}, 'time_left': u'00:20:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 36, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:32', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:17:09', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 12.2, 'e2_temp': 209.9}
2019-11-27 16:22:32,485 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=12.2.
Bed 60.1/60.0, Extruder 209.9/210.0.
00:17:09, 36%% done, 00:20:00 remaining.
Completed time 16:42:32.
2019-11-27 16:22:32,487 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:22:32,489 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=12.2.\nBed 60.1/60.0, Extruder 209.9/210.0.\n11:11:09, 36%% done, 11:11:00 remaining.\nCompleted time 11:11:32. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:22:32,490 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:22:32,553 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:22:32,554 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:22:32,555 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:22:35,108 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:22:36,113 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:36,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 12.2}
2019-11-27 16:22:36,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 12.8}
2019-11-27 16:22:36,215 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 12.4}
2019-11-27 16:22:36,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.4, u'old': 13.0}
2019-11-27 16:22:37,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 12.4}
2019-11-27 16:22:37,165 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.432, u'old': 13.0}
2019-11-27 16:22:38,205 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.032, u'old': 12.432}
2019-11-27 16:22:39,302 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 13.032}
2019-11-27 16:22:45,787 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:45,842 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 12.6}
2019-11-27 16:22:46,030 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.6, u'old': 13.2}
2019-11-27 16:22:48,783 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:22:49,577 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 12.6}
2019-11-27 16:22:49,809 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.68, u'old': 13.2}
2019-11-27 16:22:50,679 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.28, u'old': 12.68}
2019-11-27 16:22:51,724 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:51,777 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.28}
2019-11-27 16:22:58,226 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:22:58,296 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-11-27 16:22:58,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.8, u'old': 13.4}
2019-11-27 16:23:01,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 12.8}
2019-11-27 16:23:01,973 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 12.928, u'old': 13.4}
2019-11-27 16:23:02,825 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.528, u'old': 12.928}
2019-11-27 16:23:03,861 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:03,926 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 13.528}
2019-11-27 16:23:10,381 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:10,434 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 13.0}
2019-11-27 16:23:10,649 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.0, u'old': 13.6}
2019-11-27 16:23:14,493 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 13.0}
2019-11-27 16:23:14,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.176, u'old': 13.6}
2019-11-27 16:23:14,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.776, u'old': 13.176}
2019-11-27 16:23:16,031 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:16,092 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 13.776}
2019-11-27 16:23:19,388 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:23:22,538 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:22,592 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 13.2}
2019-11-27 16:23:22,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.2, u'old': 13.8}
2019-11-27 16:23:26,412 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 13.2}
2019-11-27 16:23:26,448 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 13.8}
2019-11-27 16:23:26,770 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-11-27 16:23:26,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.4, u'old': 14.0}
2019-11-27 16:23:30,002 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:30,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 13.4}
2019-11-27 16:23:30,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.424, u'old': 14.0}
2019-11-27 16:23:30,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.024, u'old': 13.424}
2019-11-27 16:23:31,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 14.024}
2019-11-27 16:23:38,308 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:38,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 13.6}
2019-11-27 16:23:38,579 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.6, u'old': 14.2}
2019-11-27 16:23:41,568 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 13.6}
2019-11-27 16:23:41,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.672, u'old': 14.2}
2019-11-27 16:23:42,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.272, u'old': 13.672}
2019-11-27 16:23:43,541 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:43,594 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.8, u'old': 14.272}
2019-11-27 16:23:50,053 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:23:50,079 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:23:50,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 13.8}
2019-11-27 16:23:50,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 13.92, u'old': 14.4}
2019-11-27 16:23:53,898 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.52, u'old': 13.92}
2019-11-27 16:23:54,978 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.0, u'old': 14.52}
2019-11-27 16:24:01,438 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:01,497 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 14.0}
2019-11-27 16:24:01,755 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.168, u'old': 14.6}
2019-11-27 16:24:05,280 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.768, u'old': 14.168}
2019-11-27 16:24:06,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.2, u'old': 14.768}
2019-11-27 16:24:12,823 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:12,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 14.2}
2019-11-27 16:24:13,136 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 14.8}
2019-11-27 16:24:16,422 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 14.4}
2019-11-27 16:24:16,567 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.4, u'old': 15.0}
2019-11-27 16:24:19,450 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:19,505 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 14.4}
2019-11-27 16:24:19,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.416, u'old': 15.0}
2019-11-27 16:24:20,489 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.016, u'old': 14.416}
2019-11-27 16:24:20,697 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:24:21,557 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.016}
2019-11-27 16:24:28,016 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:28,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-11-27 16:24:28,092 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.20 old_z=14.60 last_z=15.20 notification_height=3.00 notification_time=5
2019-11-27 16:24:28,102 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 40.927401529552185, 'printTimeLeftOrigin': 'estimate', 'printTime': 1144, 'printTimeLeft': 1080, 'filepos': 148131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:24:28,111 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:24:28,125 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 40.927401529552185, 'printTimeLeftOrigin': 'estimate', 'printTime': 1144, 'printTimeLeft': 1080, 'filepos': 148131L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 15.2, u'old': 14.6}, 'time_left': u'00:18:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 40, 'bed_temp': 60.2, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:28', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:19:04', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 15.2, 'e2_temp': 210.1}
2019-11-27 16:24:28,131 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.2.
Bed 60.2/60.0, Extruder 210.1/210.0.
00:19:04, 40%% done, 00:18:00 remaining.
Completed time 16:42:28.
2019-11-27 16:24:28,135 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:24:28,139 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.2.\nBed 60.2/60.0, Extruder 210.1/210.0.\n11:11:04, 40%% done, 11:11:00 remaining.\nCompleted time 11:11:28. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:24:28,143 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:24:28,182 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:24:28,184 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:24:28,185 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:24:30,666 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:24:31,837 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.6, u'old': 15.2}
2019-11-27 16:24:31,844 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=14.60 old_z=15.20 last_z=14.60 notification_height=3.00 notification_time=5
2019-11-27 16:24:31,848 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 41.135449361213034, 'printTimeLeftOrigin': 'estimate', 'printTime': 1148, 'printTimeLeft': 1080, 'filepos': 148884L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.665, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:24:31,849 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:24:31,854 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 41.135449361213034, 'printTimeLeftOrigin': 'estimate', 'printTime': 1148, 'printTimeLeft': 1080, 'filepos': 148884L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 14.665, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 14.6, u'old': 15.2}, 'time_left': u'00:18:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 41, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:31', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:19:08', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 14.6, 'e2_temp': 210.0}
2019-11-27 16:24:31,859 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=14.6.
Bed 60.1/60.0, Extruder 210.0/210.0.
00:19:08, 41%% done, 00:18:00 remaining.
Completed time 16:42:31.
2019-11-27 16:24:31,861 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:24:31,864 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=14.6.\nBed 60.1/60.0, Extruder 210.0/210.0.\n11:11:08, 41%% done, 11:11:00 remaining.\nCompleted time 11:11:31. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:24:31,866 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:24:31,902 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:24:31,903 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:24:31,905 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:24:34,450 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:24:35,486 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:35,512 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 14.6}
2019-11-27 16:24:35,550 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.665, u'old': 15.2}
2019-11-27 16:24:35,582 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.265, u'old': 14.665}
2019-11-27 16:24:35,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 15.265}
2019-11-27 16:24:39,897 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 14.8}
2019-11-27 16:24:40,117 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.8, u'old': 15.4}
2019-11-27 16:24:43,709 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:43,762 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 14.8}
2019-11-27 16:24:43,832 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 14.913, u'old': 15.4}
2019-11-27 16:24:44,279 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.513, u'old': 14.913}
2019-11-27 16:24:45,395 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 15.513}
2019-11-27 16:24:51,312 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:24:51,853 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:51,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 15.0}
2019-11-27 16:24:52,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.0, u'old': 15.6}
2019-11-27 16:24:55,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 15.0}
2019-11-27 16:24:55,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.161, u'old': 15.6}
2019-11-27 16:24:56,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.761, u'old': 15.161}
2019-11-27 16:24:57,570 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:24:57,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.761}
2019-11-27 16:25:04,079 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:04,139 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-11-27 16:25:04,401 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.2, u'old': 15.8}
2019-11-27 16:25:07,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 15.2}
2019-11-27 16:25:07,867 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 15.8}
2019-11-27 16:25:08,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 15.4}
2019-11-27 16:25:08,672 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.4, u'old': 16.0}
2019-11-27 16:25:11,960 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:12,030 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 15.4}
2019-11-27 16:25:12,098 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.409, u'old': 16.0}
2019-11-27 16:25:13,025 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.009, u'old': 15.409}
2019-11-27 16:25:14,121 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 16.009}
2019-11-27 16:25:20,571 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:20,643 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 15.6}
2019-11-27 16:25:20,841 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.6, u'old': 16.2}
2019-11-27 16:25:21,967 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:25:24,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 15.6}
2019-11-27 16:25:24,309 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.657, u'old': 16.2}
2019-11-27 16:25:25,224 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.257, u'old': 15.657}
2019-11-27 16:25:26,251 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:26,316 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.257}
2019-11-27 16:25:32,761 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:32,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:33,034 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-11-27 16:25:36,002 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:36,171 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.8, u'old': 16.4}
2019-11-27 16:25:36,178 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=15.80 old_z=16.40 last_z=14.60 notification_height=3.00 notification_time=5
2019-11-27 16:25:36,184 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 43.648324565669064, 'printTimeLeftOrigin': 'estimate', 'printTime': 1212, 'printTimeLeft': 1020, 'filepos': 157979L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:25:36,186 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:25:36,191 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 43.648324565669064, 'printTimeLeftOrigin': 'estimate', 'printTime': 1212, 'printTimeLeft': 1020, 'filepos': 157979L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 15.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 15.8, u'old': 16.4}, 'time_left': u'00:17:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 43, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:20:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 15.8, 'e2_temp': 210.1}
2019-11-27 16:25:36,193 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=15.8.
Bed 60.1/60.0, Extruder 210.1/210.0.
00:20:12, 43%% done, 00:17:00 remaining.
Completed time 16:42:36.
2019-11-27 16:25:36,195 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:25:36,198 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=15.8.\nBed 60.1/60.0, Extruder 210.1/210.0.\n11:11:12, 43%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:25:36,208 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:25:36,285 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:25:36,286 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:25:36,287 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:25:38,975 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:25:40,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:40,150 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 15.8}
2019-11-27 16:25:40,181 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 15.905, u'old': 16.4}
2019-11-27 16:25:40,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.505, u'old': 15.905}
2019-11-27 16:25:40,246 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.505}
2019-11-27 16:25:45,054 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:45,258 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:45,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.6}
2019-11-27 16:25:48,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:48,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.0, u'old': 16.6}
2019-11-27 16:25:48,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 16.0}
2019-11-27 16:25:49,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.153, u'old': 16.6}
2019-11-27 16:25:49,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.753, u'old': 16.153}
2019-11-27 16:25:51,013 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:51,072 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.753}
2019-11-27 16:25:52,655 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:25:57,528 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:25:57,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:25:57,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.8}
2019-11-27 16:26:00,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:26:00,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.2, u'old': 16.8}
2019-11-27 16:26:01,571 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 16.2}
2019-11-27 16:26:01,763 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 16.8}
2019-11-27 16:26:02,393 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-11-27 16:26:02,475 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.4, u'old': 17.0}
2019-11-27 16:26:06,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:06,195 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 16.4}
2019-11-27 16:26:06,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.401, u'old': 17.0}
2019-11-27 16:26:07,173 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.001, u'old': 16.401}
2019-11-27 16:26:08,248 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 17.001}
2019-11-27 16:26:14,699 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:14,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 16.6}
2019-11-27 16:26:14,968 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.6, u'old': 17.2}
2019-11-27 16:26:18,933 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 16.6}
2019-11-27 16:26:19,069 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.649, u'old': 17.2}
2019-11-27 16:26:19,605 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.249, u'old': 16.649}
2019-11-27 16:26:20,678 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:20,735 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.249}
2019-11-27 16:26:23,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:26:27,180 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:27,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:27,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.4}
2019-11-27 16:26:30,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:30,625 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.8, u'old': 17.4}
2019-11-27 16:26:31,443 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 16.8}
2019-11-27 16:26:31,517 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 16.897, u'old': 17.4}
2019-11-27 16:26:31,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.497, u'old': 16.897}
2019-11-27 16:26:32,962 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:33,017 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.497}
2019-11-27 16:26:39,466 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:39,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:39,541 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.60 old_z=17.00 last_z=17.60 notification_height=3.00 notification_time=5
2019-11-27 16:26:39,554 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 46.48832942840723, 'printTimeLeftOrigin': 'estimate', 'printTime': 1276, 'printTimeLeft': 900, 'filepos': 168258L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:26:39,557 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:26:39,564 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 46.48832942840723, 'printTimeLeftOrigin': 'estimate', 'printTime': 1276, 'printTimeLeft': 900, 'filepos': 168258L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 17.6, u'old': 17.0}, 'time_left': u'00:15:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 46, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:39', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:21:16', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 17.6, 'e2_temp': 209.9}
2019-11-27 16:26:39,566 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.6.
Bed 60.0/60.0, Extruder 209.9/210.0.
00:21:16, 46%% done, 00:15:00 remaining.
Completed time 16:41:39.
2019-11-27 16:26:39,567 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:26:39,570 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.6.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:16, 46%% done, 11:11:00 remaining.\nCompleted time 11:11:39. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:26:39,572 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:26:39,609 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:26:39,611 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:26:39,613 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:26:42,234 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:26:43,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-11-27 16:26:43,301 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=17.00 old_z=17.60 last_z=17.00 notification_height=3.00 notification_time=5
2019-11-27 16:26:43,308 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 46.66377481101631, 'printTimeLeftOrigin': 'estimate', 'printTime': 1279, 'printTimeLeft': 900, 'filepos': 168893L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:26:43,312 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:26:43,319 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 46.66377481101631, 'printTimeLeftOrigin': 'estimate', 'printTime': 1279, 'printTimeLeft': 900, 'filepos': 168893L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 17.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 17.0, u'old': 17.6}, 'time_left': u'00:15:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 46, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:43', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:21:19', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 17.0, 'e2_temp': 210.2}
2019-11-27 16:26:43,322 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=17.0.
Bed 59.9/60.0, Extruder 210.2/210.0.
00:21:19, 46%% done, 00:15:00 remaining.
Completed time 16:41:43.
2019-11-27 16:26:43,327 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:26:43,332 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=17.0.\nBed 59.9/60.0, Extruder 210.2/210.0.\n11:11:19, 46%% done, 11:11:00 remaining.\nCompleted time 11:11:43. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:26:43,337 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:26:43,394 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:26:43,396 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:26:43,398 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:26:46,165 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:26:47,180 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:47,214 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:47,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.0, u'old': 17.6}
2019-11-27 16:26:47,287 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 17.0}
2019-11-27 16:26:47,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.146, u'old': 17.6}
2019-11-27 16:26:47,355 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.746, u'old': 17.146}
2019-11-27 16:26:47,388 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.2, u'old': 17.746}
2019-11-27 16:26:51,739 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 17.2}
2019-11-27 16:26:51,969 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.394, u'old': 17.8}
2019-11-27 16:26:53,942 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:26:55,510 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:26:55,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.994, u'old': 17.394}
2019-11-27 16:26:56,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.4, u'old': 17.994}
2019-11-27 16:27:03,110 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:03,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 17.4}
2019-11-27 16:27:03,426 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.6, u'old': 18.0}
2019-11-27 16:27:06,752 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 17.6}
2019-11-27 16:27:06,849 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.642, u'old': 18.2}
2019-11-27 16:27:10,437 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:10,490 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.242, u'old': 17.642}
2019-11-27 16:27:11,566 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 18.242}
2019-11-27 16:27:18,022 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:18,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 17.8}
2019-11-27 16:27:18,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.8, u'old': 18.4}
2019-11-27 16:27:19,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 17.8}
2019-11-27 16:27:20,491 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 17.89, u'old': 18.4}
2019-11-27 16:27:22,262 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.49, u'old': 17.89}
2019-11-27 16:27:23,303 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:23,358 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.49}
2019-11-27 16:27:24,590 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:27:29,813 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:29,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:30,111 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.6}
2019-11-27 16:27:33,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:33,403 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.0, u'old': 18.6}
2019-11-27 16:27:33,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 18.0}
2019-11-27 16:27:33,726 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.138, u'old': 18.6}
2019-11-27 16:27:34,500 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.738, u'old': 18.138}
2019-11-27 16:27:35,533 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:35,586 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 18.738}
2019-11-27 16:27:42,039 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:42,098 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 18.2}
2019-11-27 16:27:42,317 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.2, u'old': 18.8}
2019-11-27 16:27:46,061 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 18.2}
2019-11-27 16:27:46,109 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.386, u'old': 18.8}
2019-11-27 16:27:46,954 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.986, u'old': 18.386}
2019-11-27 16:27:47,994 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:48,046 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 18.986}
2019-11-27 16:27:54,505 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:54,564 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 18.4}
2019-11-27 16:27:54,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.4, u'old': 19.0}
2019-11-27 16:27:55,310 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:27:58,846 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 18.4}
2019-11-27 16:27:58,910 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 19.0}
2019-11-27 16:27:59,591 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:27:59,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 18.6}
2019-11-27 16:27:59,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.6, u'old': 19.2}
2019-11-27 16:28:02,972 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:28:04,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 18.6}
2019-11-27 16:28:04,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.634, u'old': 19.2}
2019-11-27 16:28:04,647 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:04,673 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.234, u'old': 18.634}
2019-11-27 16:28:05,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.234}
2019-11-27 16:28:12,249 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:12,310 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:12,504 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:28:12,647 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.4}
2019-11-27 16:28:16,294 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:16,354 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.8, u'old': 19.4}
2019-11-27 16:28:16,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 18.8}
2019-11-27 16:28:16,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 18.882, u'old': 19.4}
2019-11-27 16:28:17,658 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:17,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.482, u'old': 18.882}
2019-11-27 16:28:18,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.0, u'old': 19.482}
2019-11-27 16:28:25,921 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:28:26,068 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 108926}
2019-11-27 16:28:29,294 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:29,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 19.0}
2019-11-27 16:28:29,449 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.13, u'old': 19.6}
2019-11-27 16:28:30,353 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.73, u'old': 19.13}
2019-11-27 16:28:31,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 19.73}
2019-11-27 16:28:37,865 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:37,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 19.2}
2019-11-27 16:28:38,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.2, u'old': 19.8}
2019-11-27 16:28:42,465 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 19.2}
2019-11-27 16:28:42,721 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.378, u'old': 19.8}
2019-11-27 16:28:43,252 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:43,283 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.978, u'old': 19.378}
2019-11-27 16:28:44,409 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 19.978}
2019-11-27 16:28:50,909 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:50,966 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 19.4}
2019-11-27 16:28:50,990 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=20.00 old_z=19.40 last_z=20.00 notification_height=3.00 notification_time=5
2019-11-27 16:28:51,001 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.65526501922992, 'printTimeLeftOrigin': 'estimate', 'printTime': 1407, 'printTimeLeft': 780, 'filepos': 186959L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 20.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:28:51,005 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:28:51,013 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.65526501922992, 'printTimeLeftOrigin': 'estimate', 'printTime': 1407, 'printTimeLeft': 780, 'filepos': 186959L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 20.0, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 20.0, u'old': 19.4}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:51', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:23:27', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 20.0, 'e2_temp': 210.0}
2019-11-27 16:28:51,020 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=20.0.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:23:27, 51%% done, 00:13:00 remaining.
Completed time 16:41:51.
2019-11-27 16:28:51,025 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:28:51,032 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=20.0.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:27, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:51. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:28:51,042 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:28:51,106 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:28:51,108 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:28:51,113 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:28:53,655 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:28:54,758 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.4, u'old': 20.0}
2019-11-27 16:28:54,783 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=19.40 old_z=20.00 last_z=19.40 notification_height=3.00 notification_time=5
2019-11-27 16:28:54,792 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 51.80639671102073, 'printTimeLeftOrigin': 'estimate', 'printTime': 1411, 'printTimeLeft': 780, 'filepos': 187506L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 19.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:28:54,794 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:28:54,801 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 51.80639671102073, 'printTimeLeftOrigin': 'estimate', 'printTime': 1411, 'printTimeLeft': 780, 'filepos': 187506L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 19.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 19.4, u'old': 20.0}, 'time_left': u'00:13:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 51, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:54', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:23:31', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 19.4, 'e2_temp': 210.0}
2019-11-27 16:28:54,804 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=19.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:23:31, 51%% done, 00:13:00 remaining.
Completed time 16:41:54.
2019-11-27 16:28:54,806 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:28:54,809 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=19.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:31, 51%% done, 11:11:00 remaining.\nCompleted time 11:11:54. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:28:54,812 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:28:54,893 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:28:54,894 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:28:54,896 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:28:56,524 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:28:57,454 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:28:58,474 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:28:58,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 19.4}
2019-11-27 16:28:58,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 20.0}
2019-11-27 16:28:58,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 19.6}
2019-11-27 16:28:58,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.6, u'old': 20.2}
2019-11-27 16:29:00,250 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 19.6}
2019-11-27 16:29:00,362 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.627, u'old': 20.2}
2019-11-27 16:29:01,343 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.227, u'old': 19.627}
2019-11-27 16:29:02,432 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 20.227}
2019-11-27 16:29:08,881 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:08,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 19.8}
2019-11-27 16:29:09,147 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.8, u'old': 20.4}
2019-11-27 16:29:13,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 19.8}
2019-11-27 16:29:13,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 19.875, u'old': 20.4}
2019-11-27 16:29:14,359 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:14,386 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.475, u'old': 19.875}
2019-11-27 16:29:15,504 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 20.475}
2019-11-27 16:29:21,963 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:22,014 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 20.0}
2019-11-27 16:29:22,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.0, u'old': 20.6}
2019-11-27 16:29:27,027 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:27,099 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 20.0}
2019-11-27 16:29:27,183 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.123, u'old': 20.6}
2019-11-27 16:29:27,210 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:29:27,506 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.723, u'old': 20.123}
2019-11-27 16:29:28,614 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.723}
2019-11-27 16:29:35,069 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:35,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:35,340 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.8}
2019-11-27 16:29:39,041 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:39,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.2, u'old': 20.8}
2019-11-27 16:29:40,070 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 20.2}
2019-11-27 16:29:40,096 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:40,125 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.371, u'old': 20.8}
2019-11-27 16:29:41,672 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.971, u'old': 20.371}
2019-11-27 16:29:42,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 20.971}
2019-11-27 16:29:48,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:48,174 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:48,423 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 21.0}
2019-11-27 16:29:52,209 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:52,292 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.4, u'old': 21.0}
2019-11-27 16:29:53,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 20.4}
2019-11-27 16:29:53,151 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:29:53,204 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.0}
2019-11-27 16:29:53,484 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:53,534 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.2}
2019-11-27 16:29:57,387 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:57,440 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.6, u'old': 21.2}
2019-11-27 16:29:57,839 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:29:57,999 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 20.6}
2019-11-27 16:29:58,090 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.619, u'old': 21.2}
2019-11-27 16:30:00,785 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:00,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.219, u'old': 20.619}
2019-11-27 16:30:01,786 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 21.219}
2019-11-27 16:30:06,205 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:06,276 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 20.8}
2019-11-27 16:30:06,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.8, u'old': 21.4}
2019-11-27 16:30:10,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 20.8}
2019-11-27 16:30:10,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 20.867, u'old': 21.4}
2019-11-27 16:30:12,354 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:12,421 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.467, u'old': 20.867}
2019-11-27 16:30:13,478 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.467}
2019-11-27 16:30:17,562 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:17,609 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:17,715 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.6}
2019-11-27 16:30:19,929 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:20,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.0, u'old': 21.6}
2019-11-27 16:30:23,678 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:23,748 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 21.0}
2019-11-27 16:30:23,813 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.115, u'old': 21.6}
2019-11-27 16:30:26,287 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.715, u'old': 21.115}
2019-11-27 16:30:27,297 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.715}
2019-11-27 16:30:28,456 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:30:30,470 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:30,528 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:30,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:32,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:33,622 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:36,171 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:36,245 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:36,269 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=21.80 old_z=21.20 last_z=19.40 notification_height=3.00 notification_time=5
2019-11-27 16:30:36,275 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 56.999303744308385, 'printTimeLeftOrigin': 'estimate', 'printTime': 1512, 'printTimeLeft': 720, 'filepos': 206301L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:30:36,278 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:30:36,286 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 56.999303744308385, 'printTimeLeftOrigin': 'estimate', 'printTime': 1512, 'printTimeLeft': 720, 'filepos': 206301L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 21.8, u'old': 21.2}, 'time_left': u'00:12:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 56, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:12', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 21.8, 'e2_temp': 210.0}
2019-11-27 16:30:36,289 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=21.8.
Bed 59.9/60.0, Extruder 210.0/210.0.
00:25:12, 56%% done, 00:12:00 remaining.
Completed time 16:42:36.
2019-11-27 16:30:36,292 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:30:36,295 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=21.8.\nBed 59.9/60.0, Extruder 210.0/210.0.\n11:11:12, 56%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:30:36,298 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:30:36,391 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:30:36,393 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:30:36,395 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:30:39,066 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:30:40,179 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.2, u'old': 21.8}
2019-11-27 16:30:40,210 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 21.2}
2019-11-27 16:30:40,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.363, u'old': 21.8}
2019-11-27 16:30:40,276 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.963, u'old': 21.363}
2019-11-27 16:30:40,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 21.963}
2019-11-27 16:30:43,473 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:43,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:43,608 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:45,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:46,664 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:49,298 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:49,352 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:49,415 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.4, u'old': 22.0}
2019-11-27 16:30:50,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 21.4}
2019-11-27 16:30:50,199 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.0}
2019-11-27 16:30:50,404 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:50,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:51,455 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:52,291 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:54,769 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:30:54,838 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:54,882 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.6, u'old': 22.2}
2019-11-27 16:30:55,946 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 21.6}
2019-11-27 16:30:55,985 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.611, u'old': 22.2}
2019-11-27 16:30:58,513 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.211, u'old': 21.611}
2019-11-27 16:30:59,117 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:30:59,521 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.211}
2019-11-27 16:31:02,502 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:02,558 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:02,577 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=22.40 old_z=21.80 last_z=22.40 notification_height=3.00 notification_time=5
2019-11-27 16:31:02,585 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 58.777518677335216, 'printTimeLeftOrigin': 'estimate', 'printTime': 1539, 'printTimeLeft': 660, 'filepos': 212737L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 22.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:31:02,590 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:31:02,601 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 58.777518677335216, 'printTimeLeftOrigin': 'estimate', 'printTime': 1539, 'printTimeLeft': 660, 'filepos': 212737L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 22.4, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 22.4, u'old': 21.8}, 'time_left': u'00:11:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 58, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:02', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:39', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 22.4, 'e2_temp': 210.0}
2019-11-27 16:31:02,605 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=22.4.
Bed 60.0/60.0, Extruder 210.0/210.0.
00:25:39, 58%% done, 00:11:00 remaining.
Completed time 16:42:02.
2019-11-27 16:31:02,608 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:31:02,610 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=22.4.\nBed 60.0/60.0, Extruder 210.0/210.0.\n11:11:39, 58%% done, 11:11:00 remaining.\nCompleted time 11:11:02. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:31:02,611 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:31:02,666 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:31:02,667 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:31:02,668 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:31:05,181 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:31:06,369 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.4}
2019-11-27 16:31:06,386 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=21.80 old_z=22.40 last_z=21.80 notification_height=3.00 notification_time=5
2019-11-27 16:31:06,395 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 58.92257194642146, 'printTimeLeftOrigin': 'estimate', 'printTime': 1542, 'printTimeLeft': 660, 'filepos': 213262L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:31:06,399 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}
2019-11-27 16:31:06,409 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 58.92257194642146, 'printTimeLeftOrigin': 'estimate', 'printTime': 1542, 'printTimeLeft': 660, 'filepos': 213262L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 21.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.1, 'payload': {u'new': 21.8, u'old': 22.4}, 'time_left': u'00:11:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 58, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.1, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.1, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:06', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:25:42', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 21.8, 'e2_temp': 210.1}
2019-11-27 16:31:06,417 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=21.8.
Bed 60.0/60.0, Extruder 210.1/210.0.
00:25:42, 58%% done, 00:11:00 remaining.
Completed time 16:42:06.
2019-11-27 16:31:06,421 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:31:06,425 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=21.8.\nBed 60.0/60.0, Extruder 210.1/210.0.\n11:11:42, 58%% done, 11:11:00 remaining.\nCompleted time 11:11:06. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:31:06,428 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:31:06,450 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:31:06,451 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:31:06,452 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:31:08,880 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:31:09,893 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:09,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:09,964 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.8, u'old': 22.4}
2019-11-27 16:31:10,000 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 21.8}
2019-11-27 16:31:10,033 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 21.859, u'old': 22.4}
2019-11-27 16:31:11,905 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.459, u'old': 21.859}
2019-11-27 16:31:12,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.459}
2019-11-27 16:31:15,966 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:16,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:16,167 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:18,381 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:19,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:22,346 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:22,410 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:22,480 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:22,843 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:22,913 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.0, u'old': 22.6}
2019-11-27 16:31:23,880 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 22.0}
2019-11-27 16:31:23,958 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.108, u'old': 22.6}
2019-11-27 16:31:26,639 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.708, u'old': 22.108}
2019-11-27 16:31:27,583 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:27,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.708}
2019-11-27 16:31:29,779 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:31:30,499 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:30,676 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:32,891 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:32,955 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:33,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:36,544 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:36,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:37,634 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:37,742 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.2, u'old': 22.8}
2019-11-27 16:31:38,712 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:38,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 22.2}
2019-11-27 16:31:38,868 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.356, u'old': 22.8}
2019-11-27 16:31:41,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.956, u'old': 22.356}
2019-11-27 16:31:42,206 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 22.956}
2019-11-27 16:31:45,167 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:45,232 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:45,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:47,657 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:48,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:51,202 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:51,265 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:51,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:52,400 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:52,476 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.4, u'old': 23.0}
2019-11-27 16:31:53,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 22.4}
2019-11-27 16:31:53,596 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.0}
2019-11-27 16:31:53,769 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:53,820 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:31:54,942 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:55,815 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:31:59,076 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:31:59,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:31:59,222 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.6, u'old': 23.2}
2019-11-27 16:32:00,409 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:32:00,540 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 22.6}
2019-11-27 16:32:00,635 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.604, u'old': 23.2}
2019-11-27 16:32:03,217 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.204, u'old': 22.604}
2019-11-27 16:32:04,091 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:04,145 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.204}
2019-11-27 16:32:07,161 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:07,297 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:09,532 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:09,584 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:10,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:13,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:13,416 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:14,572 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:14,584 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:14,611 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.8, u'old': 23.4}
2019-11-27 16:32:15,919 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 22.8}
2019-11-27 16:32:15,998 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 22.852, u'old': 23.4}
2019-11-27 16:32:18,371 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.452, u'old': 22.852}
2019-11-27 16:32:19,328 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.452}
2019-11-27 16:32:22,218 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:22,289 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:22,456 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:24,756 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:25,660 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:28,312 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:28,370 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:28,438 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:29,818 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:29,891 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.0, u'old': 23.6}
2019-11-27 16:32:31,073 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:32:31,235 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 23.0}
2019-11-27 16:32:31,320 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.1, u'old': 23.6}
2019-11-27 16:32:33,836 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:33,893 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.7, u'old': 23.1}
2019-11-27 16:32:34,834 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.7}
2019-11-27 16:32:37,555 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:37,753 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:40,020 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:40,084 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:40,992 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:44,545 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:44,583 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.2, u'old': 23.8}
2019-11-27 16:32:45,870 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:45,924 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 23.2}
2019-11-27 16:32:45,991 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.8}
2019-11-27 16:32:46,239 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:46,298 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.9}
2019-11-27 16:32:47,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:47,189 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.3, u'old': 23.9}
2019-11-27 16:32:52,886 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:32:52,935 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 23.3}
2019-11-27 16:32:53,869 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 23.9}
2019-11-27 16:32:55,631 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:32:56,461 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 24.0}
2019-11-27 16:33:01,730 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:33:02,118 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:02,143 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:33:02,203 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.4, u'old': 24.0}
2019-11-27 16:33:03,736 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 23.4}
2019-11-27 16:33:03,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.0}
2019-11-27 16:33:04,122 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:04,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.1}
2019-11-27 16:33:04,384 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:04,453 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.5, u'old': 24.1}
2019-11-27 16:33:10,751 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:10,814 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 23.5}
2019-11-27 16:33:11,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.1}
2019-11-27 16:33:14,599 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:15,318 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:17,242 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:17,305 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:18,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:22,057 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:22,103 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.6, u'old': 24.2}
2019-11-27 16:33:23,583 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:23,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 23.6}
2019-11-27 16:33:23,724 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.7, u'old': 24.2}
2019-11-27 16:33:29,410 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:29,471 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 23.7}
2019-11-27 16:33:30,226 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.3}
2019-11-27 16:33:32,390 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:33:33,254 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:33,968 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:35,947 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:36,004 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:36,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:40,711 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:40,792 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.8, u'old': 24.4}
2019-11-27 16:33:42,141 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:42,199 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 23.8}
2019-11-27 16:33:42,240 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 24.4}
2019-11-27 16:33:45,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 23.9}
2019-11-27 16:33:46,848 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 23.9, u'old': 24.5}
2019-11-27 16:33:48,275 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:48,329 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 23.9}
2019-11-27 16:33:49,062 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.5}
2019-11-27 16:33:52,100 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:52,824 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:33:54,795 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:33:54,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:55,835 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:33:59,450 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:33:59,519 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.0, u'old': 24.6}
2019-11-27 16:34:00,979 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:01,042 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 24.0}
2019-11-27 16:34:01,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.6}
2019-11-27 16:34:01,466 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:01,531 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.7}
2019-11-27 16:34:02,348 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:02,458 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.1, u'old': 24.7}
2019-11-27 16:34:02,973 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:34:06,096 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:06,160 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 24.1}
2019-11-27 16:34:06,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.7}
2019-11-27 16:34:09,937 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:09,946 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=24.80 old_z=24.20 last_z=24.80 notification_height=3.00 notification_time=5
2019-11-27 16:34:09,951 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 71.76268732593608, 'printTimeLeftOrigin': 'estimate', 'printTime': 1726, 'printTimeLeft': 480, 'filepos': 259735L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:34:09,953 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}
2019-11-27 16:34:09,957 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 71.76268732593608, 'printTimeLeftOrigin': 'estimate', 'printTime': 1726, 'printTimeLeft': 480, 'filepos': 259735L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.8, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.0, 'payload': {u'new': 24.8, u'old': 24.2}, 'time_left': u'00:08:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 71, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.0, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.0, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:09', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:28:46', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 24.8, 'e2_temp': 210.0}
2019-11-27 16:34:09,961 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=24.8.
Bed 59.9/60.0, Extruder 210.0/210.0.
00:28:46, 71%% done, 00:08:00 remaining.
Completed time 16:42:09.
2019-11-27 16:34:09,964 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:34:09,966 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=24.8.\nBed 59.9/60.0, Extruder 210.0/210.0.\n11:11:46, 71%% done, 11:11:00 remaining.\nCompleted time 11:11:09. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:34:09,968 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:34:10,053 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:34:10,055 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:34:10,056 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:34:12,755 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:34:13,814 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:13,844 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:13,853 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=24.20 old_z=24.80 last_z=24.20 notification_height=3.00 notification_time=5
2019-11-27 16:34:13,859 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 71.89116307855532, 'printTimeLeftOrigin': 'estimate', 'printTime': 1730, 'printTimeLeft': 480, 'filepos': 260200L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:34:13,861 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}
2019-11-27 16:34:13,866 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 71.89116307855532, 'printTimeLeftOrigin': 'estimate', 'printTime': 1730, 'printTimeLeft': 480, 'filepos': 260200L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 24.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.9, 'payload': {u'new': 24.2, u'old': 24.8}, 'time_left': u'00:08:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 71, 'bed_temp': 60.0, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.0, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.9, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.9, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:13', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:28:50', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 24.2, 'e2_temp': 209.9}
2019-11-27 16:34:13,869 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=24.2.
Bed 60.0/60.0, Extruder 209.9/210.0.
00:28:50, 71%% done, 00:08:00 remaining.
Completed time 16:42:13.
2019-11-27 16:34:13,871 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:34:13,874 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=24.2.\nBed 60.0/60.0, Extruder 209.9/210.0.\n11:11:50, 71%% done, 11:11:00 remaining.\nCompleted time 11:11:13. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:34:13,877 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:34:13,904 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:34:13,906 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:34:13,907 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:34:16,453 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:34:17,598 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:17,642 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:17,678 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:17,718 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.2, u'old': 24.8}
2019-11-27 16:34:18,483 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 24.2}
2019-11-27 16:34:18,539 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.8}
2019-11-27 16:34:18,898 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:18,925 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:18,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.9}
2019-11-27 16:34:19,808 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:19,877 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.3, u'old': 24.9}
2019-11-27 16:34:23,607 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 24.3}
2019-11-27 16:34:24,316 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:24,378 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 24.9}
2019-11-27 16:34:27,391 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:28,124 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:30,103 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:30,170 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:31,178 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:33,585 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:34:34,691 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:34,771 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.4, u'old': 25.0}
2019-11-27 16:34:35,982 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:36,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 24.4}
2019-11-27 16:34:36,115 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 25.0}
2019-11-27 16:34:42,957 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:43,023 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 24.5}
2019-11-27 16:34:43,618 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.5, u'old': 25.1}
2019-11-27 16:34:47,068 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 24.5}
2019-11-27 16:34:47,185 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.1}
2019-11-27 16:34:47,791 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:47,987 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:48,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:49,372 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:50,408 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:54,528 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:34:54,589 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:54,652 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.6, u'old': 25.2}
2019-11-27 16:34:55,806 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 24.6}
2019-11-27 16:34:55,865 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 25.2}
2019-11-27 16:34:56,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 24.7}
2019-11-27 16:34:56,615 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.7, u'old': 25.3}
2019-11-27 16:34:57,568 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:35:03,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:03,176 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 24.7}
2019-11-27 16:35:03,754 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.3}
2019-11-27 16:35:04,254 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:35:06,182 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:06,757 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:13,171 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:13,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:13,253 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:15,011 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:15,141 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.8, u'old': 25.4}
2019-11-27 16:35:15,932 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 24.8}
2019-11-27 16:35:15,990 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.4}
2019-11-27 16:35:16,235 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:16,343 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.5}
2019-11-27 16:35:20,120 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:20,200 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:21,142 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 24.9, u'old': 25.5}
2019-11-27 16:35:23,242 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 24.9}
2019-11-27 16:35:23,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.5}
2019-11-27 16:35:26,201 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:26,273 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:26,822 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:28,817 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:29,894 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:33,778 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:33,851 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:33,886 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:34,850 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:34,889 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.0, u'old': 25.6}
2019-11-27 16:35:34,927 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:35:36,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 25.0}
2019-11-27 16:35:36,441 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=25.60 old_z=25.00 last_z=24.20 notification_height=3.00 notification_time=5
2019-11-27 16:35:36,451 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 77.64411387648646, 'printTimeLeftOrigin': 'estimate', 'printTime': 1813, 'printTimeLeft': 360, 'filepos': 281022L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 25.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:35:36,454 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:35:36,471 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 77.64411387648646, 'printTimeLeftOrigin': 'estimate', 'printTime': 1813, 'printTimeLeft': 360, 'filepos': 281022L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 25.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 25.6, u'old': 25.0}, 'time_left': u'00:06:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 77, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:36', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:30:13', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 25.6, 'e2_temp': 209.8}
2019-11-27 16:35:36,474 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=25.6.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:30:13, 77%% done, 00:06:00 remaining.
Completed time 16:41:36.
2019-11-27 16:35:36,477 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:35:36,480 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=25.6.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:13, 77%% done, 11:11:00 remaining.\nCompleted time 11:11:36. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:35:36,483 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:35:36,547 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:35:36,549 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:35:36,551 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:35:39,283 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:35:40,307 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:40,339 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.1, u'old': 25.6}
2019-11-27 16:35:46,581 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:46,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 25.1}
2019-11-27 16:35:47,051 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.7}
2019-11-27 16:35:48,865 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:49,377 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:51,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:52,075 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:52,129 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:56,751 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:56,852 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:58,354 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:35:58,425 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:58,502 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.2, u'old': 25.8}
2019-11-27 16:35:59,373 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 25.2}
2019-11-27 16:35:59,419 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 25.8}
2019-11-27 16:35:59,590 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 25.3}
2019-11-27 16:35:59,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.3, u'old': 25.9}
2019-11-27 16:36:05,514 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:36:09,615 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:09,682 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 25.3}
2019-11-27 16:36:10,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 25.9}
2019-11-27 16:36:14,482 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:15,383 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:15,437 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:17,366 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:18,524 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:23,911 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:23,988 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:24,081 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.4, u'old': 26.0}
2019-11-27 16:36:26,075 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 25.4}
2019-11-27 16:36:26,128 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 26.0}
2019-11-27 16:36:26,375 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 25.5}
2019-11-27 16:36:26,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.5, u'old': 26.1}
2019-11-27 16:36:34,945 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:35,012 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 25.5}
2019-11-27 16:36:35,967 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.1}
2019-11-27 16:36:36,132 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:36:42,052 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:42,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:42,162 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:47,689 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:47,745 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:47,812 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:49,693 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:49,805 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.6, u'old': 26.2}
2019-11-27 16:36:51,890 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 25.6}
2019-11-27 16:36:51,930 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 26.2}
2019-11-27 16:36:57,982 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:36:58,040 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.3, u'old': 25.7}
2019-11-27 16:36:58,995 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.7, u'old': 26.3}
2019-11-27 16:37:05,122 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:05,177 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.3, u'old': 25.7}
2019-11-27 16:37:05,335 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.3}
2019-11-27 16:37:06,267 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:06,324 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:06,780 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:37:09,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:09,123 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:12,749 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:12,819 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:12,888 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:15,101 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:15,266 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.8, u'old': 26.4}
2019-11-27 16:37:17,554 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 25.8}
2019-11-27 16:37:17,603 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 26.4}
2019-11-27 16:37:19,027 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:19,078 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.5, u'old': 25.9}
2019-11-27 16:37:19,213 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 25.9, u'old': 26.5}
2019-11-27 16:37:23,332 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.5, u'old': 25.9}
2019-11-27 16:37:23,452 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.5}
2019-11-27 16:37:24,392 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:24,455 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:25,747 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:30,036 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:30,063 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:30,113 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:32,359 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:32,522 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.0, u'old': 26.6}
2019-11-27 16:37:34,637 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 26.0}
2019-11-27 16:37:34,713 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 26.6}
2019-11-27 16:37:34,972 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.7, u'old': 26.1}
2019-11-27 16:37:35,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.1, u'old': 26.7}
2019-11-27 16:37:37,359 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:37,442 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.7, u'old': 26.1}
2019-11-27 16:37:37,453 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:37:37,507 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.7}
2019-11-27 16:37:38,879 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:40,247 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:46,777 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:46,831 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:46,948 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:48,980 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:49,037 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.2, u'old': 26.8}
2019-11-27 16:37:53,993 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:37:54,048 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 26.2}
2019-11-27 16:37:54,241 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 26.8}
2019-11-27 16:37:54,710 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:37:54,766 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:37:56,632 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:37:58,138 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:02,492 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:02,563 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:02,626 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:04,079 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:04,146 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.4, u'old': 27.0}
2019-11-27 16:38:08,055 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:38:15,179 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:15,244 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 26.4}
2019-11-27 16:38:15,485 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.0}
2019-11-27 16:38:16,168 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:16,192 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=27.20 old_z=26.60 last_z=27.20 notification_height=3.00 notification_time=5
2019-11-27 16:38:16,206 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 88.56400026524027, 'printTimeLeftOrigin': 'estimate', 'printTime': 1972, 'printTimeLeft': 240, 'filepos': 320545L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 27.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:38:16,208 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:38:16,217 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 88.56400026524027, 'printTimeLeftOrigin': 'estimate', 'printTime': 1972, 'printTimeLeft': 240, 'filepos': 320545L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 27.2, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 27.2, u'old': 26.6}, 'time_left': u'00:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 88, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:16', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:32:52', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 27.2, 'e2_temp': 210.2}
2019-11-27 16:38:16,226 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=27.2.
Bed 60.1/60.0, Extruder 210.2/210.0.
00:32:52, 88%% done, 00:04:00 remaining.
Completed time 16:42:16.
2019-11-27 16:38:16,229 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:38:16,232 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=27.2.\nBed 60.1/60.0, Extruder 210.2/210.0.\n11:11:52, 88%% done, 11:11:00 remaining.\nCompleted time 11:11:16. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:38:16,235 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:38:16,323 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:38:16,324 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:38:16,326 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:38:18,915 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:38:19,961 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:19,974 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=26.60 old_z=27.20 last_z=26.60 notification_height=3.00 notification_time=5
2019-11-27 16:38:19,981 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 88.70960611820874, 'printTimeLeftOrigin': 'estimate', 'printTime': 1976, 'printTimeLeft': 240, 'filepos': 321072L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 26.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:38:19,982 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}
2019-11-27 16:38:19,988 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 88.70960611820874, 'printTimeLeftOrigin': 'estimate', 'printTime': 1976, 'printTimeLeft': 240, 'filepos': 321072L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 26.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 210.2, 'payload': {u'new': 26.6, u'old': 27.2}, 'time_left': u'00:04:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 88, 'bed_temp': 60.1, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 60.1, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 210.2, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 210.2, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:42:19', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:32:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 26.6, 'e2_temp': 210.2}
2019-11-27 16:38:19,991 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=26.6.
Bed 60.1/60.0, Extruder 210.2/210.0.
00:32:56, 88%% done, 00:04:00 remaining.
Completed time 16:42:19.
2019-11-27 16:38:19,993 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:38:19,996 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=26.6.\nBed 60.1/60.0, Extruder 210.2/210.0.\n11:11:56, 88%% done, 11:11:00 remaining.\nCompleted time 11:11:19. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:38:19,998 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:38:20,034 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:38:20,035 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:38:20,037 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:38:22,622 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:38:23,645 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:23,719 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:23,789 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:34,951 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:35,032 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:35,243 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.6, u'old': 27.2}
2019-11-27 16:38:37,489 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 26.6}
2019-11-27 16:38:37,537 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.2}
2019-11-27 16:38:37,824 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:37,876 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:38,787 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:38:45,977 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:46,035 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:46,087 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:46,870 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:46,957 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 26.8, u'old': 27.4}
2019-11-27 16:38:57,644 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:38:57,704 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 26.8}
2019-11-27 16:38:57,956 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.4}
2019-11-27 16:38:58,855 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:38:58,940 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.6}
2019-11-27 16:39:07,580 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:07,638 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:39:07,709 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.0, u'old': 27.6}
2019-11-27 16:39:09,455 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:39:11,827 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 27.0}
2019-11-27 16:39:11,914 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.6}
2019-11-27 16:39:12,284 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:12,407 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.8}
2019-11-27 16:39:20,598 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:20,666 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:20,725 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.2, u'old': 27.8}
2019-11-27 16:39:31,733 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:31,796 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 27.2}
2019-11-27 16:39:31,977 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 27.8}
2019-11-27 16:39:32,650 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 27.4}
2019-11-27 16:39:32,714 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.4, u'old': 28.0}
2019-11-27 16:39:40,120 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:39:52,829 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:39:52,887 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 27.4}
2019-11-27 16:39:53,059 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 28.0}
2019-11-27 16:39:53,795 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.2, u'old': 27.6}
2019-11-27 16:39:53,873 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.6, u'old': 28.2}
2019-11-27 16:40:10,749 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:40:13,960 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:14,022 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.2, u'old': 27.6}
2019-11-27 16:40:14,227 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 28.2}
2019-11-27 16:40:14,906 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.4, u'old': 27.8}
2019-11-27 16:40:15,038 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 27.8, u'old': 28.4}
2019-11-27 16:40:35,133 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:35,190 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.4, u'old': 27.8}
2019-11-27 16:40:35,368 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 28.4}
2019-11-27 16:40:36,076 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.6, u'old': 28.0}
2019-11-27 16:40:36,188 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.0, u'old': 28.6}
2019-11-27 16:40:41,479 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:40:56,658 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:40:56,730 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 28.6, u'old': 28.0}
2019-11-27 16:40:56,750 - octoprint.plugins.telegram.TMSG - DEBUG - Z-Change. new_z=28.60 old_z=28.00 last_z=26.60 notification_height=3.00 notification_time=5
2019-11-27 16:40:56,761 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 97.32577030193184, 'printTimeLeftOrigin': 'estimate', 'printTime': 2133, 'printTimeLeft': 60, 'filepos': 352257L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 28.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:40:56,763 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}
2019-11-27 16:40:56,771 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'ZChange', 'status': {u'progress': {'completion': 97.32577030193184, 'printTimeLeftOrigin': 'estimate', 'printTime': 2133, 'printTimeLeft': 60, 'filepos': 352257L}, u'state': {'text': u'Printing', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': True, 'resuming': False, 'sdReady': True, 'error': False, 'ready': False, 'finishing': False, 'closedOrError': False}}, u'currentZ': 28.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 210.0, 'e1_temp': 209.8, 'payload': {u'new': 28.6, u'old': 28.0}, 'time_left': u'00:01:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'with_gif': False, 'with_image': True, 'event': u'ZChange'}, 'percent': 97, 'bed_temp': 59.9, 'e1_target': 210.0, 'temps': {u'bed': {u'actual': 59.9, u'target': 60.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool3': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool2': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool1': {u'actual': 209.8, u'target': 210.0, u'offset': 0}, u'tool0': {u'actual': 209.8, u'target': 210.0, u'offset': 0}}, 'bed_target': 60.0, 'time_finish': u'16:41:56', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:33', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 28.6, 'e2_temp': 209.8}
2019-11-27 16:40:56,774 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Printing at Z=28.6.
Bed 59.9/60.0, Extruder 209.8/210.0.
00:35:33, 97%% done, 00:01:00 remaining.
Completed time 16:41:56.
2019-11-27 16:40:56,776 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: ZChange
2019-11-27 16:40:56,780 - octoprint.plugins.telegram - INFO - Sending a message: Printing at Z=28.6.\nBed 59.9/60.0, Extruder 209.8/210.0.\n11:11:33, 97%% done, 11:11:00 remaining.\nCompleted time 11:11:56. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:40:56,783 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:40:56,823 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:40:56,825 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:40:56,826 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:40:59,500 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:41:12,122 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:41:16,372 - octoprint.timelapse - WARNING - Cannot capture image, image number is unset
2019-11-27 16:41:16,418 - octoprint.plugins.telegram - DEBUG - Got an event: ZChange Payload: {u'new': 58.6, u'old': 28.6}
2019-11-27 16:41:19,335 - octoprint.util.comm - INFO - Finished in 2155.967 s.
2019-11-27 16:41:19,343 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Finishing"
2019-11-27 16:41:19,411 - octoprint.printer.standard.job - INFO - Print job done - origin: local, path: Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode, owner: osh
2019-11-27 16:41:19,571 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-11-27 16:41:19,594 - octoprint.plugins.telegram - DEBUG - Got an event: PrintDone Payload: {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'time': 2156.041444578208, u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}
2019-11-27 16:41:19,616 - octoprint.plugins.telegram.TMSG - DEBUG - Printer Status{u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 2156, 'printTimeLeft': 0, 'filepos': 361936L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 58.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}
2019-11-27 16:41:19,626 - octoprint.plugins.telegram.TMSG - DEBUG - TEMPS - {u'bed': {u'actual': 60.2, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.7, u'target': 0.0, u'offset': 0}}
2019-11-27 16:41:19,661 - octoprint.plugins.Octoslack - ERROR - Send message error: 'Settings' object has no attribute 'globalGet'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 2575, in send_slack_message
hosted_url, error_msgs, slack_rsp = self.upload_snapshot()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3410, in upload_snapshot
local_file_path, error_msgs = self.retrieve_snapshot_images()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 3979, in retrieve_snapshot_images
localCamera = self._settings.globalGet(["webcam", "snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 530, in __getattr__
return getattr(self.settings, item)
AttributeError: 'Settings' object has no attribute 'globalGet'
2019-11-27 16:41:19,701 - octoprint.plugins.telegram - INFO - An Exception in get final time : unsupported type for timedelta seconds component: unicode
2019-11-27 16:41:19,720 - octoprint.plugins.telegram.TMSG - DEBUG - VARS - {'event': u'PrintDone', 'status': {u'progress': {'completion': 100.0, 'printTimeLeftOrigin': None, 'printTime': 2156, 'printTimeLeft': 0, 'filepos': 361936L}, u'state': {'text': u'Operational', 'flags': {'cancelling': False, 'paused': False, 'operational': True, 'pausing': False, 'printing': False, 'resuming': False, 'sdReady': True, 'error': False, 'ready': True, 'finishing': False, 'closedOrError': False}}, u'currentZ': 58.6, u'job': {'averagePrintTime': None, 'lastPrintTime': None, 'user': 'osh', 'file': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'date': 1574892311, 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'display': u'Support Test Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'estimatedPrintTime': 1760.1638550358693, 'filament': {u'tool0': {u'volume': 2.112368957688507, u'length': 878.2209600000018}}}, u'offsets': {}}, 'e2_target': 0.0, 'e1_temp': 211.7, 'payload': {'origin': u'local', 'name': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', u'time': 2156.041444578208, u'owner': 'osh', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'size': 361936L}, 'time_left': u'00:00:00', 'self': <octoprint_telegram.telegramNotifications.TMSG instance at 0x6f956508>, 'kwargs': {'delay': 5, 'with_gif': False, 'with_image': True, 'event': u'PrintDone'}, 'percent': 100, 'bed_temp': 60.2, 'e1_target': 0.0, 'temps': {u'bed': {u'actual': 60.2, u'target': 0.0, u'offset': 0}, u'chamber': {u'actual': None, u'target': None, u'offset': 0}, u'tool4': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool3': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool2': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool1': {u'actual': 211.7, u'target': 0.0, u'offset': 0}, u'tool0': {u'actual': 211.7, u'target': 0.0, u'offset': 0}}, 'bed_target': 0.0, 'time_finish': '', 'file': u'Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'time_done': u'00:35:56', 'path': u'Printer_Tools/Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode', 'z': 58.6, 'e2_temp': 211.7}
2019-11-27 16:41:19,728 - octoprint.plugins.telegram.TMSG - DEBUG - Sending Notification: Finished printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode.
2019-11-27 16:41:19,731 - octoprint.plugins.telegram - DEBUG - Send_msg() found event: PrintDone
2019-11-27 16:41:20,225 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': u'local', u'throttled_mask': 327680, u'elapsed': 2156, 'file': '9abac95ac19612db2adaea14fc45f07071903bb4', u'throttled_now': False, u'throttled_past': True}
2019-11-27 16:41:24,783 - octoprint.plugins.telegram - INFO - Sending a message: Finished printing Support_Test_Stand_t1_0.2mm_PLA_MK3SMMU2S.gcode. with_image=True with_gif=False chatID= 506899983
2019-11-27 16:41:24,786 - octoprint.plugins.telegram - DEBUG - Snapshot URL: http://127.0.0.1:1111/?action=snapshot
2019-11-27 16:41:24,845 - octoprint.plugins.telegram - DEBUG - Image transformations [H:False, V:False, R:False]
2019-11-27 16:41:24,848 - octoprint.plugins.telegram - DEBUG - data so far: {'disable_web_page_preview': True}
2019-11-27 16:41:24,851 - octoprint.plugins.telegram - DEBUG - Sending with image.. 506899983
2019-11-27 16:41:27,777 - octoprint.plugins.telegram - DEBUG - Sending finished. 200
2019-11-27 16:41:42,806 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:42:13,477 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:42:44,135 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:02,975 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:43:14,803 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:26,077 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 109826}
2019-11-27 16:43:45,466 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:43:50,781 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:43:51,054 - octoprint.server.util.flask - INFO - Passively logging in user None from ::ffff:192.168.62.170
2019-11-27 16:44:06,045 - octoprint.server.api - INFO - Actively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:44:08,566 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:44:16,140 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:44:46,857 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:44:48,885 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.124
2019-11-27 16:45:17,544 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:45:48,206 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:45:51,440 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.62.170
2019-11-27 16:45:51,688 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.62.170
2019-11-27 16:45:51,981 - octoprint.server.util.flask - INFO - Passively logging in user osh from ::ffff:192.168.62.170
2019-11-27 16:45:54,242 - octoprint.server.util.sockjs - INFO - User osh logged in on the socket from client ::ffff:192.168.62.170
2019-11-27 16:46:18,867 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:46:49,486 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:47:20,096 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:47:50,701 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:48:21,324 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:48:51,954 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:49:22,582 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:49:53,236 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:50:23,891 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:50:54,508 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:51:25,113 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:51:55,748 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:52:26,372 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:52:56,994 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:53:27,614 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:53:58,261 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:54:28,908 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:54:59,522 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:55:30,136 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:56:00,735 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:56:31,380 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:57:02,033 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:57:32,670 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:58:02,979 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-11-27 16:58:03,313 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:58:26,064 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 110726}
2019-11-27 16:58:33,961 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:59:04,598 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 16:59:35,269 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:00:05,932 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:00:36,555 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:01:07,184 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:01:37,797 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:02:08,415 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:02:39,055 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:03:09,687 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:03:40,309 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:04:11,268 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:04:41,903 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:05:12,537 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:05:43,188 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:06:13,808 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:06:44,445 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
2019-11-27 17:07:09,100 - octoprint.plugins.telegram - DEBUG - Testing token 111111111:AAA111aa1AaaaAAa1_AaaaAAaaAAaA1AaaA
2019-11-27 17:07:09,128 - octoprint.plugins.telegram - DEBUG - Saving data: {u'chats': {u'506899983': {u'commands': {u'/filament': True, u'/help': False, u'/con': True, u'/print': True, u'No': False, u'/tune': True, u'/status': True, u'/gif': True, u'/user': True, u'/abort': True, u'/dontshutup': True, u'/shutup': True, u'/files': True, u'/supergif': True, u'/upload': True, u'/ctrl': True, u'Yes': False, u'/togglepause': True, u'/test': False, u'/settings': True, u'/sys': True}, u'title': u'John - O\u2019Shaughnessy - ', u'image': u'/plugin/telegram/img/user/pic506899983.jpg', u'send_notifications': True, u'private': True, u'allow_users': False, u'notifications': {u'StatusPrinting': False, u'PrintDone': True, u'ZChange': True, u'PrinterStart': True, u'PrintFailed': True, u'StatusNotPrinting': False, u'PrintStarted': True, u'PrintResumed': True, u'PrintPaused': True, u'PrinterShutdown': True}, u'newUsr': False, u'new': False, u'type': u'PRIVATE', u'id': u'506899983', u'accept_commands': True}}}
2019-11-27 17:07:15,060 - octoprint.plugins.telegram.listener - DEBUG - listener: sending request with offset 1...
|
AttributeError
|
def _on_request_body_finish(self):
"""
Called when the request body has been read completely. Takes care of creating the replacement body out of the
logged parts, turning ``file`` parts into new ``data`` parts.
"""
self._new_body = b""
for name, part in self._parts.items():
if "filename" in part:
# add form fields for filename, path, size and content_type for all files contained in the request
if not "path" in part:
continue
parameters = dict(
name=part["filename"],
path=part["path"],
size=str(os.stat(part["path"]).st_size),
)
if "content_type" in part:
parameters["content_type"] = part["content_type"]
fields = dict(
(self._suffixes[key], value) for (key, value) in parameters.items()
)
for n, p in fields.items():
if n is None or p is None:
continue
key = name + b"." + octoprint.util.to_bytes(n)
self._new_body += b"--%s\r\n" % self._multipart_boundary
self._new_body += b'Content-Disposition: form-data; name="%s"\r\n' % key
self._new_body += b"Content-Type: text/plain; charset=utf-8\r\n"
self._new_body += b"\r\n"
self._new_body += octoprint.util.to_bytes(p) + b"\r\n"
elif "data" in part:
self._new_body += b"--%s\r\n" % self._multipart_boundary
value = part["data"]
self._new_body += b'Content-Disposition: form-data; name="%s"\r\n' % name
if "content_type" in part and part["content_type"] is not None:
self._new_body += b"Content-Type: %s\r\n" % part["content_type"]
self._new_body += b"\r\n"
self._new_body += value + b"\r\n"
self._new_body += b"--%s--\r\n" % self._multipart_boundary
|
def _on_request_body_finish(self):
"""
Called when the request body has been read completely. Takes care of creating the replacement body out of the
logged parts, turning ``file`` parts into new ``data`` parts.
"""
self._new_body = b""
for name, part in self._parts.items():
if "filename" in part:
# add form fields for filename, path, size and content_type for all files contained in the request
if not "path" in part:
continue
parameters = dict(
name=part["filename"],
path=part["path"],
size=str(os.stat(part["path"]).st_size),
)
if "content_type" in part:
parameters["content_type"] = part["content_type"]
fields = dict(
(self._suffixes[key], value) for (key, value) in parameters.items()
)
for n, p in fields.items():
key = name + b"." + octoprint.util.to_bytes(n)
self._new_body += b"--%s\r\n" % self._multipart_boundary
self._new_body += b'Content-Disposition: form-data; name="%s"\r\n' % key
self._new_body += b"Content-Type: text/plain; charset=utf-8\r\n"
self._new_body += b"\r\n"
self._new_body += octoprint.util.to_bytes(p) + b"\r\n"
elif "data" in part:
self._new_body += b"--%s\r\n" % self._multipart_boundary
value = part["data"]
self._new_body += b'Content-Disposition: form-data; name="%s"\r\n' % name
if "content_type" in part and part["content_type"] is not None:
self._new_body += b"Content-Type: %s\r\n" % part["content_type"]
self._new_body += b"\r\n"
self._new_body += value + b"\r\n"
self._new_body += b"--%s--\r\n" % self._multipart_boundary
|
https://github.com/OctoPrint/OctoPrint/issues/3349
|
2019-11-25 17:09:34,089 - tornado.application - ERROR - Uncaught exception
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado/http1connection.py", line 584, in _read_fixed_body
ret = delegate.data_received(body)
File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado/httpserver.py", line 311, in data_received
return self.delegate.data_received(chunk)
File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado/routing.py", line 248, in data_received
return self.delegate.data_received(chunk)
File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado/web.py", line 2087, in data_received
return self.handler.data_received(data)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/tornado.py", line 271, in data_received
self._process_multipart_data(data)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/tornado.py", line 316, in _process_multipart_data
self._on_request_body_finish()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/tornado.py", line 468, in _on_request_body_finish
self._new_body += octoprint.util.to_bytes(p) + b'\r\n'
TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
|
TypeError
|
def warning_decorator_factory(warning_type):
def specific_warning(
message, stacklevel=1, since=None, includedoc=None, extenddoc=False
):
def decorator(func):
@wraps(func)
def func_wrapper(*args, **kwargs):
# we need to increment the stacklevel by one because otherwise we'll get the location of our
# func_wrapper in the log, instead of our caller (which is the real caller of the wrapped function)
warnings.warn(message, warning_type, stacklevel=stacklevel + 1)
return func(*args, **kwargs)
if includedoc is not None and since is not None:
docstring = "\n.. deprecated:: {since}\n {message}\n\n".format(
since=since, message=includedoc
)
if (
extenddoc
and hasattr(func_wrapper, "__doc__")
and func_wrapper.__doc__ is not None
):
docstring = func_wrapper.__doc__ + "\n" + docstring
func_wrapper.__doc__ = docstring
return func_wrapper
return decorator
return specific_warning
|
def warning_decorator_factory(warning_type):
def specific_warning(
message, stacklevel=1, since=None, includedoc=None, extenddoc=False
):
def decorator(func):
func.__qualname__ = to_native_str("warning_decorator_factory")
func.__annotations__ = dict()
@wraps(func)
def func_wrapper(*args, **kwargs):
# we need to increment the stacklevel by one because otherwise we'll get the location of our
# func_wrapper in the log, instead of our caller (which is the real caller of the wrapped function)
warnings.warn(message, warning_type, stacklevel=stacklevel + 1)
return func(*args, **kwargs)
if includedoc is not None and since is not None:
docstring = "\n.. deprecated:: {since}\n {message}\n\n".format(
since=since, message=includedoc
)
if (
extenddoc
and hasattr(func_wrapper, "__doc__")
and func_wrapper.__doc__ is not None
):
docstring = func_wrapper.__doc__ + "\n" + docstring
func_wrapper.__doc__ = docstring
return func_wrapper
return decorator
return specific_warning
|
https://github.com/OctoPrint/OctoPrint/issues/3348
|
2019-11-25 17:59:12,930 - octoprint.plugin - ERROR - Error while calling plugin fanspeedslider
Traceback (most recent call last):
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 224, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fanspeedslider/__init__.py", line 19, in on_after_startup
self.get_settings_updates()
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fanspeedslider/__init__.py", line 90, in get_settings_updates
self.defaultFanSpeed = self._settings.getInt(["defaultFanSpeed"])
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 521, in __getattr__
orig_func = decorator(orig_func)
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/__init__.py", line 134, in decorator
func.__qualname__ = to_native_str('warning_decorator_factory')
AttributeError: 'instancemethod' object has no attribute '__qualname__'
|
AttributeError
|
def specific_warning(
message, stacklevel=1, since=None, includedoc=None, extenddoc=False
):
def decorator(func):
@wraps(func)
def func_wrapper(*args, **kwargs):
# we need to increment the stacklevel by one because otherwise we'll get the location of our
# func_wrapper in the log, instead of our caller (which is the real caller of the wrapped function)
warnings.warn(message, warning_type, stacklevel=stacklevel + 1)
return func(*args, **kwargs)
if includedoc is not None and since is not None:
docstring = "\n.. deprecated:: {since}\n {message}\n\n".format(
since=since, message=includedoc
)
if (
extenddoc
and hasattr(func_wrapper, "__doc__")
and func_wrapper.__doc__ is not None
):
docstring = func_wrapper.__doc__ + "\n" + docstring
func_wrapper.__doc__ = docstring
return func_wrapper
return decorator
|
def specific_warning(
message, stacklevel=1, since=None, includedoc=None, extenddoc=False
):
def decorator(func):
func.__qualname__ = to_native_str("warning_decorator_factory")
func.__annotations__ = dict()
@wraps(func)
def func_wrapper(*args, **kwargs):
# we need to increment the stacklevel by one because otherwise we'll get the location of our
# func_wrapper in the log, instead of our caller (which is the real caller of the wrapped function)
warnings.warn(message, warning_type, stacklevel=stacklevel + 1)
return func(*args, **kwargs)
if includedoc is not None and since is not None:
docstring = "\n.. deprecated:: {since}\n {message}\n\n".format(
since=since, message=includedoc
)
if (
extenddoc
and hasattr(func_wrapper, "__doc__")
and func_wrapper.__doc__ is not None
):
docstring = func_wrapper.__doc__ + "\n" + docstring
func_wrapper.__doc__ = docstring
return func_wrapper
return decorator
|
https://github.com/OctoPrint/OctoPrint/issues/3348
|
2019-11-25 17:59:12,930 - octoprint.plugin - ERROR - Error while calling plugin fanspeedslider
Traceback (most recent call last):
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 224, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fanspeedslider/__init__.py", line 19, in on_after_startup
self.get_settings_updates()
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fanspeedslider/__init__.py", line 90, in get_settings_updates
self.defaultFanSpeed = self._settings.getInt(["defaultFanSpeed"])
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 521, in __getattr__
orig_func = decorator(orig_func)
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/__init__.py", line 134, in decorator
func.__qualname__ = to_native_str('warning_decorator_factory')
AttributeError: 'instancemethod' object has no attribute '__qualname__'
|
AttributeError
|
def decorator(func):
@wraps(func)
def func_wrapper(*args, **kwargs):
# we need to increment the stacklevel by one because otherwise we'll get the location of our
# func_wrapper in the log, instead of our caller (which is the real caller of the wrapped function)
warnings.warn(message, warning_type, stacklevel=stacklevel + 1)
return func(*args, **kwargs)
if includedoc is not None and since is not None:
docstring = "\n.. deprecated:: {since}\n {message}\n\n".format(
since=since, message=includedoc
)
if (
extenddoc
and hasattr(func_wrapper, "__doc__")
and func_wrapper.__doc__ is not None
):
docstring = func_wrapper.__doc__ + "\n" + docstring
func_wrapper.__doc__ = docstring
return func_wrapper
|
def decorator(func):
func.__qualname__ = to_native_str("warning_decorator_factory")
func.__annotations__ = dict()
@wraps(func)
def func_wrapper(*args, **kwargs):
# we need to increment the stacklevel by one because otherwise we'll get the location of our
# func_wrapper in the log, instead of our caller (which is the real caller of the wrapped function)
warnings.warn(message, warning_type, stacklevel=stacklevel + 1)
return func(*args, **kwargs)
if includedoc is not None and since is not None:
docstring = "\n.. deprecated:: {since}\n {message}\n\n".format(
since=since, message=includedoc
)
if (
extenddoc
and hasattr(func_wrapper, "__doc__")
and func_wrapper.__doc__ is not None
):
docstring = func_wrapper.__doc__ + "\n" + docstring
func_wrapper.__doc__ = docstring
return func_wrapper
|
https://github.com/OctoPrint/OctoPrint/issues/3348
|
2019-11-25 17:59:12,930 - octoprint.plugin - ERROR - Error while calling plugin fanspeedslider
Traceback (most recent call last):
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 224, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fanspeedslider/__init__.py", line 19, in on_after_startup
self.get_settings_updates()
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_fanspeedslider/__init__.py", line 90, in get_settings_updates
self.defaultFanSpeed = self._settings.getInt(["defaultFanSpeed"])
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 521, in __getattr__
orig_func = decorator(orig_func)
File "/home/nas/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint/util/__init__.py", line 134, in decorator
func.__qualname__ = to_native_str('warning_decorator_factory')
AttributeError: 'instancemethod' object has no attribute '__qualname__'
|
AttributeError
|
def permission_validator(request, permission):
"""
Validates that the given request is made by an authorized user, identified either by API key or existing Flask
session.
Must be executed in an existing Flask request context!
:param request: The Flask request object
:param request: The required permission
"""
user = get_flask_user_from_request(request)
if not user.has_permission(permission):
raise tornado.web.HTTPError(403)
|
def permission_validator(request, permission):
"""
Validates that the given request is made by an authorized user, identified either by API key or existing Flask
session.
Must be executed in an existing Flask request context!
:param request: The Flask request object
:param request: The required permission
"""
user = get_flask_user_from_request(request)
if user is None or not user.is_authenticated or not user.has_permission(permission):
raise tornado.web.HTTPError(403)
|
https://github.com/OctoPrint/OctoPrint/issues/2779
|
2018-08-03 16:57:12,579 - tornado.application - ERROR - Uncaught exception GET /downloads/files/local/test.gcode (127.0.0.1)
Traceback (most recent call last):
File "~/OctoPrint/venv/local/lib/python2.7/site-packages/tornado/web.py", line 1510, in _execute
result = method(*self.path_args, **self.path_kwargs)
File "~/OctoPrint/src/octoprint/server/util/tornado.py", line 918, in get
self._access_validation(self.request)
File "~/OctoPrint/src/octoprint/server/util/tornado.py", line 1150, in f
validator(flask.request, permission)
File "~/OctoPrint/src/octoprint/server/util/flask.py", line 1066, in permission_validator
user = _get_flask_user_from_request(request)
File "~/OctoPrint/src/octoprint/server/util/flask.py", line 1093, in _get_flask_user_from_request
user = octoprint.server.util.get_user_for_apikey(apikey)
File "~/OctoPrint/src/octoprint/server/util/__init__.py", line 187, in get_user_for_apikey
return octoprint.server.userManager.find_user(session=flask_login.current_user.session)
File "~/OctoPrint/venv/local/lib/python2.7/site-packages/werkzeug/local.py", line 343, in __getattr__
return getattr(self._get_current_object(), name)
AttributeError: 'AnonymousUser' object has no attribute 'session'
2018-08-03 16:57:12,581 - tornado.access - ERROR - 500 GET /downloads/files/local/test.gcode (127.0.0.1) 3.56ms
|
AttributeError
|
def get_flask_user_from_request(request):
"""
Retrieves the current flask user from the request context. Uses API key if available, otherwise the current
user session if available.
:param request: flask request from which to retrieve the current user
:return: the user (might be an anonymous user)
"""
import octoprint.server.util
import flask_login
user = None
apikey = octoprint.server.util.get_api_key(request)
if apikey is not None:
# user from api key?
user = octoprint.server.util.get_user_for_apikey(apikey)
if user is None:
# user still None -> current session user
user = flask_login.current_user
if user is None:
# user still None -> anonymous
from octoprint.server import userManager
user = userManager.anonymous_user_factory()
return user
|
def get_flask_user_from_request(request):
"""
Retrieves the current flask user from the request context. Uses API key if available, otherwise the current
user session if available.
:param request: flask request from which to retrieve the current user
:return: the user or None if no user could be determined
"""
import octoprint.server.util
import flask_login
user = None
apikey = octoprint.server.util.get_api_key(request)
if apikey is not None:
user = octoprint.server.util.get_user_for_apikey(apikey)
if user is None:
user = flask_login.current_user
return user
|
https://github.com/OctoPrint/OctoPrint/issues/2779
|
2018-08-03 16:57:12,579 - tornado.application - ERROR - Uncaught exception GET /downloads/files/local/test.gcode (127.0.0.1)
Traceback (most recent call last):
File "~/OctoPrint/venv/local/lib/python2.7/site-packages/tornado/web.py", line 1510, in _execute
result = method(*self.path_args, **self.path_kwargs)
File "~/OctoPrint/src/octoprint/server/util/tornado.py", line 918, in get
self._access_validation(self.request)
File "~/OctoPrint/src/octoprint/server/util/tornado.py", line 1150, in f
validator(flask.request, permission)
File "~/OctoPrint/src/octoprint/server/util/flask.py", line 1066, in permission_validator
user = _get_flask_user_from_request(request)
File "~/OctoPrint/src/octoprint/server/util/flask.py", line 1093, in _get_flask_user_from_request
user = octoprint.server.util.get_user_for_apikey(apikey)
File "~/OctoPrint/src/octoprint/server/util/__init__.py", line 187, in get_user_for_apikey
return octoprint.server.userManager.find_user(session=flask_login.current_user.session)
File "~/OctoPrint/venv/local/lib/python2.7/site-packages/werkzeug/local.py", line 343, in __getattr__
return getattr(self._get_current_object(), name)
AttributeError: 'AnonymousUser' object has no attribute 'session'
2018-08-03 16:57:12,581 - tornado.access - ERROR - 500 GET /downloads/files/local/test.gcode (127.0.0.1) 3.56ms
|
AttributeError
|
def get_python_version_string():
from platform import python_version
version_string = python_version()
# Debian has the python version set to 2.7.15+ which is not PEP440 compliant (bug 914072)
if version_string.endswith("+"):
version_string = version_string[:-1]
return version_string
|
def get_python_version_string():
from platform import python_version
version_string = python_version()
# Debian has the python version set to 2.7.15+ which is not PEP440 compliant (bug 914072)
if version_string.endswith("+"):
version_string = python_version[:-1]
return version_string
|
https://github.com/OctoPrint/OctoPrint/issues/3253
|
2019-08-21 11:55:47,421 - octoprint.plugin - ERROR - Error while calling plugin softwareupdate
Traceback (most recent call last):
File "/home/multipass/OctoPrint/src/octoprint/plugin/__init__.py", line 219, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/multipass/OctoPrint/src/octoprint/plugins/softwareupdate/__init__.py", line 102, in on_after_startup
self._check_environment()
File "/home/multipass/OctoPrint/src/octoprint/plugins/softwareupdate/__init__.py", line 184, in _check_environment
versions = dict(python=get_python_version_string(),
File "/home/multipass/OctoPrint/src/octoprint/util/version.py", line 126, in get_python_version_string
version_string = python_version[:-1]
TypeError: 'function' object has no attribute '__getitem__'
|
TypeError
|
def handle_request(self):
data = flask.request.json
if data is None:
return flask.make_response("Missing key request", 400)
if not "app" in data:
return flask.make_response("No app name provided", 400)
app_name = data["app"]
user_id = None
if "user" in data and data["user"]:
user_id = data["user"]
app_token, user_token = self._add_pending_decision(app_name, user_id=user_id)
self._plugin_manager.send_plugin_message(
self._identifier,
dict(
type="request_access",
app_name=app_name,
user_token=user_token,
user_id=user_id,
),
)
response = flask.jsonify(app_token=app_token)
response.status_code = 201
response.headers["Location"] = flask.url_for(
".handle_decision_poll", app_token=app_token, _external=True
)
return response
|
def handle_request(self):
data = flask.request.json
if data is None:
return flask.make_response("Missing key request", 400)
if not "app" in data:
return flask.make_response("No app name provided", 400)
app_name = data["app"]
user_id = None
if "user" in data:
user_id = data["user"]
app_token, user_token = self._add_pending_decision(app_name, user_id=user_id)
self._plugin_manager.send_plugin_message(
self._identifier,
dict(
type="request_access",
app_name=app_name,
user_token=user_token,
user_id=user_id,
),
)
response = flask.jsonify(app_token=app_token)
response.status_code = 201
response.headers["Location"] = flask.url_for(
".handle_decision_poll", app_token=app_token, _external=True
)
return response
|
https://github.com/OctoPrint/OctoPrint/issues/3257
|
Did not bind view model bedlevelvisualizerViewModel to target #wizard_plugin_bedlevelvisualizer since it does not exist
packed_core.js:2475 User dan logged in
packed_core.js:15967 ... binding done
packed_core.js:15979 Application startup complete
VM10072:1 POST https://octopi.lan/plugin/appkeys/decision/f79c74b29a06eaff6bcae4bc87a8a70e 404 (NOT FOUND)2019-08-27 02:34:52,948 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-08-27 02:34:52,953 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2019-08-27 02:34:52,954 - octoprint.server - INFO - OctoPrint 1.3.11
2019-08-27 02:34:52,963 - octoprint.plugin.core - INFO - 23 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Bed Visualizer (0.1.9) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_bedlevelvisualizer
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Octolapse (0.3.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.4.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_preheat
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Slic3r (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_slic3r
| SnapStream (0.2.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Tempsgraph Plugin (0.3.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-08-27 02:34:52,992 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918323200
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.15.0
| python:
| pip: 10.0.0
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-08-27 02:34:52,993 - octoprint.server - INFO - ------------------------------------------------------------------------------
2019-08-27 02:48:32,562 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/477b3315394f7ce91e66aadb562a0ce2 (::ffff:192.168.1.213) 39.72ms
2019-08-27 02:48:51,774 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/01ec80cf7e38a2c19b2bed426d2f62ca (::ffff:192.168.1.213) 36.38ms
2019-08-27 02:49:52,951 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-08-27 03:01:47,283 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/0ea01bbd8d3db1eb1b1a69fb31fdc42d (::ffff:192.168.1.213) 41.94ms
2019-08-27 03:02:13,937 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/dad41db8a80dbc11b520a2cd9b3b7b55 (::ffff:192.168.1.213) 35.86ms
2019-08-27 03:04:52,953 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-08-27 03:05:39,436 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 9.37ms
2019-08-27 03:05:40,556 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 20.09ms
2019-08-27 03:05:41,544 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/b14fce4348f432fa9b2b635e966aef84 (::ffff:192.168.1.213) 41.11ms
2019-08-27 03:05:41,637 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 9.49ms
2019-08-27 03:05:42,763 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 20.39ms
2019-08-27 03:05:43,886 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 20.21ms
2019-08-27 03:05:45,009 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 24.35ms
2019-08-27 03:05:46,126 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 16.80ms
2019-08-27 03:05:47,232 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 15.89ms
2019-08-27 03:05:48,344 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 10.85ms
2019-08-27 03:05:49,453 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 11.35ms
2019-08-27 03:05:50,560 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 11.52ms
2019-08-27 03:05:51,667 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/96f2b0e91d64906107e3e120d145eeee (fdc7:ada:65a4::aab) 11.69ms
2019-08-27 03:06:25,043 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 8.78ms
2019-08-27 03:06:26,165 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 21.45ms
2019-08-27 03:06:27,296 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 19.53ms
2019-08-27 03:06:28,412 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 14.53ms
2019-08-27 03:06:29,523 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 10.76ms
2019-08-27 03:06:30,630 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 10.06ms
2019-08-27 03:06:31,741 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 9.35ms
2019-08-27 03:06:32,852 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 8.98ms
2019-08-27 03:06:33,960 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/85903ba89e5cb05cf80d459c2db8ed95 (fdc7:ada:65a4::aab) 8.81ms
2019-08-27 03:06:37,227 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/13b5d90ddd944a9de4620f0c496c1b7e (fdc7:ada:65a4::aab) 9.22ms
2019-08-27 03:06:38,350 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/13b5d90ddd944a9de4620f0c496c1b7e (fdc7:ada:65a4::aab) 20.17ms
2019-08-27 03:06:39,062 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/835b1e94c41c955aeedd498bbc154ddb (::ffff:192.168.1.213) 39.00ms
2019-08-27 03:06:39,419 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/13b5d90ddd944a9de4620f0c496c1b7e (fdc7:ada:65a4::aab) 8.68ms
2019-08-27 03:06:40,546 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/13b5d90ddd944a9de4620f0c496c1b7e (fdc7:ada:65a4::aab) 20.48ms
2019-08-27 03:06:41,669 - tornado.access - WARNING - 405 POST /plugin/appkeys/request/13b5d90ddd944a9de4620f0c496c1b7e (fdc7:ada:65a4::aab) 19.65ms
2019-08-27 03:07:06,777 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/d95d5dc9c09d2ada0f0e98eebb446816 (::ffff:192.168.1.213) 36.63ms
2019-08-27 03:14:36,222 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/0f09c1c1de2f2e837c25e22d514216e6 (::ffff:192.168.1.213) 39.06ms
2019-08-27 03:14:59,418 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/004919b3b3c4b90a9ddf4369b8ccb52a (::ffff:192.168.1.213) 40.93ms
2019-08-27 03:15:33,548 - tornado.access - WARNING - 404 GET /plugin/appkeys/request/ (fdc7:ada:65a4::aab) 15.40ms
2019-08-27 03:15:41,022 - tornado.access - WARNING - 404 GET /plugin/appkeys/request/6698c0fb76b5867ae6990cd82ca029d6 (fdc7:ada:65a4::aab) 8.79ms
2019-08-27 03:15:57,799 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/51964d84aa6bb5f869e9006e208ecc51 (::ffff:192.168.1.213) 37.07ms
2019-08-27 03:18:19,282 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/dfa1247a0c367804e653246549472aff (::ffff:192.168.1.213) 36.33ms
2019-08-27 03:18:53,218 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/5facb65df4d86ecd54d7f7cdd8b64f2e (::ffff:192.168.1.213) 36.86ms
2019-08-27 03:19:52,954 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-08-27 03:20:40,372 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-08-27 03:20:45,099 - octoprint.server - INFO - Shutting down...
2019-08-27 03:20:45,506 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-08-27 03:20:45,511 - octoprint.events - INFO - Event loop shut down
2019-08-27 03:20:45,534 - octoprint.server - INFO - Goodbye!
2019-08-27 03:20:49,307 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:20:49,309 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-08-27 03:20:49,310 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:20:49,358 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-08-27 03:20:50,057 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-08-27 03:20:50,137 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:20:52,116 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.3.3) is disabled.
2019-08-27 03:20:52,732 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:20:53,061 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-08-27 03:20:53,091 - octoprint.server - INFO - Intermediary server started
2019-08-27 03:20:53,092 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:20:53,767 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:20:53,807 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-08-27 03:20:54,425 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-08-27 03:20:54,612 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-08-27 03:20:56,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:20:57,789 - octoprint.util.pip - INFO - Version of pip is 10.0.0
2019-08-27 03:20:57,790 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:20:57,791 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:20:57,796 - octoprint.plugin.core - INFO - Initialized 22 plugin implementation(s)
2019-08-27 03:20:57,815 - octoprint.plugin.core - INFO - 23 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Bed Visualizer (0.1.9) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_bedlevelvisualizer
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Octolapse (0.3.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.4.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_preheat
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Slic3r (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_slic3r
| SnapStream (0.2.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Tempsgraph Plugin (0.3.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-08-27 03:20:57,833 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918323200
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.15.0
| python:
| pip: 10.0.0
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-08-27 03:20:57,846 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-08-27 03:20:57,866 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-08-27 03:20:57,878 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets.
2019-08-27 03:20:59,120 - octoprint.server - INFO - Shutting down intermediary server...
2019-08-27 03:20:59,266 - octoprint.server - INFO - Intermediary server shut down
2019-08-27 03:20:59,269 - octoprint.events - INFO - Processing startup event, this is our first event
2019-08-27 03:20:59,269 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-08-27 03:20:59,277 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-08-27 03:20:59,347 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-08-27 03:20:59,689 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-08-27 03:20:59,690 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-08-27 03:20:59,693 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-08-27 03:20:59,696 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-08-27 03:20:59,705 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:20:59,712 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-08-27 03:20:59,715 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:20:59,719 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-08-27 03:20:59,729 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-08-27 03:20:59,739 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-08-27 03:20:59,740 - octoprint.util.comm - INFO - Detected Klipper firmware, enabling relevant features for issue free communication
2019-08-27 03:20:59,752 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-08-27 03:20:59,800 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-08-27 03:20:59,815 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-08-27 03:20:59,840 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-08-27 03:20:59,844 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json.
2019-08-27 03:21:00,230 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-08-27 03:21:00,313 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.94s
2019-08-27 03:21:00,737 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.8s
2019-08-27 03:21:01,103 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-08-27 03:21:02,963 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.1s
2019-08-27 03:21:02,980 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.2s
2019-08-27 03:21:03,360 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:21:03,363 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:21:03,569 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:21:03,725 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-08-27 03:21:03,961 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-08-27 03:21:03,979 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:21:03,998 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.72s
2019-08-27 03:21:04,128 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:21:04,141 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:21:04,276 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.83s
2019-08-27 03:21:04,827 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.72s
2019-08-27 03:21:05,023 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.67s
2019-08-27 03:21:09,507 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:21:09,507 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:21:09,511 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:21:09,513 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:21:10,225 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-08-27 03:21:10,226 - octoprint.plugins.bedlevelvisualizer - INFO - OctoPrint-BedLevelVisualizer loaded!
2019-08-27 03:21:10,231 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2019-08-27 03:21:10,589 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octopi.lan/'}
2019-08-27 03:21:12,167 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:21:35,809 - octoprint.server.preemptive_cache - INFO - ... done in 25.22s
2019-08-27 03:21:38,052 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:21:38,205 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:21:40,771 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:22:06,369 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/2e0c3d0c90540899e35c0385babe3ffa (::ffff:192.168.1.213) 41.12ms
2019-08-27 03:23:35,518 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/e56e1bb0ddcaaf95bb6a7f3cb404d2c3 (::ffff:192.168.1.213) 39.53ms
2019-08-27 03:28:47,781 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:28:47,950 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2739, in _readline
ret = self._serial.readline()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 4844, in readline
c = self.read(1)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 501, in read
'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)
2019-08-27 03:28:47,978 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2019-08-27 03:28:47,990 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline (Error: SerialException: 'device reports readiness to read but returned no data (device disconnected or multiple access on port?)' @ comm.py:_readline:2739)"
2019-08-27 03:28:49,966 - octoprint.server - INFO - Shutting down...
2019-08-27 03:28:50,732 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-08-27 03:28:50,735 - octoprint.events - INFO - Event loop shut down
2019-08-27 03:28:50,750 - octoprint.server - INFO - Goodbye!
2019-08-27 03:28:58,949 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:28:58,951 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-08-27 03:28:58,955 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:28:59,030 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-08-27 03:28:59,095 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:29:02,165 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.3.3) is disabled.
2019-08-27 03:29:03,419 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:29:03,758 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-08-27 03:29:03,803 - octoprint.server - INFO - Intermediary server started
2019-08-27 03:29:03,804 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:29:04,451 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:29:04,491 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-08-27 03:29:05,107 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-08-27 03:29:05,301 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-08-27 03:29:07,287 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:29:08,897 - octoprint.util.pip - INFO - Version of pip is 10.0.0
2019-08-27 03:29:08,899 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:29:08,899 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:29:08,905 - octoprint.plugin.core - INFO - Initialized 22 plugin implementation(s)
2019-08-27 03:29:08,925 - octoprint.plugin.core - INFO - 23 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Bed Visualizer (0.1.9) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_bedlevelvisualizer
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Octolapse (0.3.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.4.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_preheat
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Slic3r (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_slic3r
| SnapStream (0.2.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Tempsgraph Plugin (0.3.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-08-27 03:29:08,947 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918323200
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.15.0
| python:
| pip: 10.0.0
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-08-27 03:29:08,959 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-08-27 03:29:08,983 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-08-27 03:29:09,022 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets.
2019-08-27 03:29:10,349 - octoprint.server - INFO - Shutting down intermediary server...
2019-08-27 03:29:10,657 - octoprint.server - INFO - Intermediary server shut down
2019-08-27 03:29:10,660 - octoprint.events - INFO - Processing startup event, this is our first event
2019-08-27 03:29:10,661 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-08-27 03:29:10,664 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-08-27 03:29:10,744 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-08-27 03:29:10,816 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-08-27 03:29:10,819 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-08-27 03:29:10,821 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-08-27 03:29:10,830 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-08-27 03:29:10,838 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-08-27 03:29:10,840 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:29:10,852 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-08-27 03:29:10,855 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-08-27 03:29:10,863 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:29:10,866 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-08-27 03:29:10,880 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-08-27 03:29:10,885 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-08-27 03:29:10,949 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-08-27 03:29:10,949 - octoprint.util.comm - INFO - Detected Klipper firmware, enabling relevant features for issue free communication
2019-08-27 03:29:10,957 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-08-27 03:29:10,963 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json.
2019-08-27 03:29:11,191 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:29:11,915 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:29:12,824 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:29:12,826 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:29:12,826 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:29:12,851 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-08-27 03:29:12,888 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:29:13,277 - octoprint.plugins.bedlevelvisualizer - INFO - OctoPrint-BedLevelVisualizer loaded!
2019-08-27 03:29:13,280 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:29:13,284 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2019-08-27 03:29:13,845 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octopi.lan/'}
2019-08-27 03:29:15,070 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:29:15,249 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:29:15,264 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:29:37,996 - octoprint.server.preemptive_cache - INFO - ... done in 17.00s
2019-08-27 03:29:46,629 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:29:46,828 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:29:49,250 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:29:49,435 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:29:51,764 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:30:10,923 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/bab541ea14782e89262d61223d14d630 (::ffff:192.168.1.213) 37.23ms
2019-08-27 03:30:36,276 - tornado.access - WARNING - 403 GET /api/settings (::ffff:192.168.1.213) 15.74ms
2019-08-27 03:30:36,924 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:30:37,478 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:30:44,249 - tornado.access - WARNING - 401 POST /api/login (::ffff:192.168.1.213) 29.01ms
2019-08-27 03:30:49,013 - tornado.access - WARNING - 401 POST /api/login (::ffff:192.168.1.213) 32.22ms
2019-08-27 03:30:52,780 - tornado.access - WARNING - 401 POST /api/login (::ffff:192.168.1.213) 30.97ms
2019-08-27 03:30:59,768 - tornado.access - WARNING - 401 POST /api/login (::ffff:192.168.1.213) 31.47ms
2019-08-27 03:31:11,263 - tornado.access - WARNING - 401 POST /api/login (::ffff:192.168.1.213) 31.93ms
2019-08-27 03:32:05,281 - tornado.access - WARNING - 401 POST /api/login (::ffff:192.168.1.213) 30.75ms
2019-08-27 03:32:10,953 - octoprint.server.api - INFO - Actively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:32:11,027 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:32:11,150 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:32:13,700 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:32:13,912 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:32:16,414 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:33:30,053 - octoprint.plugins.softwareupdate - INFO - Starting update of bedlevelvisualizer to 0.1.10...
2019-08-27 03:33:31,716 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:33:36,458 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:33:36,459 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:33:46,526 - octoprint.plugins.softwareupdate - INFO - Update of bedlevelvisualizer to 0.1.10 successful!
2019-08-27 03:33:46,733 - octoprint.plugins.softwareupdate - INFO - Starting update of firmwareupdater to 1.6.1...
2019-08-27 03:33:56,402 - octoprint.plugins.softwareupdate - INFO - Update of firmwareupdater to 1.6.1 successful!
2019-08-27 03:33:56,744 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-08-27 03:33:56,747 - octoprint.plugins.softwareupdate - INFO - Restarting...
2019-08-27 03:34:00,651 - octoprint.server - INFO - Shutting down...
2019-08-27 03:34:01,238 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-08-27 03:34:01,249 - octoprint.events - INFO - Event loop shut down
2019-08-27 03:34:01,267 - octoprint.server - INFO - Goodbye!
2019-08-27 03:34:04,928 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:34:04,930 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-08-27 03:34:04,930 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:34:04,978 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-08-27 03:34:04,985 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-08-27 03:34:05,022 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:34:06,949 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.3.3) is disabled.
2019-08-27 03:34:07,554 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:34:07,879 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-08-27 03:34:07,905 - octoprint.server - INFO - Intermediary server started
2019-08-27 03:34:07,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:34:08,563 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:34:08,600 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-08-27 03:34:09,218 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-08-27 03:34:09,363 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-08-27 03:34:11,032 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:34:12,596 - octoprint.util.pip - INFO - Version of pip is 10.0.0
2019-08-27 03:34:12,598 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:34:12,599 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:34:12,612 - octoprint.plugin.core - INFO - Initialized 22 plugin implementation(s)
2019-08-27 03:34:12,633 - octoprint.plugin.core - INFO - 23 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Bed Visualizer (0.1.10) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_bedlevelvisualizer
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Octolapse (0.3.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.4.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_preheat
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Slic3r (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_slic3r
| SnapStream (0.2.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Tempsgraph Plugin (0.3.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-08-27 03:34:12,652 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918323200
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.15.0
| python:
| pip: 10.0.0
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-08-27 03:34:12,676 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-08-27 03:34:12,723 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-08-27 03:34:12,751 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets.
2019-08-27 03:34:14,019 - octoprint.server - INFO - Shutting down intermediary server...
2019-08-27 03:34:14,165 - octoprint.server - INFO - Intermediary server shut down
2019-08-27 03:34:14,168 - octoprint.events - INFO - Processing startup event, this is our first event
2019-08-27 03:34:14,171 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-08-27 03:34:14,174 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-08-27 03:34:14,263 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-08-27 03:34:14,280 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:34:14,663 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:34:14,997 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-08-27 03:34:15,011 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-08-27 03:34:15,019 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:34:15,027 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-08-27 03:34:15,032 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-08-27 03:34:15,035 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-08-27 03:34:15,042 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-08-27 03:34:15,043 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:34:15,054 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-08-27 03:34:15,061 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-08-27 03:34:15,077 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-08-27 03:34:15,077 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-08-27 03:34:15,078 - octoprint.util.comm - INFO - Detected Klipper firmware, enabling relevant features for issue free communication
2019-08-27 03:34:15,090 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-08-27 03:34:15,151 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-08-27 03:34:15,156 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json.
2019-08-27 03:34:15,431 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:34:15,724 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:34:16,353 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:34:16,478 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:34:17,151 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:34:17,798 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:34:17,799 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:34:17,801 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:34:18,124 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:34:18,127 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:34:20,425 - octoprint.server.views - ERROR - Error while retrieving template data for plugin navbartemp, ignoring it
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 657, in fetch_template_data
configs = implementation.get_template_configs()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py", line 82, in get_template_configs
if self.sbc.is_supported:
AttributeError: 'NoneType' object has no attribute 'is_supported'
2019-08-27 03:34:20,729 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:34:22,739 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:34:22,740 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:34:22,970 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-08-27 03:34:22,973 - octoprint.plugins.bedlevelvisualizer - INFO - OctoPrint-BedLevelVisualizer loaded!
2019-08-27 03:34:22,979 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2019-08-27 03:34:23,372 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octopi.lan/'}
2019-08-27 03:34:45,342 - octoprint.server.preemptive_cache - INFO - ... done in 21.97s
2019-08-27 03:34:45,388 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:34:47,860 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:34:48,134 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:34:50,547 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:37:23,528 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/12d09298e5c7019d15a054fd1bdd26db (::ffff:192.168.1.213) 35.42ms
2019-08-27 03:47:16,642 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/5d3153aba42bda0dd4258627877177bd (::ffff:192.168.1.213) 34.32ms
2019-08-27 03:48:37,592 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart
2019-08-27 03:48:40,132 - octoprint.server - INFO - Shutting down...
2019-08-27 03:48:40,771 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-08-27 03:48:40,776 - octoprint.events - INFO - Event loop shut down
2019-08-27 03:48:40,796 - octoprint.server - INFO - Goodbye!
2019-08-27 03:48:44,399 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:48:44,401 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-08-27 03:48:44,402 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2019-08-27 03:48:44,402 - octoprint.startup - INFO - Reason for safe mode: setting in config.yaml
2019-08-27 03:48:44,403 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:48:44,450 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-08-27 03:48:45,112 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-08-27 03:48:45,195 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:48:47,103 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.3.3) is disabled.
2019-08-27 03:48:47,244 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-08-27 03:48:47,661 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-08-27 03:48:47,686 - octoprint.server - INFO - Intermediary server started
2019-08-27 03:48:47,686 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:48:48,344 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-08-27 03:48:48,382 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-08-27 03:48:48,971 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-08-27 03:48:49,145 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-08-27 03:48:50,755 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:48:52,309 - octoprint.util.pip - INFO - Version of pip is 10.0.0
2019-08-27 03:48:52,310 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:48:52,311 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:48:52,316 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-08-27 03:48:52,470 - octoprint.plugin.core - INFO - 23 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| !Bed Visualizer (0.1.10) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_bedlevelvisualizer
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| !Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| !Octolapse (0.3.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| !Preheat Button (0.4.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_preheat
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Slic3r (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_slic3r
| !SnapStream (0.2.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Tempsgraph Plugin (0.3.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-08-27 03:48:52,488 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918323200
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.15.0
| python:
| pip: 10.0.0
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-08-27 03:48:52,500 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-08-27 03:48:52,520 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-08-27 03:48:53,410 - octoprint.server - INFO - Shutting down intermediary server...
2019-08-27 03:48:53,792 - octoprint.server - INFO - Intermediary server shut down
2019-08-27 03:48:53,794 - octoprint.events - INFO - Processing startup event, this is our first event
2019-08-27 03:48:53,795 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-08-27 03:48:53,798 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-08-27 03:48:53,856 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-08-27 03:48:53,870 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:48:54,443 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:48:54,614 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-08-27 03:48:54,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-08-27 03:48:54,622 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:48:54,623 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-08-27 03:48:54,633 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-08-27 03:48:54,635 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-08-27 03:48:54,647 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:48:54,649 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-08-27 03:48:54,665 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-08-27 03:48:54,669 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-08-27 03:48:54,670 - octoprint.util.comm - INFO - Detected Klipper firmware, enabling relevant features for issue free communication
2019-08-27 03:48:54,688 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-08-27 03:48:54,699 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-08-27 03:48:54,700 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2019-08-27 03:48:55,160 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:48:55,393 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:48:55,845 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:48:55,873 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:48:56,393 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:48:56,422 - tornado.access - WARNING - 404 POST /plugin/octolapse/loadState (::ffff:192.168.1.213) 30.86ms
2019-08-27 03:48:56,844 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:48:56,846 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:48:56,846 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:48:57,212 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octopi.lan/'}
2019-08-27 03:48:58,999 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:49:16,713 - octoprint.server.preemptive_cache - INFO - ... done in 19.50s
2019-08-27 03:49:16,731 - tornado.access - WARNING - 404 POST /plugin/octolapse/loadState (::ffff:192.168.1.213) 26.11ms
2019-08-27 03:49:16,762 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:49:18,907 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:49:19,081 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:49:21,187 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:49:27,252 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/9549db05c3361cb3475e1a0fcba6bc1d (::ffff:192.168.1.213) 32.41ms
2019-08-27 03:51:34,623 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-08-27 03:51:38,121 - octoprint.server - INFO - Shutting down...
2019-08-27 03:51:38,161 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-08-27 03:51:38,168 - octoprint.events - INFO - Event loop shut down
2019-08-27 03:51:38,188 - octoprint.server - INFO - Goodbye!
2019-08-27 03:51:41,795 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:51:41,797 - octoprint.startup - INFO - Starting OctoPrint 1.3.11
2019-08-27 03:51:41,797 - octoprint.startup - INFO - ******************************************************************************
2019-08-27 03:51:41,844 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-08-27 03:51:41,849 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-08-27 03:51:41,884 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:51:43,795 - octoprint.plugin.core - INFO - Plugin Tempsgraph Plugin (0.3.3) is disabled.
2019-08-27 03:51:44,391 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:51:44,715 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-08-27 03:51:44,742 - octoprint.server - INFO - Intermediary server started
2019-08-27 03:51:44,742 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-08-27 03:51:45,400 - octoprint.plugin.core - INFO - Found 23 plugin(s) providing 22 mixin implementations, 38 hook handlers
2019-08-27 03:51:45,438 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-08-27 03:51:46,060 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-08-27 03:51:46,241 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-08-27 03:51:47,789 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:51:49,326 - octoprint.util.pip - INFO - Version of pip is 10.0.0
2019-08-27 03:51:49,328 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:51:49,328 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:51:49,334 - octoprint.plugin.core - INFO - Initialized 22 plugin implementation(s)
2019-08-27 03:51:49,354 - octoprint.plugin.core - INFO - 23 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Bed Visualizer (0.1.10) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_bedlevelvisualizer
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Firmware Updater (1.6.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Octolapse (0.3.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Preheat Button (0.4.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_preheat
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Slic3r (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_slic3r
| SnapStream (0.2.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_snapstream
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Tempsgraph Plugin (0.3.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_tempsgraph
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-08-27 03:51:49,372 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918323200
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.15.0
| python:
| pip: 10.0.0
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-08-27 03:51:49,382 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-08-27 03:51:49,397 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-08-27 03:51:49,409 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets.
2019-08-27 03:51:50,693 - octoprint.server - INFO - Shutting down intermediary server...
2019-08-27 03:51:50,851 - octoprint.server - INFO - Intermediary server shut down
2019-08-27 03:51:50,854 - octoprint.events - INFO - Processing startup event, this is our first event
2019-08-27 03:51:50,856 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-08-27 03:51:50,858 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-08-27 03:51:50,947 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-08-27 03:51:50,966 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:51:51,357 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:51:51,659 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-08-27 03:51:51,663 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-08-27 03:51:51,669 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-08-27 03:51:51,671 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:51:51,673 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-08-27 03:51:51,677 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-08-27 03:51:51,694 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-08-27 03:51:51,700 - octoprint.plugins.firmwareupdater - INFO - Got CONNECTED event
2019-08-27 03:51:51,701 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-08-27 03:51:51,703 - octoprint.plugins.firmwareupdater - INFO - Run postflash flag is not set
2019-08-27 03:51:51,716 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-08-27 03:51:51,721 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-08-27 03:51:51,723 - octoprint.util.comm - INFO - Detected Klipper firmware, enabling relevant features for issue free communication
2019-08-27 03:51:51,739 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-08-27 03:51:51,829 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-08-27 03:51:51,832 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/pi/.octoprint/data/octolapse/settings.json.
2019-08-27 03:51:52,084 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-08-27 03:51:52,666 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-08-27 03:51:52,781 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:51:52,958 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:51:52,974 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:51:53,967 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-08-27 03:51:53,969 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-08-27 03:51:53,970 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-08-27 03:51:54,007 - octoprint.plugins.bedlevelvisualizer - INFO - OctoPrint-BedLevelVisualizer loaded!
2019-08-27 03:51:54,010 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2019-08-27 03:51:54,362 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octopi.lan/'}
2019-08-27 03:52:09,617 - octoprint.server.preemptive_cache - INFO - ... done in 15.26s
2019-08-27 03:52:12,212 - octoprint.server.util.sockjs - INFO - New connection from client: fdc7:ada:65a4::aab
2019-08-27 03:52:16,101 - tornado.access - WARNING - 401 POST /api/login (fdc7:ada:65a4::aab) 75.98ms
2019-08-27 03:52:20,433 - octoprint.server.api - INFO - Actively logging in user dan from fdc7:ada:65a4::aab
2019-08-27 03:52:20,461 - octoprint.server.util.sockjs - INFO - Client connection closed: fdc7:ada:65a4::aab
2019-08-27 03:52:20,502 - octoprint.server.util.flask - INFO - Passively logging in user dan from fdc7:ada:65a4::aab
2019-08-27 03:52:22,099 - octoprint.server.util.sockjs - INFO - New connection from client: fdc7:ada:65a4::aab
2019-08-27 03:52:22,281 - octoprint.server.util.flask - INFO - Passively logging in user dan from fdc7:ada:65a4::aab
2019-08-27 03:52:24,831 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client fdc7:ada:65a4::aab
2019-08-27 03:52:35,751 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/0f25b02b1e9ffa75ba3b34214b20dd03 (fdc7:ada:65a4::aab) 33.65ms
2019-08-27 03:53:08,733 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:53:08,907 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.1.213
2019-08-27 03:53:14,222 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.1.213
2019-08-27 03:53:14,372 - octoprint.server.util.flask - INFO - Passively logging in user dan from ::ffff:192.168.1.213
2019-08-27 03:53:17,856 - octoprint.server.util.sockjs - INFO - User dan logged in on the socket from client ::ffff:192.168.1.213
2019-08-27 03:54:28,289 - tornado.access - WARNING - 404 POST /plugin/appkeys/decision/f79c74b29a06eaff6bcae4bc87a8a70e (::ffff:192.168.1.213) 35.33ms
|
AttributeError
|
def login():
data = request.values
if hasattr(request, "json") and request.json:
data = request.json
if octoprint.server.userManager.enabled and "user" in data and "pass" in data:
username = data["user"]
password = data["pass"]
if "remember" in data and data["remember"] in valid_boolean_trues:
remember = True
else:
remember = False
if "usersession.id" in session:
_logout(current_user)
user = octoprint.server.userManager.findUser(username)
if user is not None:
if octoprint.server.userManager.checkPassword(username, password):
if not user.is_active():
return make_response(("Your account is deactivated", 403, []))
if octoprint.server.userManager.enabled:
user = octoprint.server.userManager.login_user(user)
session["usersession.id"] = user.session
g.user = user
login_user(user, remember=remember)
identity_changed.send(
current_app._get_current_object(), identity=Identity(user.get_id())
)
remote_addr = get_remote_address(request)
logging.getLogger(__name__).info(
"Actively logging in user {} from {}".format(
user.get_id(), remote_addr
)
)
response = user.asDict()
response["_is_external_client"] = s().getBoolean(
["server", "ipCheck", "enabled"]
) and not util_net.is_lan_address(
remote_addr,
additional_private=s().get(["server", "ipCheck", "trustedSubnets"]),
)
r = make_response(jsonify(response))
r.delete_cookie("active_logout")
return r
return make_response(("User unknown or password incorrect", 401, []))
elif "passive" in data:
return passive_login()
return NO_CONTENT
|
def login():
data = request.values
if hasattr(request, "json") and request.json:
data = request.json
if octoprint.server.userManager.enabled and "user" in data and "pass" in data:
username = data["user"]
password = data["pass"]
if "remember" in data and data["remember"] in valid_boolean_trues:
remember = True
else:
remember = False
if "usersession.id" in session:
_logout(current_user)
user = octoprint.server.userManager.findUser(username)
if user is not None:
if octoprint.server.userManager.checkPassword(username, password):
if not user.is_active():
return make_response(("Your account is deactivated", 403, []))
if octoprint.server.userManager.enabled:
user = octoprint.server.userManager.login_user(user)
session["usersession.id"] = user.session
g.user = user
login_user(user, remember=remember)
identity_changed.send(
current_app._get_current_object(), identity=Identity(user.get_id())
)
remote_addr = get_remote_address(request)
logging.getLogger(__name__).info(
"Actively logging in user {} from {}".format(
user.get_id(), remote_addr
)
)
response = user.asDict()
response["_is_external_client"] = s().getBoolean(
["server", "ipCheck", "enabled"]
) and not util_net.is_lan_address(
remote_addr,
additional_private=s().get(["server", "ipCheck", "trustedSubnets"]),
)
return jsonify(response)
return make_response(("User unknown or password incorrect", 401, []))
elif "passive" in data:
return passive_login()
return NO_CONTENT
|
https://github.com/OctoPrint/OctoPrint/issues/3142
|
2019-05-06 12:38:21,168 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:38:21,170 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc3
2019-05-06 12:38:21,171 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:38:21,277 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-05-06 12:38:21,278 - octoprint.startup - INFO - Blacklist processing done
2019-05-06 12:38:21,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:38:21,352 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for logging from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging/__init__.py
2019-05-06 12:38:22,945 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for corewizard from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard/__init__.py
2019-05-06 12:38:22,959 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for backup from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup/__init__.py
2019-05-06 12:38:23,028 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for announcements from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py
2019-05-06 12:38:23,212 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for action_command_prompt from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt/__init__.py
2019-05-06 12:38:23,228 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for appkeys from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys/__init__.py
2019-05-06 12:38:23,254 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for discovery from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery/__init__.py
2019-05-06 12:38:23,310 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for forcelogin from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py
2019-05-06 12:38:23,323 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pi_support from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py
2019-05-06 12:38:23,341 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for virtual_printer from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer/__init__.py
2019-05-06 12:38:23,348 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for printer_safety_check from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check/__init__.py
2019-05-06 12:38:23,365 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for softwareupdate from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/__init__.py
2019-05-06 12:38:23,463 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for errortracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking/__init__.py
2019-05-06 12:38:23,478 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for tracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking/__init__.py
2019-05-06 12:38:23,503 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pluginmanager from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py
2019-05-06 12:38:23,793 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for systemcommandeditor from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor/__init__.py
2019-05-06 12:38:23,797 - octoprint.plugin.core - INFO - Plugin System Command Editor (0.3.2) is disabled.
2019-05-06 12:38:23,821 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for flowspeedrename from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename/__init__.py
2019-05-06 12:38:23,824 - octoprint.plugin.core - INFO - Plugin Rename Flowspeed & Feedrate (0.1.0) is disabled.
2019-05-06 12:38:23,836 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for navbartemp from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py
2019-05-06 12:38:23,843 - octoprint.plugin.core - INFO - Plugin Navbar Temperature Plugin (0.11) is disabled.
2019-05-06 12:38:23,855 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for autoselect from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect/__init__.py
2019-05-06 12:38:23,860 - octoprint.plugin.core - INFO - Plugin Autoselect Plugin (0.2.0) is disabled.
2019-05-06 12:38:23,871 - octoprint.plugin.core - DEBUG - Loaded plugin logging: Logging
2019-05-06 12:38:23,872 - octoprint.plugin.core - DEBUG - Loaded plugin corewizard: Core Wizard
2019-05-06 12:38:23,873 - octoprint.plugin.core - DEBUG - Loaded plugin backup: Backup & Restore
2019-05-06 12:38:23,874 - octoprint.plugin.core - DEBUG - Loaded plugin announcements: Announcement Plugin
2019-05-06 12:38:23,875 - octoprint.plugin.core - DEBUG - Loaded plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:38:23,877 - octoprint.plugin.core - DEBUG - Loaded plugin appkeys: Application Keys Plugin
2019-05-06 12:38:23,878 - octoprint.plugin.core - DEBUG - Loaded plugin discovery: Discovery
2019-05-06 12:38:23,879 - octoprint.plugin.core - DEBUG - Loaded plugin forcelogin: Force Login
2019-05-06 12:38:23,880 - octoprint.plugin.core - DEBUG - Loaded plugin pi_support: Pi Support Plugin
2019-05-06 12:38:23,881 - octoprint.plugin.core - DEBUG - Loaded plugin virtual_printer: Virtual Printer
2019-05-06 12:38:23,882 - octoprint.plugin.core - DEBUG - Loaded plugin printer_safety_check: Printer Safety Check
2019-05-06 12:38:23,883 - octoprint.plugin.core - DEBUG - Loaded plugin softwareupdate: Software Update
2019-05-06 12:38:23,884 - octoprint.plugin.core - DEBUG - Loaded plugin errortracking: Error Tracking
2019-05-06 12:38:23,885 - octoprint.plugin.core - DEBUG - Loaded plugin tracking: Anonymous Usage Tracking
2019-05-06 12:38:23,887 - octoprint.plugin.core - DEBUG - Loaded plugin pluginmanager: Plugin Manager
2019-05-06 12:38:23,888 - octoprint.plugin.core - DEBUG - Enabled plugin logging: Logging
2019-05-06 12:38:23,889 - octoprint.plugin.core - DEBUG - Enabled plugin corewizard: Core Wizard
2019-05-06 12:38:23,892 - octoprint.plugin.core - DEBUG - Enabled plugin backup: Backup & Restore
2019-05-06 12:38:23,894 - octoprint.plugin.core - DEBUG - Enabled plugin announcements: Announcement Plugin
2019-05-06 12:38:23,895 - octoprint.plugin.core - DEBUG - Enabled plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:38:23,897 - octoprint.plugin.core - DEBUG - Enabled plugin appkeys: Application Keys Plugin
2019-05-06 12:38:23,898 - octoprint.plugin.core - DEBUG - Enabled plugin discovery: Discovery
2019-05-06 12:38:23,899 - octoprint.plugin.core - DEBUG - Enabled plugin forcelogin: Force Login
2019-05-06 12:38:23,901 - octoprint.plugin.core - DEBUG - Enabled plugin pi_support: Pi Support Plugin
2019-05-06 12:38:23,905 - octoprint.plugin.core - DEBUG - Enabled plugin virtual_printer: Virtual Printer
2019-05-06 12:38:23,907 - octoprint.plugin.core - DEBUG - Enabled plugin printer_safety_check: Printer Safety Check
2019-05-06 12:38:23,909 - octoprint.plugin.core - DEBUG - Enabled plugin softwareupdate: Software Update
2019-05-06 12:38:23,963 - octoprint.plugins.errortracking - INFO - Initialized error tracking
2019-05-06 12:38:23,965 - octoprint.plugin.core - DEBUG - Enabled plugin errortracking: Error Tracking
2019-05-06 12:38:23,967 - octoprint.plugin.core - DEBUG - Enabled plugin tracking: Anonymous Usage Tracking
2019-05-06 12:38:23,969 - octoprint.plugin.core - DEBUG - Enabled plugin pluginmanager: Plugin Manager
2019-05-06 12:38:23,970 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:38:24,241 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-05-06 12:38:24,291 - octoprint.server - DEBUG - Starting intermediary server on http://127.0.0.1:5000
2019-05-06 12:38:24,294 - octoprint.server - INFO - Intermediary server started
2019-05-06 12:38:24,295 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:38:24,545 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:38:24,580 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-05-06 12:38:25,111 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-05-06 12:38:25,114 - octoprint.events - DEBUG - Subscribed listener <function on_settings_update at 0x73a14570> for event SettingsUpdated
2019-05-06 12:38:25,134 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataAnalysisFinished of <octoprint.printer.standard.Printer object at 0x73b6f3b0>> for event MetadataAnalysisFinished
2019-05-06 12:38:25,135 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataStatisticsUpdated of <octoprint.printer.standard.Printer object at 0x73b6f3b0>> for event MetadataStatisticsUpdated
2019-05-06 12:38:25,137 - octoprint.server - DEBUG - Registered event throttle_state of plugin pi_support as Events.PLUGIN_PI_SUPPORT_THROTTLE_STATE = "plugin_pi_support_throttle_state"
2019-05-06 12:38:25,138 - octoprint.server - DEBUG - Registered event install_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_INSTALL_PLUGIN = "plugin_pluginmanager_install_plugin"
2019-05-06 12:38:25,139 - octoprint.server - DEBUG - Registered event uninstall_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_UNINSTALL_PLUGIN = "plugin_pluginmanager_uninstall_plugin"
2019-05-06 12:38:25,140 - octoprint.server - DEBUG - Registered event enable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_ENABLE_PLUGIN = "plugin_pluginmanager_enable_plugin"
2019-05-06 12:38:25,141 - octoprint.server - DEBUG - Registered event disable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_DISABLE_PLUGIN = "plugin_pluginmanager_disable_plugin"
2019-05-06 12:38:25,142 - octoprint.server - DEBUG - Registered event warning of plugin printer_safety_check as Events.PLUGIN_PRINTER_SAFETY_CHECK_WARNING = "plugin_printer_safety_check_warning"
2019-05-06 12:38:25,143 - octoprint.server - DEBUG - Registered event update_succeeded of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_SUCCEEDED = "plugin_softwareupdate_update_succeeded"
2019-05-06 12:38:25,144 - octoprint.server - DEBUG - Registered event update_failed of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_FAILED = "plugin_softwareupdate_update_failed"
2019-05-06 12:38:25,147 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin tracking
2019-05-06 12:38:25,149 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin logging
2019-05-06 12:38:25,153 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin appkeys
2019-05-06 12:38:25,155 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin virtual_printer
2019-05-06 12:38:25,159 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin action_command_prompt
2019-05-06 12:38:25,162 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin corewizard
2019-05-06 12:38:25,164 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pi_support
2019-05-06 12:38:25,167 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin printer_safety_check
2019-05-06 12:38:25,252 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-05-06 12:38:25,253 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin softwareupdate
2019-05-06 12:38:25,256 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin errortracking
2019-05-06 12:38:25,258 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin announcements
2019-05-06 12:38:25,261 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin forcelogin
2019-05-06 12:38:27,772 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:38:29,702 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-05-06 12:38:29,704 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:38:29,706 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:38:29,707 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pluginmanager
2019-05-06 12:38:29,710 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin backup
2019-05-06 12:38:29,713 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin discovery
2019-05-06 12:38:29,715 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-05-06 12:38:29,726 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| !Autoselect Plugin (0.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Rename Flowspeed & Feedrate (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !System Command Editor (0.3.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-05-06 12:38:29,743 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 904245248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.13.0
| python:
| pip: 19.0.3
| version: 2.7.9
| virtualenv: /home/pi/oprint
2019-05-06 12:38:29,750 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,755 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,757 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,758 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,777 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,779 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,915 - octoprint.server - DEBUG - Registered API of plugin announcements under URL prefix /plugin/announcements
2019-05-06 12:38:29,938 - octoprint.server - DEBUG - Registered API of plugin appkeys under URL prefix /plugin/appkeys
2019-05-06 12:38:29,964 - octoprint.server - DEBUG - Registered API of plugin backup under URL prefix /plugin/backup
2019-05-06 12:38:29,982 - octoprint.server - DEBUG - Registered API of plugin corewizard under URL prefix /plugin/corewizard
2019-05-06 12:38:30,001 - octoprint.server - DEBUG - Registered API of plugin discovery under URL prefix /plugin/discovery
2019-05-06 12:38:30,016 - octoprint.server - DEBUG - Registered API of plugin logging under URL prefix /plugin/logging
2019-05-06 12:38:30,035 - octoprint.server - DEBUG - Registered API of plugin pluginmanager under URL prefix /plugin/pluginmanager
2019-05-06 12:38:30,055 - octoprint.server - DEBUG - Registered API of plugin softwareupdate under URL prefix /plugin/softwareupdate
2019-05-06 12:38:30,071 - octoprint.server - DEBUG - Registered assets of plugin action_command_prompt under URL prefix /plugin/action_command_prompt
2019-05-06 12:38:30,086 - octoprint.server - DEBUG - Registered assets of plugin errortracking under URL prefix /plugin/errortracking
2019-05-06 12:38:30,101 - octoprint.server - DEBUG - Registered assets of plugin forcelogin under URL prefix /plugin/forcelogin
2019-05-06 12:38:30,116 - octoprint.server - DEBUG - Registered assets of plugin pi_support under URL prefix /plugin/pi_support
2019-05-06 12:38:30,132 - octoprint.server - DEBUG - Registered assets of plugin printer_safety_check under URL prefix /plugin/printer_safety_check
2019-05-06 12:38:30,147 - octoprint.server - DEBUG - Registered assets of plugin tracking under URL prefix /plugin/tracking
2019-05-06 12:38:30,340 - octoprint.server - DEBUG - Adding additional route /plugin/backup/download/(.*) handled by handler <class 'octoprint.server.util.tornado.LargeResponseHandler'> and with additional arguments {'access_validation': <function f at 0x71cc71b0>, 'as_attachment': True, 'path_validation': <function f at 0x71cc7170>, 'path': '/home/pi/.octoprint/data/backup'}
2019-05-06 12:38:30,368 - octoprint.server - DEBUG - Adding maximum body size of 1073741824B for POST requests to /plugin/backup/restore)
2019-05-06 12:38:30,370 - octoprint.server - DEBUG - Adding maximum body size of 52428800B for POST requests to /plugin/pluginmanager/upload_archive)
2019-05-06 12:38:30,372 - octoprint.server - INFO - Shutting down intermediary server...
2019-05-06 12:38:30,418 - octoprint.server - INFO - Intermediary server shut down
2019-05-06 12:38:30,422 - octoprint.events - INFO - Processing startup event, this is our first event
2019-05-06 12:38:30,423 - octoprint.events.fire - DEBUG - Firing event: Startup (Payload: None)
2019-05-06 12:38:30,424 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:38:30,425 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:38:30,425 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:38:30,426 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:38:30,426 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:38:30,427 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:38:30,423 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-05-06 12:38:30,432 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-05-06 12:38:30,485 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-05-06 12:38:30,501 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-05-06 12:38:30,505 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-05-06 12:38:30,510 - octoprint.plugin - DEBUG - Calling on_startup on announcements
2019-05-06 12:38:30,513 - octoprint.plugin - DEBUG - Calling on_startup on backup
2019-05-06 12:38:30,515 - octoprint.plugin - DEBUG - Calling on_startup on discovery
2019-05-06 12:38:30,531 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _http._tcp
2019-05-06 12:38:30,547 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _octoprint._tcp
2019-05-06 12:38:30,550 - octoprint.plugin - DEBUG - Calling on_startup on pi_support
2019-05-06 12:38:30,564 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Printer_1" for SSDP
2019-05-06 12:38:30,589 - octoprint.plugins.pi_support - ERROR - Got an error while trying to fetch the current throttle state via "/usr/bin/vcgencmd get_throttled"
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 263, in _check_throttled_state
state = get_vcgencmd_throttled_state(command)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 140, in get_vcgencmd_throttled_state
raise ValueError("cannot parse \"{}\" output: {}".format(command, output))
ValueError: cannot parse "/usr/bin/vcgencmd get_throttled" output: error=1 error_msg="Command not registered"
2019-05-06 12:38:30,670 - octoprint.plugin - DEBUG - Calling on_startup on pluginmanager
2019-05-06 12:38:30,673 - octoprint.plugin - DEBUG - Calling on_startup on softwareupdate
2019-05-06 12:38:30,676 - octoprint.plugin - DEBUG - Calling on_startup on tracking
2019-05-06 12:38:30,678 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-05-06 12:38:30,681 - octoprint.plugin - DEBUG - Calling on_after_startup on announcements
2019-05-06 12:38:30,695 - octoprint.plugin - DEBUG - Calling on_after_startup on backup
2019-05-06 12:38:30,702 - octoprint.plugin - DEBUG - Calling on_after_startup on discovery
2019-05-06 12:38:30,704 - octoprint.plugin - DEBUG - Calling on_after_startup on pi_support
2019-05-06 12:38:30,706 - octoprint.plugin - DEBUG - Calling on_after_startup on pluginmanager
2019-05-06 12:38:30,722 - octoprint.plugin - DEBUG - Calling on_after_startup on softwareupdate
2019-05-06 12:38:30,842 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-05-06 12:38:31,028 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-05-06 12:38:31,139 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:31,140 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:31,244 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:31,246 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:31,247 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:31,249 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:31,319 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:31,320 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:31,323 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:31,325 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:31,326 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:31,328 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:31,329 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:31,330 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:31,332 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:31,361 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:31,682 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:38:31,685 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:38:31,905 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:38:32,039 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:38:32,882 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:38:32,883 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:38:32,884 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:38:32,952 - octoprint.plugin - DEBUG - Calling on_after_startup on tracking
2019-05-06 12:38:33,194 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://129.247.189.242:30141/'}
2019-05-06 12:38:33,203 - octoprint.server.views - DEBUG - Forcing rendering of view _default
2019-05-06 12:38:33,269 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:38:34,826 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:34,827 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:34,829 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:34,830 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:34,831 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:34,832 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:34,833 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:34,835 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:34,836 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:34,837 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:34,838 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:34,840 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:34,841 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:34,848 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:34,849 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:34,873 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:50,694 - octoprint.server.util.flask - DEBUG - Needed 18.65s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:38:50,728 - octoprint.server.util.flask - DEBUG - Needed 17.46s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:38:50,740 - octoprint.server.preemptive_cache - INFO - ... done in 17.55s
2019-05-06 12:38:51,274 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:38:51,348 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:38:51,351 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:38:52,593 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:52,594 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:52,595 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:52,596 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:52,597 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:52,598 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:52,600 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:52,601 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:52,602 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:52,603 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:52,604 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:52,605 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:52,606 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:52,607 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:52,609 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:52,628 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,036 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:53,038 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:53,039 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:53,040 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:53,041 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:53,042 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:53,043 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:53,044 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:53,045 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:53,046 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:53,047 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:53,049 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:53,050 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:53,051 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:53,052 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:53,070 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,221 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:53,224 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:53,225 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:53,226 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:53,227 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:53,228 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:53,230 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:53,231 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:53,232 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:53,233 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:53,234 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:53,235 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:53,236 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:53,237 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:53,238 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:53,256 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,295 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:38:53,298 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOn
2019-05-06 12:38:53,299 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:38:53,300 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:38:53,300 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FirmwareData
2019-05-06 12:38:53,301 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:38:53,303 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:38:53,304 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:38:53,304 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:38:53,305 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:38:53,302 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileDeselected
2019-05-06 12:38:53,306 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollEnd
2019-05-06 12:38:53,307 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderRemoved
2019-05-06 12:38:53,309 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOff
2019-05-06 12:38:53,311 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintDone
2019-05-06 12:38:53,312 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_printer_safety_check_warning
2019-05-06 12:38:53,312 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event UpdatedFiles
2019-05-06 12:38:53,313 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataStatisticsUpdated
2019-05-06 12:38:53,314 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingCancelled
2019-05-06 12:38:53,314 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnected
2019-05-06 12:38:53,315 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SettingsUpdated
2019-05-06 12:38:53,316 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ToolChange
2019-05-06 12:38:53,316 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieRendering
2019-05-06 12:38:53,317 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pi_support_throttle_state
2019-05-06 12:38:53,319 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisFinished
2019-05-06 12:38:53,320 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingFailed
2019-05-06 12:38:53,321 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event RegisteredMessageReceived
2019-05-06 12:38:53,322 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintResumed
2019-05-06 12:38:53,323 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Eject
2019-05-06 12:38:53,324 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Waiting
2019-05-06 12:38:53,324 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureFailed
2019-05-06 12:38:53,325 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingDone
2019-05-06 12:38:53,327 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileDeleted
2019-05-06 12:38:53,328 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ZChange
2019-05-06 12:38:53,328 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileModified
2019-05-06 12:38:53,329 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintStarted
2019-05-06 12:38:53,330 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileAdded
2019-05-06 12:38:53,331 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ConnectivityChanged
2019-05-06 12:38:53,332 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterReset
2019-05-06 12:38:53,333 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintFailed
2019-05-06 12:38:53,334 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connected
2019-05-06 12:38:53,335 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PositionUpdate
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingStarted
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileDeleted
2019-05-06 12:38:53,337 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferStarted
2019-05-06 12:38:53,338 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Shutdown
2019-05-06 12:38:53,339 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileModified
2019-05-06 12:38:53,340 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterStateChanged
2019-05-06 12:38:53,341 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieFailed
2019-05-06 12:38:53,342 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileAdded
2019-05-06 12:38:53,344 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:38:53,345 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintPaused
2019-05-06 12:38:53,346 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileSelected
2019-05-06 12:38:53,347 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelled
2019-05-06 12:38:53,348 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisStarted
2019-05-06 12:38:53,349 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderAdded
2019-05-06 12:38:53,350 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:38:53,350 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Conveyor
2019-05-06 12:38:53,351 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connecting
2019-05-06 12:38:53,353 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnecting
2019-05-06 12:38:53,353 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferFailed
2019-05-06 12:38:53,354 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientClosed
2019-05-06 12:38:53,355 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event EStop
2019-05-06 12:38:53,356 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileRemoved
2019-05-06 12:38:53,357 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollStart
2019-05-06 12:38:53,358 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Home
2019-05-06 12:38:53,359 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:38:53,360 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Cooling
2019-05-06 12:38:53,361 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Upload
2019-05-06 12:38:53,362 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:38:53,363 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Error
2019-05-06 12:38:53,363 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Dwelling
2019-05-06 12:38:53,364 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileAdded
2019-05-06 12:38:53,365 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:38:53,366 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Startup
2019-05-06 12:38:53,367 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureStart
2019-05-06 12:38:53,368 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientOpened
2019-05-06 12:38:53,368 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Alert
2019-05-06 12:38:53,369 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferDone
2019-05-06 12:38:53,370 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelling
2019-05-06 12:38:53,371 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieDone
2019-05-06 12:38:53,372 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureDone
2019-05-06 12:39:11,109 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:11,110 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>>
2019-05-06 12:39:11,114 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOn
2019-05-06 12:39:11,123 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:11,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FirmwareData
2019-05-06 12:39:11,126 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:11,128 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileDeselected
2019-05-06 12:39:11,129 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:11,131 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollEnd
2019-05-06 12:39:11,133 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:11,134 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderRemoved
2019-05-06 12:39:11,136 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:11,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOff
2019-05-06 12:39:11,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintDone
2019-05-06 12:39:11,138 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:11,144 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:11,147 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event UpdatedFiles
2019-05-06 12:39:11,148 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:11,151 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingCancelled
2019-05-06 12:39:11,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnected
2019-05-06 12:39:11,154 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SettingsUpdated
2019-05-06 12:39:11,156 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ToolChange
2019-05-06 12:39:11,158 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieRendering
2019-05-06 12:39:11,159 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:11,161 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisFinished
2019-05-06 12:39:11,163 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingFailed
2019-05-06 12:39:11,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event RegisteredMessageReceived
2019-05-06 12:39:11,167 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintResumed
2019-05-06 12:39:11,169 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Eject
2019-05-06 12:39:11,171 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Waiting
2019-05-06 12:39:11,172 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureFailed
2019-05-06 12:39:11,174 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingDone
2019-05-06 12:39:11,176 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileDeleted
2019-05-06 12:39:11,177 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ZChange
2019-05-06 12:39:11,179 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileModified
2019-05-06 12:39:11,180 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintStarted
2019-05-06 12:39:11,183 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileAdded
2019-05-06 12:39:11,184 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ConnectivityChanged
2019-05-06 12:39:11,186 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterReset
2019-05-06 12:39:11,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintFailed
2019-05-06 12:39:11,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connected
2019-05-06 12:39:11,191 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:11,193 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PositionUpdate
2019-05-06 12:39:11,195 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingStarted
2019-05-06 12:39:11,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileDeleted
2019-05-06 12:39:11,199 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferStarted
2019-05-06 12:39:11,201 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Shutdown
2019-05-06 12:39:11,203 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileModified
2019-05-06 12:39:11,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterStateChanged
2019-05-06 12:39:11,205 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieFailed
2019-05-06 12:39:11,206 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileAdded
2019-05-06 12:39:11,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:11,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintPaused
2019-05-06 12:39:11,212 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileSelected
2019-05-06 12:39:11,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelled
2019-05-06 12:39:11,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisStarted
2019-05-06 12:39:11,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderAdded
2019-05-06 12:39:11,218 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:11,220 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Conveyor
2019-05-06 12:39:11,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connecting
2019-05-06 12:39:11,225 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnecting
2019-05-06 12:39:11,226 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferFailed
2019-05-06 12:39:11,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientClosed
2019-05-06 12:39:11,230 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event EStop
2019-05-06 12:39:11,232 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileRemoved
2019-05-06 12:39:11,233 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollStart
2019-05-06 12:39:11,235 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Home
2019-05-06 12:39:11,237 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:11,239 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Cooling
2019-05-06 12:39:11,240 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Upload
2019-05-06 12:39:11,243 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:11,244 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Error
2019-05-06 12:39:11,245 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Dwelling
2019-05-06 12:39:11,246 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileAdded
2019-05-06 12:39:11,247 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:11,247 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Startup
2019-05-06 12:39:11,248 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureStart
2019-05-06 12:39:11,249 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientOpened
2019-05-06 12:39:11,250 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Alert
2019-05-06 12:39:11,250 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferDone
2019-05-06 12:39:11,251 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelling
2019-05-06 12:39:11,252 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieDone
2019-05-06 12:39:11,253 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureDone
2019-05-06 12:39:11,255 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:39:11,270 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:11,273 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:39:11,289 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:39:11,814 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:39:11,909 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:11,912 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:39:13,061 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:39:13,062 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:39:13,063 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:39:13,065 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:39:13,066 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:39:13,067 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:39:13,068 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:39:13,069 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:39:13,070 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:39:13,072 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:39:13,073 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:39:13,074 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:39:13,075 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:39:13,076 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:39:13,077 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:39:13,096 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:39:13,515 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:39:13,516 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:39:13,518 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:39:13,519 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:39:13,520 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:39:13,521 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:39:13,522 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:39:13,523 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:39:13,524 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:39:13,525 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:39:13,526 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:39:13,527 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:39:13,528 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:39:13,529 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:39:13,531 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:39:13,549 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:39:13,651 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:39:13,654 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:13,655 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:13,655 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:13,656 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:13,658 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:13,659 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:13,660 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:13,657 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOn
2019-05-06 12:39:13,661 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FirmwareData
2019-05-06 12:39:13,663 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileDeselected
2019-05-06 12:39:13,664 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollEnd
2019-05-06 12:39:13,665 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderRemoved
2019-05-06 12:39:13,666 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOff
2019-05-06 12:39:13,666 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintDone
2019-05-06 12:39:13,667 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:13,668 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event UpdatedFiles
2019-05-06 12:39:13,669 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:13,670 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingCancelled
2019-05-06 12:39:13,671 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnected
2019-05-06 12:39:13,671 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SettingsUpdated
2019-05-06 12:39:13,672 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ToolChange
2019-05-06 12:39:13,673 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieRendering
2019-05-06 12:39:13,675 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:13,676 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisFinished
2019-05-06 12:39:13,677 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingFailed
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event RegisteredMessageReceived
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintResumed
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Eject
2019-05-06 12:39:13,679 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Waiting
2019-05-06 12:39:13,679 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureFailed
2019-05-06 12:39:13,680 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingDone
2019-05-06 12:39:13,681 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileDeleted
2019-05-06 12:39:13,681 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ZChange
2019-05-06 12:39:13,682 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileModified
2019-05-06 12:39:13,684 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintStarted
2019-05-06 12:39:13,686 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileAdded
2019-05-06 12:39:13,687 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ConnectivityChanged
2019-05-06 12:39:13,688 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterReset
2019-05-06 12:39:13,690 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintFailed
2019-05-06 12:39:13,690 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connected
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PositionUpdate
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingStarted
2019-05-06 12:39:13,693 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileDeleted
2019-05-06 12:39:13,694 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferStarted
2019-05-06 12:39:13,695 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Shutdown
2019-05-06 12:39:13,696 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileModified
2019-05-06 12:39:13,697 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterStateChanged
2019-05-06 12:39:13,699 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieFailed
2019-05-06 12:39:13,700 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileAdded
2019-05-06 12:39:13,700 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:13,701 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintPaused
2019-05-06 12:39:13,702 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileSelected
2019-05-06 12:39:13,703 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelled
2019-05-06 12:39:13,704 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisStarted
2019-05-06 12:39:13,706 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderAdded
2019-05-06 12:39:13,706 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:13,707 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Conveyor
2019-05-06 12:39:13,708 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connecting
2019-05-06 12:39:13,709 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnecting
2019-05-06 12:39:13,710 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferFailed
2019-05-06 12:39:13,711 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientClosed
2019-05-06 12:39:13,712 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event EStop
2019-05-06 12:39:13,713 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileRemoved
2019-05-06 12:39:13,714 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollStart
2019-05-06 12:39:13,715 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Home
2019-05-06 12:39:13,716 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:13,717 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Cooling
2019-05-06 12:39:13,717 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Upload
2019-05-06 12:39:13,718 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:13,719 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Error
2019-05-06 12:39:13,720 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Dwelling
2019-05-06 12:39:13,721 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileAdded
2019-05-06 12:39:13,722 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:13,723 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Startup
2019-05-06 12:39:13,724 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureStart
2019-05-06 12:39:13,725 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientOpened
2019-05-06 12:39:13,726 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Alert
2019-05-06 12:39:13,727 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferDone
2019-05-06 12:39:13,727 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelling
2019-05-06 12:39:13,728 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieDone
2019-05-06 12:39:13,729 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureDone
2019-05-06 12:39:43,950 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:44,012 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOn
2019-05-06 12:39:44,013 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:44,016 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>>
2019-05-06 12:39:44,015 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FirmwareData
2019-05-06 12:39:44,019 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:44,022 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:44,021 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileDeselected
2019-05-06 12:39:44,024 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:44,025 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollEnd
2019-05-06 12:39:44,027 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:44,030 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderRemoved
2019-05-06 12:39:44,031 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:44,033 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOff
2019-05-06 12:39:44,035 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:44,036 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintDone
2019-05-06 12:39:44,041 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:44,043 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event UpdatedFiles
2019-05-06 12:39:44,044 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:44,044 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingCancelled
2019-05-06 12:39:44,045 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnected
2019-05-06 12:39:44,046 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SettingsUpdated
2019-05-06 12:39:44,047 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ToolChange
2019-05-06 12:39:44,048 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieRendering
2019-05-06 12:39:44,049 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:44,050 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisFinished
2019-05-06 12:39:44,051 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingFailed
2019-05-06 12:39:44,052 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event RegisteredMessageReceived
2019-05-06 12:39:44,052 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintResumed
2019-05-06 12:39:44,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Eject
2019-05-06 12:39:44,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Waiting
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureFailed
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingDone
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileDeleted
2019-05-06 12:39:44,057 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ZChange
2019-05-06 12:39:44,059 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileModified
2019-05-06 12:39:44,060 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintStarted
2019-05-06 12:39:44,061 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileAdded
2019-05-06 12:39:44,061 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ConnectivityChanged
2019-05-06 12:39:44,063 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterReset
2019-05-06 12:39:44,063 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintFailed
2019-05-06 12:39:44,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connected
2019-05-06 12:39:44,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:44,065 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PositionUpdate
2019-05-06 12:39:44,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingStarted
2019-05-06 12:39:44,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileDeleted
2019-05-06 12:39:44,068 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferStarted
2019-05-06 12:39:44,069 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Shutdown
2019-05-06 12:39:44,070 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileModified
2019-05-06 12:39:44,071 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterStateChanged
2019-05-06 12:39:44,071 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieFailed
2019-05-06 12:39:44,072 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileAdded
2019-05-06 12:39:44,073 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:44,074 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintPaused
2019-05-06 12:39:44,075 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileSelected
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelled
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisStarted
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderAdded
2019-05-06 12:39:44,077 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:44,079 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Conveyor
2019-05-06 12:39:44,080 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connecting
2019-05-06 12:39:44,081 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnecting
2019-05-06 12:39:44,082 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferFailed
2019-05-06 12:39:44,083 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientClosed
2019-05-06 12:39:44,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event EStop
2019-05-06 12:39:44,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileRemoved
2019-05-06 12:39:44,085 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollStart
2019-05-06 12:39:44,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Home
2019-05-06 12:39:44,087 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:44,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Cooling
2019-05-06 12:39:44,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Upload
2019-05-06 12:39:44,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:44,091 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Error
2019-05-06 12:39:44,092 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Dwelling
2019-05-06 12:39:44,093 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileAdded
2019-05-06 12:39:44,094 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:44,095 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Startup
2019-05-06 12:39:44,095 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureStart
2019-05-06 12:39:44,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientOpened
2019-05-06 12:39:44,097 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Alert
2019-05-06 12:39:44,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferDone
2019-05-06 12:39:44,099 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelling
2019-05-06 12:39:44,100 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieDone
2019-05-06 12:39:44,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureDone
2019-05-06 12:39:44,102 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:39:44,120 - octoprint.server.util.flask - DEBUG - Added network 127.0.0.0/8 to localNetworks
2019-05-06 12:39:44,122 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 127.0.0.0/8 = ::ffff:127.0.0.0/104 to localNetworks
2019-05-06 12:39:44,124 - octoprint.server.util.flask - DEBUG - Added network 129.247.189.0/24 to localNetworks
2019-05-06 12:39:44,125 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 129.247.189.0/24 = ::ffff:129.247.189.0/120 to localNetworks
2019-05-06 12:39:44,127 - octoprint.server.util.flask - DEBUG - Added network 10.97.0.0/16 to localNetworks
2019-05-06 12:39:44,128 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 10.97.0.0/16 = ::ffff:10.97.0.0/112 to localNetworks
2019-05-06 12:39:44,129 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:39:44,131 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=ZgJ4KS9skN,created=95.2191192)
2019-05-06 12:39:44,133 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:39:44,149 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:39:44,208 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 11.96ms
2019-05-06 12:39:44,646 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:39:44,725 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:39:44,727 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=WuJbi8kNvj,created=95.814748469)
2019-05-06 12:39:44,728 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:39:45,867 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:39:45,870 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:45,871 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:45,871 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:45,872 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:45,872 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOn
2019-05-06 12:39:45,872 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:45,873 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FirmwareData
2019-05-06 12:39:45,874 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:45,875 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileDeselected
2019-05-06 12:39:45,876 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollEnd
2019-05-06 12:39:45,877 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:45,878 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderRemoved
2019-05-06 12:39:45,881 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOff
2019-05-06 12:39:45,881 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintDone
2019-05-06 12:39:45,882 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:45,883 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event UpdatedFiles
2019-05-06 12:39:45,884 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataStatisticsUpdated
2019-05-06 12:39:45,885 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingCancelled
2019-05-06 12:39:45,886 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnected
2019-05-06 12:39:45,887 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SettingsUpdated
2019-05-06 12:39:45,888 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ToolChange
2019-05-06 12:39:45,889 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieRendering
2019-05-06 12:39:45,890 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:45,891 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisFinished
2019-05-06 12:39:45,891 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingFailed
2019-05-06 12:39:45,892 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event RegisteredMessageReceived
2019-05-06 12:39:45,893 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintResumed
2019-05-06 12:39:45,894 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Eject
2019-05-06 12:39:45,895 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Waiting
2019-05-06 12:39:45,896 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureFailed
2019-05-06 12:39:45,896 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingDone
2019-05-06 12:39:45,897 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileDeleted
2019-05-06 12:39:45,898 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ZChange
2019-05-06 12:39:45,899 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileModified
2019-05-06 12:39:45,900 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintStarted
2019-05-06 12:39:45,901 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileAdded
2019-05-06 12:39:45,902 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ConnectivityChanged
2019-05-06 12:39:45,903 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterReset
2019-05-06 12:39:45,904 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintFailed
2019-05-06 12:39:45,904 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connected
2019-05-06 12:39:45,906 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:45,907 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PositionUpdate
2019-05-06 12:39:45,908 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingStarted
2019-05-06 12:39:45,909 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileDeleted
2019-05-06 12:39:45,910 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferStarted
2019-05-06 12:39:45,911 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Shutdown
2019-05-06 12:39:45,912 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileModified
2019-05-06 12:39:45,912 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterStateChanged
2019-05-06 12:39:45,914 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieFailed
2019-05-06 12:39:45,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileAdded
2019-05-06 12:39:45,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:45,917 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintPaused
2019-05-06 12:39:45,918 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileSelected
2019-05-06 12:39:45,918 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelled
2019-05-06 12:39:45,919 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisStarted
2019-05-06 12:39:45,920 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderAdded
2019-05-06 12:39:45,921 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:45,922 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Conveyor
2019-05-06 12:39:45,923 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connecting
2019-05-06 12:39:45,924 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnecting
2019-05-06 12:39:45,925 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferFailed
2019-05-06 12:39:45,926 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientClosed
2019-05-06 12:39:45,927 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event EStop
2019-05-06 12:39:45,927 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileRemoved
2019-05-06 12:39:45,928 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollStart
2019-05-06 12:39:45,929 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Home
2019-05-06 12:39:45,930 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:45,931 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Cooling
2019-05-06 12:39:45,932 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Upload
2019-05-06 12:39:45,933 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:45,934 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Error
2019-05-06 12:39:45,935 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Dwelling
2019-05-06 12:39:45,936 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileAdded
2019-05-06 12:39:45,936 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:45,937 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Startup
2019-05-06 12:39:45,938 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureStart
2019-05-06 12:39:45,939 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientOpened
2019-05-06 12:39:45,941 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Alert
2019-05-06 12:39:45,941 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferDone
2019-05-06 12:39:45,942 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelling
2019-05-06 12:39:45,946 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieDone
2019-05-06 12:39:45,947 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureDone
2019-05-06 12:40:18,025 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=WuJbi8kNvj,created=95.814748469)
2019-05-06 12:40:18,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOn
2019-05-06 12:40:18,085 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:18,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FirmwareData
2019-05-06 12:40:18,088 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>>
2019-05-06 12:40:18,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileDeselected
2019-05-06 12:40:18,092 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:18,093 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollEnd
2019-05-06 12:40:18,095 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:18,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderRemoved
2019-05-06 12:40:18,097 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:18,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOff
2019-05-06 12:40:18,101 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:18,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintDone
2019-05-06 12:40:18,104 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:18,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_printer_safety_check_warning
2019-05-06 12:40:18,108 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:18,109 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event UpdatedFiles
2019-05-06 12:40:18,112 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataStatisticsUpdated
2019-05-06 12:40:18,114 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingCancelled
2019-05-06 12:40:18,116 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnected
2019-05-06 12:40:18,118 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SettingsUpdated
2019-05-06 12:40:18,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ToolChange
2019-05-06 12:40:18,121 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieRendering
2019-05-06 12:40:18,124 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pi_support_throttle_state
2019-05-06 12:40:18,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisFinished
2019-05-06 12:40:18,127 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingFailed
2019-05-06 12:40:18,129 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event RegisteredMessageReceived
2019-05-06 12:40:18,132 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintResumed
2019-05-06 12:40:18,133 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Eject
2019-05-06 12:40:18,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Waiting
2019-05-06 12:40:18,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureFailed
2019-05-06 12:40:18,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingDone
2019-05-06 12:40:18,142 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileDeleted
2019-05-06 12:40:18,143 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ZChange
2019-05-06 12:40:18,145 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileModified
2019-05-06 12:40:18,148 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintStarted
2019-05-06 12:40:18,150 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileAdded
2019-05-06 12:40:18,151 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ConnectivityChanged
2019-05-06 12:40:18,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterReset
2019-05-06 12:40:18,153 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintFailed
2019-05-06 12:40:18,155 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connected
2019-05-06 12:40:18,157 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:40:18,159 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PositionUpdate
2019-05-06 12:40:18,160 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingStarted
2019-05-06 12:40:18,162 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileDeleted
2019-05-06 12:40:18,164 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferStarted
2019-05-06 12:40:18,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Shutdown
2019-05-06 12:40:18,167 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileModified
2019-05-06 12:40:18,168 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterStateChanged
2019-05-06 12:40:18,170 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieFailed
2019-05-06 12:40:18,172 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileAdded
2019-05-06 12:40:18,173 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:40:18,176 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintPaused
2019-05-06 12:40:18,177 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileSelected
2019-05-06 12:40:18,179 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelled
2019-05-06 12:40:18,182 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisStarted
2019-05-06 12:40:18,184 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderAdded
2019-05-06 12:40:18,185 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:40:18,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Conveyor
2019-05-06 12:40:18,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connecting
2019-05-06 12:40:18,192 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnecting
2019-05-06 12:40:18,194 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferFailed
2019-05-06 12:40:18,195 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientClosed
2019-05-06 12:40:18,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event EStop
2019-05-06 12:40:18,198 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileRemoved
2019-05-06 12:40:18,201 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollStart
2019-05-06 12:40:18,203 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Home
2019-05-06 12:40:18,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:40:18,207 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Cooling
2019-05-06 12:40:18,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Upload
2019-05-06 12:40:18,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:40:18,211 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Error
2019-05-06 12:40:18,212 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Dwelling
2019-05-06 12:40:18,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileAdded
2019-05-06 12:40:18,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_failed
2019-05-06 12:40:18,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Startup
2019-05-06 12:40:18,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureStart
2019-05-06 12:40:18,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientOpened
2019-05-06 12:40:18,219 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Alert
2019-05-06 12:40:18,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferDone
2019-05-06 12:40:18,225 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelling
2019-05-06 12:40:18,227 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieDone
2019-05-06 12:40:18,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureDone
2019-05-06 12:40:18,231 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:40:18,254 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:40:18,257 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=hBDgwnrRCW,created=129.344853029)
2019-05-06 12:40:18,259 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:40:18,273 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:40:18,328 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 11.63ms
2019-05-06 12:40:18,357 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:40:18,485 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:40:18,486 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:18,486 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:18,488 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:18,489 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:18,491 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:18,493 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:18,493 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:18,813 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:40:18,891 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:40:18,893 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=MNwJ7iWPoF,created=129.981162682)
2019-05-06 12:40:18,896 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:40:20,030 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:40:20,033 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:20,034 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:20,034 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:20,036 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:20,040 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOn
2019-05-06 12:40:20,041 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FirmwareData
2019-05-06 12:40:20,042 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileDeselected
2019-05-06 12:40:20,043 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollEnd
2019-05-06 12:40:20,044 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderRemoved
2019-05-06 12:40:20,045 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOff
2019-05-06 12:40:20,046 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintDone
2019-05-06 12:40:20,046 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_printer_safety_check_warning
2019-05-06 12:40:20,047 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event UpdatedFiles
2019-05-06 12:40:20,048 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataStatisticsUpdated
2019-05-06 12:40:20,049 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingCancelled
2019-05-06 12:40:20,050 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnected
2019-05-06 12:40:20,051 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SettingsUpdated
2019-05-06 12:40:20,052 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ToolChange
2019-05-06 12:40:20,053 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieRendering
2019-05-06 12:40:20,054 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pi_support_throttle_state
2019-05-06 12:40:20,055 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisFinished
2019-05-06 12:40:20,056 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingFailed
2019-05-06 12:40:20,057 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event RegisteredMessageReceived
2019-05-06 12:40:20,058 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintResumed
2019-05-06 12:40:20,059 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Eject
2019-05-06 12:40:20,059 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Waiting
2019-05-06 12:40:20,060 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureFailed
2019-05-06 12:40:20,061 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingDone
2019-05-06 12:40:20,062 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileDeleted
2019-05-06 12:40:20,063 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ZChange
2019-05-06 12:40:20,064 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileModified
2019-05-06 12:40:20,065 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintStarted
2019-05-06 12:40:20,066 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileAdded
2019-05-06 12:40:20,067 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ConnectivityChanged
2019-05-06 12:40:20,068 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterReset
2019-05-06 12:40:20,069 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintFailed
2019-05-06 12:40:20,070 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connected
2019-05-06 12:40:20,070 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:40:20,071 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PositionUpdate
2019-05-06 12:40:20,072 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingStarted
2019-05-06 12:40:20,073 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileDeleted
2019-05-06 12:40:20,074 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferStarted
2019-05-06 12:40:20,075 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Shutdown
2019-05-06 12:40:20,076 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileModified
2019-05-06 12:40:20,077 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterStateChanged
2019-05-06 12:40:20,078 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieFailed
2019-05-06 12:40:20,079 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileAdded
2019-05-06 12:40:20,080 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:40:20,080 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintPaused
2019-05-06 12:40:20,081 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileSelected
2019-05-06 12:40:20,082 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelled
2019-05-06 12:40:20,083 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisStarted
2019-05-06 12:40:20,084 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderAdded
2019-05-06 12:40:20,085 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:40:20,086 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Conveyor
2019-05-06 12:40:20,087 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connecting
2019-05-06 12:40:20,088 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnecting
2019-05-06 12:40:20,089 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferFailed
2019-05-06 12:40:20,090 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientClosed
2019-05-06 12:40:20,091 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event EStop
2019-05-06 12:40:20,092 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileRemoved
2019-05-06 12:40:20,093 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollStart
2019-05-06 12:40:20,093 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Home
2019-05-06 12:40:20,094 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:40:20,095 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Cooling
2019-05-06 12:40:20,096 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Upload
2019-05-06 12:40:20,097 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:40:20,098 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Error
2019-05-06 12:40:20,099 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Dwelling
2019-05-06 12:40:20,100 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileAdded
2019-05-06 12:40:20,101 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_failed
2019-05-06 12:40:20,102 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Startup
2019-05-06 12:40:20,103 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureStart
2019-05-06 12:40:20,104 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientOpened
2019-05-06 12:40:20,105 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Alert
2019-05-06 12:40:20,106 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferDone
2019-05-06 12:40:20,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelling
2019-05-06 12:40:20,108 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieDone
2019-05-06 12:40:20,109 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureDone
2019-05-06 12:52:48,077 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:52:48,077 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>>
2019-05-06 12:52:48,078 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:52:48,079 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:52:48,079 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:52:48,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOn
2019-05-06 12:52:48,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FirmwareData
2019-05-06 12:52:48,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileDeselected
2019-05-06 12:52:48,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollEnd
2019-05-06 12:52:48,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderRemoved
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:52:48,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOff
2019-05-06 12:52:48,102 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintDone
2019-05-06 12:52:48,104 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_printer_safety_check_warning
2019-05-06 12:52:48,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event UpdatedFiles
2019-05-06 12:52:48,106 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataStatisticsUpdated
2019-05-06 12:52:48,111 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingCancelled
2019-05-06 12:52:48,113 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnected
2019-05-06 12:52:48,115 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SettingsUpdated
2019-05-06 12:52:48,116 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ToolChange
2019-05-06 12:52:48,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieRendering
2019-05-06 12:52:48,121 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pi_support_throttle_state
2019-05-06 12:52:48,123 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisFinished
2019-05-06 12:52:48,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingFailed
2019-05-06 12:52:48,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event RegisteredMessageReceived
2019-05-06 12:52:48,136 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintResumed
2019-05-06 12:52:48,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Eject
2019-05-06 12:52:48,138 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Waiting
2019-05-06 12:52:48,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureFailed
2019-05-06 12:52:48,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingDone
2019-05-06 12:52:48,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileDeleted
2019-05-06 12:52:48,144 - octoprint.server - DEBUG - SIGTERM received...
2019-05-06 12:52:48,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ZChange
2019-05-06 12:52:48,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileModified
2019-05-06 12:52:48,153 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintStarted
2019-05-06 12:52:48,155 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileAdded
2019-05-06 12:52:48,156 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ConnectivityChanged
2019-05-06 12:52:48,158 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterReset
2019-05-06 12:52:48,162 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintFailed
2019-05-06 12:52:48,163 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connected
2019-05-06 12:52:48,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:52:48,178 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PositionUpdate
2019-05-06 12:52:48,181 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingStarted
2019-05-06 12:52:48,183 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileDeleted
2019-05-06 12:52:48,185 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferStarted
2019-05-06 12:52:48,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Shutdown
2019-05-06 12:52:48,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileModified
2019-05-06 12:52:48,193 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterStateChanged
2019-05-06 12:52:48,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieFailed
2019-05-06 12:52:48,199 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileAdded
2019-05-06 12:52:48,202 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:52:48,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintPaused
2019-05-06 12:52:48,206 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileSelected
2019-05-06 12:52:48,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelled
2019-05-06 12:52:48,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisStarted
2019-05-06 12:52:48,211 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderAdded
2019-05-06 12:52:48,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:52:48,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Conveyor
2019-05-06 12:52:48,215 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connecting
2019-05-06 12:52:48,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnecting
2019-05-06 12:52:48,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferFailed
2019-05-06 12:52:48,218 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientClosed
2019-05-06 12:52:48,219 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event EStop
2019-05-06 12:52:48,221 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileRemoved
2019-05-06 12:52:48,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollStart
2019-05-06 12:52:48,223 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Home
2019-05-06 12:52:48,224 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:52:48,224 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Cooling
2019-05-06 12:52:48,226 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Upload
2019-05-06 12:52:48,227 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:52:48,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Error
2019-05-06 12:52:48,229 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Dwelling
2019-05-06 12:52:48,230 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileAdded
2019-05-06 12:52:48,231 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_failed
2019-05-06 12:52:48,232 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Startup
2019-05-06 12:52:48,234 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureStart
2019-05-06 12:52:48,236 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientOpened
2019-05-06 12:52:48,239 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Alert
2019-05-06 12:52:48,241 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferDone
2019-05-06 12:52:48,242 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelling
2019-05-06 12:52:48,243 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieDone
2019-05-06 12:52:48,244 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureDone
2019-05-06 12:52:48,245 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:52:48,247 - octoprint.server - DEBUG - Shutting down tornado's IOLoop...
2019-05-06 12:52:48,249 - octoprint.server - DEBUG - Tornado's IOLoop stopped
2019-05-06 12:52:48,251 - octoprint.server - INFO - Shutting down...
2019-05-06 12:52:48,396 - octoprint.plugin - DEBUG - Calling on_shutdown on discovery
2019-05-06 12:52:48,397 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-05-06 12:52:48,399 - octoprint.events.fire - DEBUG - Firing event: Shutdown (Payload: None)
2019-05-06 12:52:48,403 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:52:48,407 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:52:48,408 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:52:48,408 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:52:48,412 - octoprint.plugin - DEBUG - Calling on_shutdown on tracking
2019-05-06 12:52:48,414 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:52:48,415 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:52:48,418 - octoprint.events - INFO - Event loop shut down
2019-05-06 12:52:48,419 - octoprint.server - INFO - Goodbye!
2019-05-06 12:52:55,257 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:52:55,259 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc3
2019-05-06 12:52:55,260 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:52:55,364 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-05-06 12:52:55,364 - octoprint.startup - INFO - Blacklist processing done
2019-05-06 12:52:55,436 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:52:55,439 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for logging from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging/__init__.py
2019-05-06 12:52:57,023 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for corewizard from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard/__init__.py
2019-05-06 12:52:57,037 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for backup from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup/__init__.py
2019-05-06 12:52:57,107 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for announcements from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py
2019-05-06 12:52:57,293 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for action_command_prompt from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt/__init__.py
2019-05-06 12:52:57,310 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for appkeys from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys/__init__.py
2019-05-06 12:52:57,335 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for discovery from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery/__init__.py
2019-05-06 12:52:57,391 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for forcelogin from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py
2019-05-06 12:52:57,404 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pi_support from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py
2019-05-06 12:52:57,423 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for virtual_printer from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer/__init__.py
2019-05-06 12:52:57,429 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for printer_safety_check from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check/__init__.py
2019-05-06 12:52:57,447 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for softwareupdate from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/__init__.py
2019-05-06 12:52:57,543 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for errortracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking/__init__.py
2019-05-06 12:52:57,558 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for tracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking/__init__.py
2019-05-06 12:52:57,584 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pluginmanager from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py
2019-05-06 12:52:57,877 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for systemcommandeditor from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor/__init__.py
2019-05-06 12:52:57,881 - octoprint.plugin.core - INFO - Plugin System Command Editor (0.3.2) is disabled.
2019-05-06 12:52:57,904 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for flowspeedrename from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename/__init__.py
2019-05-06 12:52:57,907 - octoprint.plugin.core - INFO - Plugin Rename Flowspeed & Feedrate (0.1.0) is disabled.
2019-05-06 12:52:57,919 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for navbartemp from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py
2019-05-06 12:52:57,926 - octoprint.plugin.core - INFO - Plugin Navbar Temperature Plugin (0.11) is disabled.
2019-05-06 12:52:57,938 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for autoselect from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect/__init__.py
2019-05-06 12:52:57,943 - octoprint.plugin.core - INFO - Plugin Autoselect Plugin (0.2.0) is disabled.
2019-05-06 12:52:58,153 - octoprint.plugin.core - DEBUG - Loaded plugin logging: Logging
2019-05-06 12:52:58,155 - octoprint.plugin.core - DEBUG - Loaded plugin corewizard: Core Wizard
2019-05-06 12:52:58,156 - octoprint.plugin.core - DEBUG - Loaded plugin backup: Backup & Restore
2019-05-06 12:52:58,157 - octoprint.plugin.core - DEBUG - Loaded plugin announcements: Announcement Plugin
2019-05-06 12:52:58,158 - octoprint.plugin.core - DEBUG - Loaded plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:52:58,159 - octoprint.plugin.core - DEBUG - Loaded plugin appkeys: Application Keys Plugin
2019-05-06 12:52:58,160 - octoprint.plugin.core - DEBUG - Loaded plugin discovery: Discovery
2019-05-06 12:52:58,161 - octoprint.plugin.core - DEBUG - Loaded plugin forcelogin: Force Login
2019-05-06 12:52:58,162 - octoprint.plugin.core - DEBUG - Loaded plugin pi_support: Pi Support Plugin
2019-05-06 12:52:58,164 - octoprint.plugin.core - DEBUG - Loaded plugin virtual_printer: Virtual Printer
2019-05-06 12:52:58,165 - octoprint.plugin.core - DEBUG - Loaded plugin printer_safety_check: Printer Safety Check
2019-05-06 12:52:58,166 - octoprint.plugin.core - DEBUG - Loaded plugin softwareupdate: Software Update
2019-05-06 12:52:58,167 - octoprint.plugin.core - DEBUG - Loaded plugin errortracking: Error Tracking
2019-05-06 12:52:58,168 - octoprint.plugin.core - DEBUG - Loaded plugin tracking: Anonymous Usage Tracking
2019-05-06 12:52:58,169 - octoprint.plugin.core - DEBUG - Loaded plugin pluginmanager: Plugin Manager
2019-05-06 12:52:58,171 - octoprint.plugin.core - DEBUG - Enabled plugin logging: Logging
2019-05-06 12:52:58,172 - octoprint.plugin.core - DEBUG - Enabled plugin corewizard: Core Wizard
2019-05-06 12:52:58,175 - octoprint.plugin.core - DEBUG - Enabled plugin backup: Backup & Restore
2019-05-06 12:52:58,176 - octoprint.plugin.core - DEBUG - Enabled plugin announcements: Announcement Plugin
2019-05-06 12:52:58,178 - octoprint.plugin.core - DEBUG - Enabled plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:52:58,179 - octoprint.plugin.core - DEBUG - Enabled plugin appkeys: Application Keys Plugin
2019-05-06 12:52:58,181 - octoprint.plugin.core - DEBUG - Enabled plugin discovery: Discovery
2019-05-06 12:52:58,182 - octoprint.plugin.core - DEBUG - Enabled plugin forcelogin: Force Login
2019-05-06 12:52:58,184 - octoprint.plugin.core - DEBUG - Enabled plugin pi_support: Pi Support Plugin
2019-05-06 12:52:58,188 - octoprint.plugin.core - DEBUG - Enabled plugin virtual_printer: Virtual Printer
2019-05-06 12:52:58,190 - octoprint.plugin.core - DEBUG - Enabled plugin printer_safety_check: Printer Safety Check
2019-05-06 12:52:58,192 - octoprint.plugin.core - DEBUG - Enabled plugin softwareupdate: Software Update
2019-05-06 12:52:58,245 - octoprint.plugins.errortracking - INFO - Initialized error tracking
2019-05-06 12:52:58,248 - octoprint.plugin.core - DEBUG - Enabled plugin errortracking: Error Tracking
2019-05-06 12:52:58,249 - octoprint.plugin.core - DEBUG - Enabled plugin tracking: Anonymous Usage Tracking
2019-05-06 12:52:58,251 - octoprint.plugin.core - DEBUG - Enabled plugin pluginmanager: Plugin Manager
2019-05-06 12:52:58,252 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:52:58,523 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-05-06 12:52:58,574 - octoprint.server - DEBUG - Starting intermediary server on http://127.0.0.1:5000
2019-05-06 12:52:58,577 - octoprint.server - INFO - Intermediary server started
2019-05-06 12:52:58,578 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:52:58,829 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:52:58,863 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-05-06 12:52:59,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-05-06 12:52:59,406 - octoprint.events - DEBUG - Subscribed listener <function on_settings_update at 0x73993570> for event SettingsUpdated
2019-05-06 12:52:59,426 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataAnalysisFinished of <octoprint.printer.standard.Printer object at 0x737fb050>> for event MetadataAnalysisFinished
2019-05-06 12:52:59,427 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataStatisticsUpdated of <octoprint.printer.standard.Printer object at 0x737fb050>> for event MetadataStatisticsUpdated
2019-05-06 12:52:59,429 - octoprint.server - DEBUG - Registered event throttle_state of plugin pi_support as Events.PLUGIN_PI_SUPPORT_THROTTLE_STATE = "plugin_pi_support_throttle_state"
2019-05-06 12:52:59,430 - octoprint.server - DEBUG - Registered event install_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_INSTALL_PLUGIN = "plugin_pluginmanager_install_plugin"
2019-05-06 12:52:59,431 - octoprint.server - DEBUG - Registered event uninstall_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_UNINSTALL_PLUGIN = "plugin_pluginmanager_uninstall_plugin"
2019-05-06 12:52:59,432 - octoprint.server - DEBUG - Registered event enable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_ENABLE_PLUGIN = "plugin_pluginmanager_enable_plugin"
2019-05-06 12:52:59,433 - octoprint.server - DEBUG - Registered event disable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_DISABLE_PLUGIN = "plugin_pluginmanager_disable_plugin"
2019-05-06 12:52:59,434 - octoprint.server - DEBUG - Registered event warning of plugin printer_safety_check as Events.PLUGIN_PRINTER_SAFETY_CHECK_WARNING = "plugin_printer_safety_check_warning"
2019-05-06 12:52:59,436 - octoprint.server - DEBUG - Registered event update_succeeded of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_SUCCEEDED = "plugin_softwareupdate_update_succeeded"
2019-05-06 12:52:59,437 - octoprint.server - DEBUG - Registered event update_failed of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_FAILED = "plugin_softwareupdate_update_failed"
2019-05-06 12:52:59,439 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin tracking
2019-05-06 12:52:59,442 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin logging
2019-05-06 12:52:59,445 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin appkeys
2019-05-06 12:52:59,448 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin virtual_printer
2019-05-06 12:52:59,452 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin action_command_prompt
2019-05-06 12:52:59,454 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin corewizard
2019-05-06 12:52:59,457 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pi_support
2019-05-06 12:52:59,459 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin printer_safety_check
2019-05-06 12:52:59,543 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-05-06 12:52:59,544 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin softwareupdate
2019-05-06 12:52:59,547 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin errortracking
2019-05-06 12:52:59,549 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin announcements
2019-05-06 12:52:59,552 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin forcelogin
2019-05-06 12:53:01,909 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:53:03,843 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-05-06 12:53:03,844 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:53:03,845 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:53:03,847 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pluginmanager
2019-05-06 12:53:03,850 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin backup
2019-05-06 12:53:03,853 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin discovery
2019-05-06 12:53:03,854 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-05-06 12:53:03,866 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| !Autoselect Plugin (0.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Rename Flowspeed & Feedrate (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !System Command Editor (0.3.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-05-06 12:53:03,885 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 904245248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.13.0
| python:
| pip: 19.0.3
| version: 2.7.9
| virtualenv: /home/pi/oprint
2019-05-06 12:53:03,892 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,895 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,896 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,898 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:03,917 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:03,918 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:04,053 - octoprint.server - DEBUG - Registered API of plugin announcements under URL prefix /plugin/announcements
2019-05-06 12:53:04,077 - octoprint.server - DEBUG - Registered API of plugin appkeys under URL prefix /plugin/appkeys
2019-05-06 12:53:04,104 - octoprint.server - DEBUG - Registered API of plugin backup under URL prefix /plugin/backup
2019-05-06 12:53:04,122 - octoprint.server - DEBUG - Registered API of plugin corewizard under URL prefix /plugin/corewizard
2019-05-06 12:53:04,141 - octoprint.server - DEBUG - Registered API of plugin discovery under URL prefix /plugin/discovery
2019-05-06 12:53:04,157 - octoprint.server - DEBUG - Registered API of plugin logging under URL prefix /plugin/logging
2019-05-06 12:53:04,176 - octoprint.server - DEBUG - Registered API of plugin pluginmanager under URL prefix /plugin/pluginmanager
2019-05-06 12:53:04,197 - octoprint.server - DEBUG - Registered API of plugin softwareupdate under URL prefix /plugin/softwareupdate
2019-05-06 12:53:04,213 - octoprint.server - DEBUG - Registered assets of plugin action_command_prompt under URL prefix /plugin/action_command_prompt
2019-05-06 12:53:04,228 - octoprint.server - DEBUG - Registered assets of plugin errortracking under URL prefix /plugin/errortracking
2019-05-06 12:53:04,244 - octoprint.server - DEBUG - Registered assets of plugin forcelogin under URL prefix /plugin/forcelogin
2019-05-06 12:53:04,259 - octoprint.server - DEBUG - Registered assets of plugin pi_support under URL prefix /plugin/pi_support
2019-05-06 12:53:04,275 - octoprint.server - DEBUG - Registered assets of plugin printer_safety_check under URL prefix /plugin/printer_safety_check
2019-05-06 12:53:04,290 - octoprint.server - DEBUG - Registered assets of plugin tracking under URL prefix /plugin/tracking
2019-05-06 12:53:04,475 - octoprint.server - DEBUG - Adding additional route /plugin/backup/download/(.*) handled by handler <class 'octoprint.server.util.tornado.LargeResponseHandler'> and with additional arguments {'access_validation': <function f at 0x72f701b0>, 'as_attachment': True, 'path_validation': <function f at 0x72f70170>, 'path': '/home/pi/.octoprint/data/backup'}
2019-05-06 12:53:04,495 - octoprint.server - DEBUG - Adding maximum body size of 1073741824B for POST requests to /plugin/backup/restore)
2019-05-06 12:53:04,496 - octoprint.server - DEBUG - Adding maximum body size of 52428800B for POST requests to /plugin/pluginmanager/upload_archive)
2019-05-06 12:53:04,497 - octoprint.server - INFO - Shutting down intermediary server...
2019-05-06 12:53:04,661 - octoprint.server - INFO - Intermediary server shut down
2019-05-06 12:53:04,665 - octoprint.events - INFO - Processing startup event, this is our first event
2019-05-06 12:53:04,667 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-05-06 12:53:04,668 - octoprint.events.fire - DEBUG - Firing event: Startup (Payload: None)
2019-05-06 12:53:04,671 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:04,673 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-05-06 12:53:04,679 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:04,683 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:04,697 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:04,748 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:04,732 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-05-06 12:53:04,749 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:04,764 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-05-06 12:53:04,768 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-05-06 12:53:04,770 - octoprint.plugin - DEBUG - Calling on_startup on announcements
2019-05-06 12:53:04,771 - octoprint.plugin - DEBUG - Calling on_startup on backup
2019-05-06 12:53:04,771 - octoprint.plugin - DEBUG - Calling on_startup on discovery
2019-05-06 12:53:04,783 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _http._tcp
2019-05-06 12:53:04,795 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _octoprint._tcp
2019-05-06 12:53:04,797 - octoprint.plugin - DEBUG - Calling on_startup on pi_support
2019-05-06 12:53:04,830 - octoprint.plugins.pi_support - ERROR - Got an error while trying to fetch the current throttle state via "/usr/bin/vcgencmd get_throttled"
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 263, in _check_throttled_state
state = get_vcgencmd_throttled_state(command)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 140, in get_vcgencmd_throttled_state
raise ValueError("cannot parse \"{}\" output: {}".format(command, output))
ValueError: cannot parse "/usr/bin/vcgencmd get_throttled" output: error=1 error_msg="Command not registered"
2019-05-06 12:53:04,899 - octoprint.plugin - DEBUG - Calling on_startup on pluginmanager
2019-05-06 12:53:04,900 - octoprint.plugin - DEBUG - Calling on_startup on softwareupdate
2019-05-06 12:53:04,908 - octoprint.plugin - DEBUG - Calling on_startup on tracking
2019-05-06 12:53:04,913 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-05-06 12:53:04,916 - octoprint.plugin - DEBUG - Calling on_after_startup on announcements
2019-05-06 12:53:04,923 - octoprint.plugin - DEBUG - Calling on_after_startup on backup
2019-05-06 12:53:04,927 - octoprint.plugin - DEBUG - Calling on_after_startup on discovery
2019-05-06 12:53:04,929 - octoprint.plugin - DEBUG - Calling on_after_startup on pi_support
2019-05-06 12:53:04,931 - octoprint.plugin - DEBUG - Calling on_after_startup on pluginmanager
2019-05-06 12:53:04,983 - octoprint.plugin - DEBUG - Calling on_after_startup on softwareupdate
2019-05-06 12:53:05,072 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-05-06 12:53:05,182 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-05-06 12:53:07,254 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:53:07,255 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:53:07,256 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:53:07,340 - octoprint.plugin - DEBUG - Calling on_after_startup on tracking
2019-05-06 12:53:07,511 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://129.247.189.242:30141/'}
2019-05-06 12:53:07,524 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:07,525 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:07,527 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:07,528 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:07,529 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:07,530 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:07,531 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:07,532 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:07,533 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:07,534 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:07,536 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:07,537 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:07,538 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:07,539 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:07,540 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:07,570 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:07,860 - octoprint.server.views - DEBUG - Forcing rendering of view _default
2019-05-06 12:53:08,165 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:08,632 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:08,755 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:08,757 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:08,782 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:53:08,786 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:08,786 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOn
2019-05-06 12:53:08,791 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:08,796 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:08,796 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:08,801 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FirmwareData
2019-05-06 12:53:08,802 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileDeselected
2019-05-06 12:53:08,805 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollEnd
2019-05-06 12:53:08,806 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderRemoved
2019-05-06 12:53:08,808 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOff
2019-05-06 12:53:08,810 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintDone
2019-05-06 12:53:08,816 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:08,818 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event UpdatedFiles
2019-05-06 12:53:08,821 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataStatisticsUpdated
2019-05-06 12:53:08,823 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingCancelled
2019-05-06 12:53:08,825 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnected
2019-05-06 12:53:08,826 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SettingsUpdated
2019-05-06 12:53:08,828 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ToolChange
2019-05-06 12:53:08,836 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieRendering
2019-05-06 12:53:08,839 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:08,841 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisFinished
2019-05-06 12:53:08,843 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingFailed
2019-05-06 12:53:08,844 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event RegisteredMessageReceived
2019-05-06 12:53:08,845 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintResumed
2019-05-06 12:53:08,847 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Eject
2019-05-06 12:53:08,848 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Waiting
2019-05-06 12:53:08,852 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureFailed
2019-05-06 12:53:08,853 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingDone
2019-05-06 12:53:08,854 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileDeleted
2019-05-06 12:53:08,857 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ZChange
2019-05-06 12:53:08,858 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileModified
2019-05-06 12:53:08,860 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintStarted
2019-05-06 12:53:08,861 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileAdded
2019-05-06 12:53:08,862 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ConnectivityChanged
2019-05-06 12:53:08,864 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterReset
2019-05-06 12:53:08,868 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintFailed
2019-05-06 12:53:08,869 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connected
2019-05-06 12:53:08,870 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:08,872 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PositionUpdate
2019-05-06 12:53:08,874 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingStarted
2019-05-06 12:53:08,876 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileDeleted
2019-05-06 12:53:08,877 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferStarted
2019-05-06 12:53:08,878 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Shutdown
2019-05-06 12:53:08,882 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileModified
2019-05-06 12:53:08,883 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterStateChanged
2019-05-06 12:53:08,885 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieFailed
2019-05-06 12:53:08,887 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileAdded
2019-05-06 12:53:08,888 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:08,890 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintPaused
2019-05-06 12:53:08,892 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileSelected
2019-05-06 12:53:08,893 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelled
2019-05-06 12:53:08,897 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisStarted
2019-05-06 12:53:08,899 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderAdded
2019-05-06 12:53:08,901 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:08,905 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Conveyor
2019-05-06 12:53:08,909 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connecting
2019-05-06 12:53:08,911 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnecting
2019-05-06 12:53:08,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferFailed
2019-05-06 12:53:08,916 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientClosed
2019-05-06 12:53:08,946 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event EStop
2019-05-06 12:53:09,034 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileRemoved
2019-05-06 12:53:09,068 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollStart
2019-05-06 12:53:09,198 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Home
2019-05-06 12:53:09,247 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:09,263 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Cooling
2019-05-06 12:53:09,264 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Upload
2019-05-06 12:53:09,273 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:09,275 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Error
2019-05-06 12:53:09,277 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Dwelling
2019-05-06 12:53:09,277 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileAdded
2019-05-06 12:53:09,278 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:09,279 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Startup
2019-05-06 12:53:09,284 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureStart
2019-05-06 12:53:09,286 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientOpened
2019-05-06 12:53:09,331 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Alert
2019-05-06 12:53:09,333 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferDone
2019-05-06 12:53:09,338 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelling
2019-05-06 12:53:09,339 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieDone
2019-05-06 12:53:09,340 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureDone
2019-05-06 12:53:12,429 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOn
2019-05-06 12:53:12,430 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FirmwareData
2019-05-06 12:53:12,429 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:12,431 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileDeselected
2019-05-06 12:53:12,446 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>>
2019-05-06 12:53:12,448 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:12,449 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollEnd
2019-05-06 12:53:12,450 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:12,451 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderRemoved
2019-05-06 12:53:12,453 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:12,455 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:12,455 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOff
2019-05-06 12:53:12,456 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:12,459 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:12,458 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintDone
2019-05-06 12:53:12,461 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:12,462 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event UpdatedFiles
2019-05-06 12:53:12,472 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataStatisticsUpdated
2019-05-06 12:53:12,504 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingCancelled
2019-05-06 12:53:12,507 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnected
2019-05-06 12:53:12,509 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SettingsUpdated
2019-05-06 12:53:12,511 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ToolChange
2019-05-06 12:53:12,512 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieRendering
2019-05-06 12:53:12,514 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:12,515 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisFinished
2019-05-06 12:53:12,523 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingFailed
2019-05-06 12:53:12,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event RegisteredMessageReceived
2019-05-06 12:53:12,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintResumed
2019-05-06 12:53:12,527 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Eject
2019-05-06 12:53:12,528 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Waiting
2019-05-06 12:53:12,529 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureFailed
2019-05-06 12:53:12,531 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingDone
2019-05-06 12:53:12,532 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileDeleted
2019-05-06 12:53:12,533 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ZChange
2019-05-06 12:53:12,534 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileModified
2019-05-06 12:53:12,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintStarted
2019-05-06 12:53:12,536 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileAdded
2019-05-06 12:53:12,537 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ConnectivityChanged
2019-05-06 12:53:12,539 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterReset
2019-05-06 12:53:12,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintFailed
2019-05-06 12:53:12,541 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connected
2019-05-06 12:53:12,549 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:12,551 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PositionUpdate
2019-05-06 12:53:12,552 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingStarted
2019-05-06 12:53:12,553 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileDeleted
2019-05-06 12:53:12,554 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferStarted
2019-05-06 12:53:12,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Shutdown
2019-05-06 12:53:12,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileModified
2019-05-06 12:53:12,556 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterStateChanged
2019-05-06 12:53:12,557 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieFailed
2019-05-06 12:53:12,560 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileAdded
2019-05-06 12:53:12,561 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:12,562 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintPaused
2019-05-06 12:53:12,563 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileSelected
2019-05-06 12:53:12,564 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelled
2019-05-06 12:53:12,586 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisStarted
2019-05-06 12:53:12,588 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderAdded
2019-05-06 12:53:12,589 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:12,590 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Conveyor
2019-05-06 12:53:12,591 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connecting
2019-05-06 12:53:12,592 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnecting
2019-05-06 12:53:12,594 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferFailed
2019-05-06 12:53:12,596 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientClosed
2019-05-06 12:53:12,599 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event EStop
2019-05-06 12:53:12,599 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileRemoved
2019-05-06 12:53:12,620 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollStart
2019-05-06 12:53:12,621 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Home
2019-05-06 12:53:12,622 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:12,623 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Cooling
2019-05-06 12:53:12,625 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Upload
2019-05-06 12:53:12,626 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:12,627 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Error
2019-05-06 12:53:12,628 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Dwelling
2019-05-06 12:53:12,630 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileAdded
2019-05-06 12:53:12,631 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:12,632 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Startup
2019-05-06 12:53:12,660 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureStart
2019-05-06 12:53:12,661 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientOpened
2019-05-06 12:53:12,663 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Alert
2019-05-06 12:53:12,701 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferDone
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelling
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieDone
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureDone
2019-05-06 12:53:12,824 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:12,916 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:12,917 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:12,918 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:12,919 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:12,930 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:12,931 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:12,933 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:12,934 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:12,936 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:12,938 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:12,939 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:12,940 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:12,941 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:12,943 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:12,944 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:12,992 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:16,835 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:16,837 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:16,855 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:53:16,902 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:23,695 - octoprint.server.util.flask - DEBUG - Needed 15.53s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:23,704 - octoprint.server.preemptive_cache - INFO - ... done in 16.19s
2019-05-06 12:53:23,707 - octoprint.server.util.flask - DEBUG - Needed 6.80s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:24,754 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:24,837 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:24,839 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:26,086 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:53:26,090 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:26,090 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:26,092 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:26,092 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:26,094 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOn
2019-05-06 12:53:26,095 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FirmwareData
2019-05-06 12:53:26,097 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileDeselected
2019-05-06 12:53:26,098 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollEnd
2019-05-06 12:53:26,099 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderRemoved
2019-05-06 12:53:26,101 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOff
2019-05-06 12:53:26,102 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintDone
2019-05-06 12:53:26,103 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:26,104 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event UpdatedFiles
2019-05-06 12:53:26,105 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataStatisticsUpdated
2019-05-06 12:53:26,106 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingCancelled
2019-05-06 12:53:26,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnected
2019-05-06 12:53:26,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SettingsUpdated
2019-05-06 12:53:26,109 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ToolChange
2019-05-06 12:53:26,110 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieRendering
2019-05-06 12:53:26,111 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:26,112 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisFinished
2019-05-06 12:53:26,113 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingFailed
2019-05-06 12:53:26,114 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event RegisteredMessageReceived
2019-05-06 12:53:26,115 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintResumed
2019-05-06 12:53:26,116 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Eject
2019-05-06 12:53:26,116 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Waiting
2019-05-06 12:53:26,117 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureFailed
2019-05-06 12:53:26,118 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingDone
2019-05-06 12:53:26,119 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileDeleted
2019-05-06 12:53:26,120 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ZChange
2019-05-06 12:53:26,121 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileModified
2019-05-06 12:53:26,122 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintStarted
2019-05-06 12:53:26,123 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileAdded
2019-05-06 12:53:26,124 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ConnectivityChanged
2019-05-06 12:53:26,125 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterReset
2019-05-06 12:53:26,126 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintFailed
2019-05-06 12:53:26,127 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connected
2019-05-06 12:53:26,128 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:26,129 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PositionUpdate
2019-05-06 12:53:26,130 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingStarted
2019-05-06 12:53:26,131 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileDeleted
2019-05-06 12:53:26,131 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferStarted
2019-05-06 12:53:26,133 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Shutdown
2019-05-06 12:53:26,134 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileModified
2019-05-06 12:53:26,135 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterStateChanged
2019-05-06 12:53:26,136 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieFailed
2019-05-06 12:53:26,137 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileAdded
2019-05-06 12:53:26,137 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:26,138 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintPaused
2019-05-06 12:53:26,139 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileSelected
2019-05-06 12:53:26,140 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelled
2019-05-06 12:53:26,141 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisStarted
2019-05-06 12:53:26,142 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderAdded
2019-05-06 12:53:26,143 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:26,144 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Conveyor
2019-05-06 12:53:26,144 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connecting
2019-05-06 12:53:26,145 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnecting
2019-05-06 12:53:26,146 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferFailed
2019-05-06 12:53:26,147 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientClosed
2019-05-06 12:53:26,149 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event EStop
2019-05-06 12:53:26,150 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileRemoved
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollStart
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Home
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:26,152 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Cooling
2019-05-06 12:53:26,153 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Upload
2019-05-06 12:53:26,153 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:26,155 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Error
2019-05-06 12:53:26,156 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Dwelling
2019-05-06 12:53:26,157 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileAdded
2019-05-06 12:53:26,158 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:26,158 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Startup
2019-05-06 12:53:26,160 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureStart
2019-05-06 12:53:26,161 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientOpened
2019-05-06 12:53:26,162 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Alert
2019-05-06 12:53:26,162 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferDone
2019-05-06 12:53:26,163 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelling
2019-05-06 12:53:26,164 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieDone
2019-05-06 12:53:26,165 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureDone
2019-05-06 12:53:33,447 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:33,503 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOn
2019-05-06 12:53:33,504 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FirmwareData
2019-05-06 12:53:33,505 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileDeselected
2019-05-06 12:53:33,506 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:33,508 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollEnd
2019-05-06 12:53:33,509 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>>
2019-05-06 12:53:33,513 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderRemoved
2019-05-06 12:53:33,514 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:33,515 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOff
2019-05-06 12:53:33,516 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:33,517 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintDone
2019-05-06 12:53:33,518 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:33,519 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:33,520 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:33,521 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event UpdatedFiles
2019-05-06 12:53:33,522 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:33,523 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataStatisticsUpdated
2019-05-06 12:53:33,523 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:33,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingCancelled
2019-05-06 12:53:33,526 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnected
2019-05-06 12:53:33,528 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SettingsUpdated
2019-05-06 12:53:33,529 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ToolChange
2019-05-06 12:53:33,530 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieRendering
2019-05-06 12:53:33,532 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:33,533 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisFinished
2019-05-06 12:53:33,534 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingFailed
2019-05-06 12:53:33,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event RegisteredMessageReceived
2019-05-06 12:53:33,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintResumed
2019-05-06 12:53:33,536 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Eject
2019-05-06 12:53:33,537 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Waiting
2019-05-06 12:53:33,538 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureFailed
2019-05-06 12:53:33,539 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingDone
2019-05-06 12:53:33,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileDeleted
2019-05-06 12:53:33,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ZChange
2019-05-06 12:53:33,541 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileModified
2019-05-06 12:53:33,542 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintStarted
2019-05-06 12:53:33,543 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileAdded
2019-05-06 12:53:33,544 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ConnectivityChanged
2019-05-06 12:53:33,546 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterReset
2019-05-06 12:53:33,547 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintFailed
2019-05-06 12:53:33,548 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connected
2019-05-06 12:53:33,549 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:33,550 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PositionUpdate
2019-05-06 12:53:33,551 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingStarted
2019-05-06 12:53:33,552 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileDeleted
2019-05-06 12:53:33,553 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferStarted
2019-05-06 12:53:33,554 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Shutdown
2019-05-06 12:53:33,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileModified
2019-05-06 12:53:33,556 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterStateChanged
2019-05-06 12:53:33,557 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieFailed
2019-05-06 12:53:33,558 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileAdded
2019-05-06 12:53:33,558 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:33,559 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintPaused
2019-05-06 12:53:33,560 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileSelected
2019-05-06 12:53:33,561 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelled
2019-05-06 12:53:33,562 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisStarted
2019-05-06 12:53:33,563 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderAdded
2019-05-06 12:53:33,564 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:33,565 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Conveyor
2019-05-06 12:53:33,566 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connecting
2019-05-06 12:53:33,567 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnecting
2019-05-06 12:53:33,568 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferFailed
2019-05-06 12:53:33,569 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientClosed
2019-05-06 12:53:33,570 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event EStop
2019-05-06 12:53:33,571 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileRemoved
2019-05-06 12:53:33,572 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollStart
2019-05-06 12:53:33,573 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Home
2019-05-06 12:53:33,574 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:33,575 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Cooling
2019-05-06 12:53:33,576 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Upload
2019-05-06 12:53:33,577 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:33,578 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Error
2019-05-06 12:53:33,579 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Dwelling
2019-05-06 12:53:33,580 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileAdded
2019-05-06 12:53:33,581 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:33,582 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Startup
2019-05-06 12:53:33,582 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureStart
2019-05-06 12:53:33,583 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientOpened
2019-05-06 12:53:33,584 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Alert
2019-05-06 12:53:33,585 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferDone
2019-05-06 12:53:33,586 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelling
2019-05-06 12:53:33,587 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieDone
2019-05-06 12:53:33,588 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureDone
2019-05-06 12:53:33,589 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:33,614 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:forcelogin:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:34,141 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:34,143 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:34,144 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:34,145 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:34,146 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:34,147 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:34,148 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:34,149 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:34,151 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:34,152 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:34,153 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:34,154 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:34,155 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:34,156 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:34,158 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:34,176 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:34,181 - octoprint.server.util.flask - DEBUG - Needed 0.57s to render / (key: ui:forcelogin:http://129.247.189.242:30141/:de)
2019-05-06 12:53:34,206 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 12.46ms
2019-05-06 12:53:34,454 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:42,967 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:42,972 - octoprint.server.api - INFO - Actively logging in user pi from 10.97.3.15
2019-05-06 12:53:42,997 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:42,998 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:43,002 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:43,003 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:43,004 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:43,005 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:43,008 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:43,010 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:43,041 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:43,045 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:53:43,075 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:53:43,162 - octoprint.server.util.flask - DEBUG - Serving entry for / from cache (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:43,654 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:43,744 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:43,746 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:53:44,846 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:44,848 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:44,849 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:44,850 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:44,851 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:44,853 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:44,854 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:44,855 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:44,856 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:44,857 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:44,858 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:44,860 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:44,861 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:44,862 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:44,863 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:44,882 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:45,338 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:45,339 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:45,341 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:45,343 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:45,344 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:45,345 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:45,346 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:45,347 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:45,348 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:45,349 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:45,351 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:45,352 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:45,353 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:45,354 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:45,355 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:45,374 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:45,474 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:53:45,477 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:45,478 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:45,481 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:45,481 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOn
2019-05-06 12:53:45,483 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:45,484 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FirmwareData
2019-05-06 12:53:45,486 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileDeselected
2019-05-06 12:53:45,487 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollEnd
2019-05-06 12:53:45,488 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderRemoved
2019-05-06 12:53:45,489 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOff
2019-05-06 12:53:45,489 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintDone
2019-05-06 12:53:45,490 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:45,491 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event UpdatedFiles
2019-05-06 12:53:45,492 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataStatisticsUpdated
2019-05-06 12:53:45,493 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingCancelled
2019-05-06 12:53:45,494 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnected
2019-05-06 12:53:45,496 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SettingsUpdated
2019-05-06 12:53:45,496 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ToolChange
2019-05-06 12:53:45,497 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieRendering
2019-05-06 12:53:45,498 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:45,499 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisFinished
2019-05-06 12:53:45,500 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingFailed
2019-05-06 12:53:45,501 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event RegisteredMessageReceived
2019-05-06 12:53:45,502 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintResumed
2019-05-06 12:53:45,503 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Eject
2019-05-06 12:53:45,504 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Waiting
2019-05-06 12:53:45,504 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureFailed
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingDone
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileDeleted
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ZChange
2019-05-06 12:53:45,506 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileModified
2019-05-06 12:53:45,509 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintStarted
2019-05-06 12:53:45,510 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileAdded
2019-05-06 12:53:45,511 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ConnectivityChanged
2019-05-06 12:53:45,512 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterReset
2019-05-06 12:53:45,513 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintFailed
2019-05-06 12:53:45,514 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connected
2019-05-06 12:53:45,515 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:45,516 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PositionUpdate
2019-05-06 12:53:45,517 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingStarted
2019-05-06 12:53:45,517 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileDeleted
2019-05-06 12:53:45,518 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferStarted
2019-05-06 12:53:45,519 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Shutdown
2019-05-06 12:53:45,520 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileModified
2019-05-06 12:53:45,521 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterStateChanged
2019-05-06 12:53:45,522 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieFailed
2019-05-06 12:53:45,522 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileAdded
2019-05-06 12:53:45,524 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:45,525 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintPaused
2019-05-06 12:53:45,526 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileSelected
2019-05-06 12:53:45,527 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelled
2019-05-06 12:53:45,528 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisStarted
2019-05-06 12:53:45,529 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderAdded
2019-05-06 12:53:45,530 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:45,531 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Conveyor
2019-05-06 12:53:45,532 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connecting
2019-05-06 12:53:45,533 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnecting
2019-05-06 12:53:45,534 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferFailed
2019-05-06 12:53:45,535 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientClosed
2019-05-06 12:53:45,536 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event EStop
2019-05-06 12:53:45,537 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileRemoved
2019-05-06 12:53:45,538 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollStart
2019-05-06 12:53:45,540 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Home
2019-05-06 12:53:45,541 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:45,541 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Cooling
2019-05-06 12:53:45,543 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Upload
2019-05-06 12:53:45,543 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:45,545 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Error
2019-05-06 12:53:45,546 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Dwelling
2019-05-06 12:53:45,546 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileAdded
2019-05-06 12:53:45,547 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:45,548 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Startup
2019-05-06 12:53:45,549 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureStart
2019-05-06 12:53:45,550 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientOpened
2019-05-06 12:53:45,551 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Alert
2019-05-06 12:53:45,552 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferDone
2019-05-06 12:53:45,553 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelling
2019-05-06 12:53:45,554 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieDone
2019-05-06 12:53:45,555 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureDone
2019-05-06 12:53:54,986 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOn
2019-05-06 12:53:54,987 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:54,988 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FirmwareData
2019-05-06 12:53:54,989 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>>
2019-05-06 12:53:54,991 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileDeselected
2019-05-06 12:53:54,993 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:54,996 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollEnd
2019-05-06 12:53:54,997 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:55,000 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderRemoved
2019-05-06 12:53:55,001 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:55,004 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOff
2019-05-06 12:53:55,005 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:55,007 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintDone
2019-05-06 12:53:55,008 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:55,009 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:55,010 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:55,012 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event UpdatedFiles
2019-05-06 12:53:55,017 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataStatisticsUpdated
2019-05-06 12:53:55,019 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingCancelled
2019-05-06 12:53:55,020 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnected
2019-05-06 12:53:55,023 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SettingsUpdated
2019-05-06 12:53:55,025 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ToolChange
2019-05-06 12:53:55,026 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieRendering
2019-05-06 12:53:55,027 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:55,030 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisFinished
2019-05-06 12:53:55,031 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingFailed
2019-05-06 12:53:55,033 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event RegisteredMessageReceived
2019-05-06 12:53:55,035 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintResumed
2019-05-06 12:53:55,037 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Eject
2019-05-06 12:53:55,038 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Waiting
2019-05-06 12:53:55,041 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureFailed
2019-05-06 12:53:55,043 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingDone
2019-05-06 12:53:55,045 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileDeleted
2019-05-06 12:53:55,047 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ZChange
2019-05-06 12:53:55,049 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileModified
2019-05-06 12:53:55,050 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintStarted
2019-05-06 12:53:55,053 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileAdded
2019-05-06 12:53:55,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ConnectivityChanged
2019-05-06 12:53:55,057 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterReset
2019-05-06 12:53:55,058 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintFailed
2019-05-06 12:53:55,060 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connected
2019-05-06 12:53:55,062 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:55,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PositionUpdate
2019-05-06 12:53:55,065 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingStarted
2019-05-06 12:53:55,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileDeleted
2019-05-06 12:53:55,069 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferStarted
2019-05-06 12:53:55,070 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Shutdown
2019-05-06 12:53:55,072 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileModified
2019-05-06 12:53:55,074 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterStateChanged
2019-05-06 12:53:55,075 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieFailed
2019-05-06 12:53:55,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileAdded
2019-05-06 12:53:55,079 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:55,081 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintPaused
2019-05-06 12:53:55,083 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileSelected
2019-05-06 12:53:55,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelled
2019-05-06 12:53:55,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisStarted
2019-05-06 12:53:55,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderAdded
2019-05-06 12:53:55,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:55,091 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Conveyor
2019-05-06 12:53:55,094 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connecting
2019-05-06 12:53:55,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnecting
2019-05-06 12:53:55,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferFailed
2019-05-06 12:53:55,100 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientClosed
2019-05-06 12:53:55,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event EStop
2019-05-06 12:53:55,102 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileRemoved
2019-05-06 12:53:55,103 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollStart
2019-05-06 12:53:55,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Home
2019-05-06 12:53:55,108 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:55,110 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Cooling
2019-05-06 12:53:55,111 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Upload
2019-05-06 12:53:55,113 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:55,115 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Error
2019-05-06 12:53:55,117 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Dwelling
2019-05-06 12:53:55,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileAdded
2019-05-06 12:53:55,120 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:55,123 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Startup
2019-05-06 12:53:55,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureStart
2019-05-06 12:53:55,127 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientOpened
2019-05-06 12:53:55,128 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Alert
2019-05-06 12:53:55,130 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferDone
2019-05-06 12:53:55,132 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelling
2019-05-06 12:53:55,134 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieDone
2019-05-06 12:53:55,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureDone
2019-05-06 12:53:55,136 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
|
ValueError
|
def logout():
# logout from user manager...
_logout(current_user)
# ... and from flask login (and principal)
logout_user()
# ... and send an active logout session cookie
r = make_response(NO_CONTENT)
r.set_cookie("active_logout", "true")
return r
|
def logout():
# logout from user manager...
_logout(current_user)
# ... and from flask login (and principal)
logout_user()
return NO_CONTENT
|
https://github.com/OctoPrint/OctoPrint/issues/3142
|
2019-05-06 12:38:21,168 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:38:21,170 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc3
2019-05-06 12:38:21,171 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:38:21,277 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-05-06 12:38:21,278 - octoprint.startup - INFO - Blacklist processing done
2019-05-06 12:38:21,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:38:21,352 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for logging from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging/__init__.py
2019-05-06 12:38:22,945 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for corewizard from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard/__init__.py
2019-05-06 12:38:22,959 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for backup from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup/__init__.py
2019-05-06 12:38:23,028 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for announcements from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py
2019-05-06 12:38:23,212 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for action_command_prompt from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt/__init__.py
2019-05-06 12:38:23,228 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for appkeys from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys/__init__.py
2019-05-06 12:38:23,254 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for discovery from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery/__init__.py
2019-05-06 12:38:23,310 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for forcelogin from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py
2019-05-06 12:38:23,323 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pi_support from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py
2019-05-06 12:38:23,341 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for virtual_printer from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer/__init__.py
2019-05-06 12:38:23,348 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for printer_safety_check from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check/__init__.py
2019-05-06 12:38:23,365 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for softwareupdate from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/__init__.py
2019-05-06 12:38:23,463 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for errortracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking/__init__.py
2019-05-06 12:38:23,478 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for tracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking/__init__.py
2019-05-06 12:38:23,503 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pluginmanager from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py
2019-05-06 12:38:23,793 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for systemcommandeditor from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor/__init__.py
2019-05-06 12:38:23,797 - octoprint.plugin.core - INFO - Plugin System Command Editor (0.3.2) is disabled.
2019-05-06 12:38:23,821 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for flowspeedrename from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename/__init__.py
2019-05-06 12:38:23,824 - octoprint.plugin.core - INFO - Plugin Rename Flowspeed & Feedrate (0.1.0) is disabled.
2019-05-06 12:38:23,836 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for navbartemp from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py
2019-05-06 12:38:23,843 - octoprint.plugin.core - INFO - Plugin Navbar Temperature Plugin (0.11) is disabled.
2019-05-06 12:38:23,855 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for autoselect from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect/__init__.py
2019-05-06 12:38:23,860 - octoprint.plugin.core - INFO - Plugin Autoselect Plugin (0.2.0) is disabled.
2019-05-06 12:38:23,871 - octoprint.plugin.core - DEBUG - Loaded plugin logging: Logging
2019-05-06 12:38:23,872 - octoprint.plugin.core - DEBUG - Loaded plugin corewizard: Core Wizard
2019-05-06 12:38:23,873 - octoprint.plugin.core - DEBUG - Loaded plugin backup: Backup & Restore
2019-05-06 12:38:23,874 - octoprint.plugin.core - DEBUG - Loaded plugin announcements: Announcement Plugin
2019-05-06 12:38:23,875 - octoprint.plugin.core - DEBUG - Loaded plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:38:23,877 - octoprint.plugin.core - DEBUG - Loaded plugin appkeys: Application Keys Plugin
2019-05-06 12:38:23,878 - octoprint.plugin.core - DEBUG - Loaded plugin discovery: Discovery
2019-05-06 12:38:23,879 - octoprint.plugin.core - DEBUG - Loaded plugin forcelogin: Force Login
2019-05-06 12:38:23,880 - octoprint.plugin.core - DEBUG - Loaded plugin pi_support: Pi Support Plugin
2019-05-06 12:38:23,881 - octoprint.plugin.core - DEBUG - Loaded plugin virtual_printer: Virtual Printer
2019-05-06 12:38:23,882 - octoprint.plugin.core - DEBUG - Loaded plugin printer_safety_check: Printer Safety Check
2019-05-06 12:38:23,883 - octoprint.plugin.core - DEBUG - Loaded plugin softwareupdate: Software Update
2019-05-06 12:38:23,884 - octoprint.plugin.core - DEBUG - Loaded plugin errortracking: Error Tracking
2019-05-06 12:38:23,885 - octoprint.plugin.core - DEBUG - Loaded plugin tracking: Anonymous Usage Tracking
2019-05-06 12:38:23,887 - octoprint.plugin.core - DEBUG - Loaded plugin pluginmanager: Plugin Manager
2019-05-06 12:38:23,888 - octoprint.plugin.core - DEBUG - Enabled plugin logging: Logging
2019-05-06 12:38:23,889 - octoprint.plugin.core - DEBUG - Enabled plugin corewizard: Core Wizard
2019-05-06 12:38:23,892 - octoprint.plugin.core - DEBUG - Enabled plugin backup: Backup & Restore
2019-05-06 12:38:23,894 - octoprint.plugin.core - DEBUG - Enabled plugin announcements: Announcement Plugin
2019-05-06 12:38:23,895 - octoprint.plugin.core - DEBUG - Enabled plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:38:23,897 - octoprint.plugin.core - DEBUG - Enabled plugin appkeys: Application Keys Plugin
2019-05-06 12:38:23,898 - octoprint.plugin.core - DEBUG - Enabled plugin discovery: Discovery
2019-05-06 12:38:23,899 - octoprint.plugin.core - DEBUG - Enabled plugin forcelogin: Force Login
2019-05-06 12:38:23,901 - octoprint.plugin.core - DEBUG - Enabled plugin pi_support: Pi Support Plugin
2019-05-06 12:38:23,905 - octoprint.plugin.core - DEBUG - Enabled plugin virtual_printer: Virtual Printer
2019-05-06 12:38:23,907 - octoprint.plugin.core - DEBUG - Enabled plugin printer_safety_check: Printer Safety Check
2019-05-06 12:38:23,909 - octoprint.plugin.core - DEBUG - Enabled plugin softwareupdate: Software Update
2019-05-06 12:38:23,963 - octoprint.plugins.errortracking - INFO - Initialized error tracking
2019-05-06 12:38:23,965 - octoprint.plugin.core - DEBUG - Enabled plugin errortracking: Error Tracking
2019-05-06 12:38:23,967 - octoprint.plugin.core - DEBUG - Enabled plugin tracking: Anonymous Usage Tracking
2019-05-06 12:38:23,969 - octoprint.plugin.core - DEBUG - Enabled plugin pluginmanager: Plugin Manager
2019-05-06 12:38:23,970 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:38:24,241 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-05-06 12:38:24,291 - octoprint.server - DEBUG - Starting intermediary server on http://127.0.0.1:5000
2019-05-06 12:38:24,294 - octoprint.server - INFO - Intermediary server started
2019-05-06 12:38:24,295 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:38:24,545 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:38:24,580 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-05-06 12:38:25,111 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-05-06 12:38:25,114 - octoprint.events - DEBUG - Subscribed listener <function on_settings_update at 0x73a14570> for event SettingsUpdated
2019-05-06 12:38:25,134 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataAnalysisFinished of <octoprint.printer.standard.Printer object at 0x73b6f3b0>> for event MetadataAnalysisFinished
2019-05-06 12:38:25,135 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataStatisticsUpdated of <octoprint.printer.standard.Printer object at 0x73b6f3b0>> for event MetadataStatisticsUpdated
2019-05-06 12:38:25,137 - octoprint.server - DEBUG - Registered event throttle_state of plugin pi_support as Events.PLUGIN_PI_SUPPORT_THROTTLE_STATE = "plugin_pi_support_throttle_state"
2019-05-06 12:38:25,138 - octoprint.server - DEBUG - Registered event install_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_INSTALL_PLUGIN = "plugin_pluginmanager_install_plugin"
2019-05-06 12:38:25,139 - octoprint.server - DEBUG - Registered event uninstall_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_UNINSTALL_PLUGIN = "plugin_pluginmanager_uninstall_plugin"
2019-05-06 12:38:25,140 - octoprint.server - DEBUG - Registered event enable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_ENABLE_PLUGIN = "plugin_pluginmanager_enable_plugin"
2019-05-06 12:38:25,141 - octoprint.server - DEBUG - Registered event disable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_DISABLE_PLUGIN = "plugin_pluginmanager_disable_plugin"
2019-05-06 12:38:25,142 - octoprint.server - DEBUG - Registered event warning of plugin printer_safety_check as Events.PLUGIN_PRINTER_SAFETY_CHECK_WARNING = "plugin_printer_safety_check_warning"
2019-05-06 12:38:25,143 - octoprint.server - DEBUG - Registered event update_succeeded of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_SUCCEEDED = "plugin_softwareupdate_update_succeeded"
2019-05-06 12:38:25,144 - octoprint.server - DEBUG - Registered event update_failed of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_FAILED = "plugin_softwareupdate_update_failed"
2019-05-06 12:38:25,147 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin tracking
2019-05-06 12:38:25,149 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin logging
2019-05-06 12:38:25,153 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin appkeys
2019-05-06 12:38:25,155 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin virtual_printer
2019-05-06 12:38:25,159 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin action_command_prompt
2019-05-06 12:38:25,162 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin corewizard
2019-05-06 12:38:25,164 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pi_support
2019-05-06 12:38:25,167 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin printer_safety_check
2019-05-06 12:38:25,252 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-05-06 12:38:25,253 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin softwareupdate
2019-05-06 12:38:25,256 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin errortracking
2019-05-06 12:38:25,258 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin announcements
2019-05-06 12:38:25,261 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin forcelogin
2019-05-06 12:38:27,772 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:38:29,702 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-05-06 12:38:29,704 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:38:29,706 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:38:29,707 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pluginmanager
2019-05-06 12:38:29,710 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin backup
2019-05-06 12:38:29,713 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin discovery
2019-05-06 12:38:29,715 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-05-06 12:38:29,726 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| !Autoselect Plugin (0.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Rename Flowspeed & Feedrate (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !System Command Editor (0.3.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-05-06 12:38:29,743 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 904245248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.13.0
| python:
| pip: 19.0.3
| version: 2.7.9
| virtualenv: /home/pi/oprint
2019-05-06 12:38:29,750 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,755 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,757 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,758 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,777 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,779 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,915 - octoprint.server - DEBUG - Registered API of plugin announcements under URL prefix /plugin/announcements
2019-05-06 12:38:29,938 - octoprint.server - DEBUG - Registered API of plugin appkeys under URL prefix /plugin/appkeys
2019-05-06 12:38:29,964 - octoprint.server - DEBUG - Registered API of plugin backup under URL prefix /plugin/backup
2019-05-06 12:38:29,982 - octoprint.server - DEBUG - Registered API of plugin corewizard under URL prefix /plugin/corewizard
2019-05-06 12:38:30,001 - octoprint.server - DEBUG - Registered API of plugin discovery under URL prefix /plugin/discovery
2019-05-06 12:38:30,016 - octoprint.server - DEBUG - Registered API of plugin logging under URL prefix /plugin/logging
2019-05-06 12:38:30,035 - octoprint.server - DEBUG - Registered API of plugin pluginmanager under URL prefix /plugin/pluginmanager
2019-05-06 12:38:30,055 - octoprint.server - DEBUG - Registered API of plugin softwareupdate under URL prefix /plugin/softwareupdate
2019-05-06 12:38:30,071 - octoprint.server - DEBUG - Registered assets of plugin action_command_prompt under URL prefix /plugin/action_command_prompt
2019-05-06 12:38:30,086 - octoprint.server - DEBUG - Registered assets of plugin errortracking under URL prefix /plugin/errortracking
2019-05-06 12:38:30,101 - octoprint.server - DEBUG - Registered assets of plugin forcelogin under URL prefix /plugin/forcelogin
2019-05-06 12:38:30,116 - octoprint.server - DEBUG - Registered assets of plugin pi_support under URL prefix /plugin/pi_support
2019-05-06 12:38:30,132 - octoprint.server - DEBUG - Registered assets of plugin printer_safety_check under URL prefix /plugin/printer_safety_check
2019-05-06 12:38:30,147 - octoprint.server - DEBUG - Registered assets of plugin tracking under URL prefix /plugin/tracking
2019-05-06 12:38:30,340 - octoprint.server - DEBUG - Adding additional route /plugin/backup/download/(.*) handled by handler <class 'octoprint.server.util.tornado.LargeResponseHandler'> and with additional arguments {'access_validation': <function f at 0x71cc71b0>, 'as_attachment': True, 'path_validation': <function f at 0x71cc7170>, 'path': '/home/pi/.octoprint/data/backup'}
2019-05-06 12:38:30,368 - octoprint.server - DEBUG - Adding maximum body size of 1073741824B for POST requests to /plugin/backup/restore)
2019-05-06 12:38:30,370 - octoprint.server - DEBUG - Adding maximum body size of 52428800B for POST requests to /plugin/pluginmanager/upload_archive)
2019-05-06 12:38:30,372 - octoprint.server - INFO - Shutting down intermediary server...
2019-05-06 12:38:30,418 - octoprint.server - INFO - Intermediary server shut down
2019-05-06 12:38:30,422 - octoprint.events - INFO - Processing startup event, this is our first event
2019-05-06 12:38:30,423 - octoprint.events.fire - DEBUG - Firing event: Startup (Payload: None)
2019-05-06 12:38:30,424 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:38:30,425 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:38:30,425 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:38:30,426 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:38:30,426 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:38:30,427 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:38:30,423 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-05-06 12:38:30,432 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-05-06 12:38:30,485 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-05-06 12:38:30,501 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-05-06 12:38:30,505 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-05-06 12:38:30,510 - octoprint.plugin - DEBUG - Calling on_startup on announcements
2019-05-06 12:38:30,513 - octoprint.plugin - DEBUG - Calling on_startup on backup
2019-05-06 12:38:30,515 - octoprint.plugin - DEBUG - Calling on_startup on discovery
2019-05-06 12:38:30,531 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _http._tcp
2019-05-06 12:38:30,547 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _octoprint._tcp
2019-05-06 12:38:30,550 - octoprint.plugin - DEBUG - Calling on_startup on pi_support
2019-05-06 12:38:30,564 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Printer_1" for SSDP
2019-05-06 12:38:30,589 - octoprint.plugins.pi_support - ERROR - Got an error while trying to fetch the current throttle state via "/usr/bin/vcgencmd get_throttled"
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 263, in _check_throttled_state
state = get_vcgencmd_throttled_state(command)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 140, in get_vcgencmd_throttled_state
raise ValueError("cannot parse \"{}\" output: {}".format(command, output))
ValueError: cannot parse "/usr/bin/vcgencmd get_throttled" output: error=1 error_msg="Command not registered"
2019-05-06 12:38:30,670 - octoprint.plugin - DEBUG - Calling on_startup on pluginmanager
2019-05-06 12:38:30,673 - octoprint.plugin - DEBUG - Calling on_startup on softwareupdate
2019-05-06 12:38:30,676 - octoprint.plugin - DEBUG - Calling on_startup on tracking
2019-05-06 12:38:30,678 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-05-06 12:38:30,681 - octoprint.plugin - DEBUG - Calling on_after_startup on announcements
2019-05-06 12:38:30,695 - octoprint.plugin - DEBUG - Calling on_after_startup on backup
2019-05-06 12:38:30,702 - octoprint.plugin - DEBUG - Calling on_after_startup on discovery
2019-05-06 12:38:30,704 - octoprint.plugin - DEBUG - Calling on_after_startup on pi_support
2019-05-06 12:38:30,706 - octoprint.plugin - DEBUG - Calling on_after_startup on pluginmanager
2019-05-06 12:38:30,722 - octoprint.plugin - DEBUG - Calling on_after_startup on softwareupdate
2019-05-06 12:38:30,842 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-05-06 12:38:31,028 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-05-06 12:38:31,139 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:31,140 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:31,244 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:31,246 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:31,247 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:31,249 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:31,319 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:31,320 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:31,323 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:31,325 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:31,326 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:31,328 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:31,329 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:31,330 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:31,332 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:31,361 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:31,682 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:38:31,685 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:38:31,905 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:38:32,039 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:38:32,882 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:38:32,883 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:38:32,884 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:38:32,952 - octoprint.plugin - DEBUG - Calling on_after_startup on tracking
2019-05-06 12:38:33,194 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://129.247.189.242:30141/'}
2019-05-06 12:38:33,203 - octoprint.server.views - DEBUG - Forcing rendering of view _default
2019-05-06 12:38:33,269 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:38:34,826 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:34,827 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:34,829 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:34,830 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:34,831 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:34,832 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:34,833 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:34,835 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:34,836 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:34,837 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:34,838 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:34,840 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:34,841 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:34,848 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:34,849 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:34,873 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:50,694 - octoprint.server.util.flask - DEBUG - Needed 18.65s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:38:50,728 - octoprint.server.util.flask - DEBUG - Needed 17.46s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:38:50,740 - octoprint.server.preemptive_cache - INFO - ... done in 17.55s
2019-05-06 12:38:51,274 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:38:51,348 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:38:51,351 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:38:52,593 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:52,594 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:52,595 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:52,596 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:52,597 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:52,598 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:52,600 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:52,601 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:52,602 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:52,603 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:52,604 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:52,605 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:52,606 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:52,607 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:52,609 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:52,628 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,036 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:53,038 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:53,039 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:53,040 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:53,041 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:53,042 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:53,043 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:53,044 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:53,045 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:53,046 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:53,047 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:53,049 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:53,050 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:53,051 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:53,052 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:53,070 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,221 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:53,224 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:53,225 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:53,226 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:53,227 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:53,228 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:53,230 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:53,231 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:53,232 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:53,233 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:53,234 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:53,235 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:53,236 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:53,237 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:53,238 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:53,256 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,295 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:38:53,298 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOn
2019-05-06 12:38:53,299 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:38:53,300 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:38:53,300 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FirmwareData
2019-05-06 12:38:53,301 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:38:53,303 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:38:53,304 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:38:53,304 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:38:53,305 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:38:53,302 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileDeselected
2019-05-06 12:38:53,306 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollEnd
2019-05-06 12:38:53,307 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderRemoved
2019-05-06 12:38:53,309 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOff
2019-05-06 12:38:53,311 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintDone
2019-05-06 12:38:53,312 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_printer_safety_check_warning
2019-05-06 12:38:53,312 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event UpdatedFiles
2019-05-06 12:38:53,313 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataStatisticsUpdated
2019-05-06 12:38:53,314 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingCancelled
2019-05-06 12:38:53,314 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnected
2019-05-06 12:38:53,315 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SettingsUpdated
2019-05-06 12:38:53,316 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ToolChange
2019-05-06 12:38:53,316 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieRendering
2019-05-06 12:38:53,317 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pi_support_throttle_state
2019-05-06 12:38:53,319 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisFinished
2019-05-06 12:38:53,320 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingFailed
2019-05-06 12:38:53,321 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event RegisteredMessageReceived
2019-05-06 12:38:53,322 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintResumed
2019-05-06 12:38:53,323 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Eject
2019-05-06 12:38:53,324 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Waiting
2019-05-06 12:38:53,324 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureFailed
2019-05-06 12:38:53,325 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingDone
2019-05-06 12:38:53,327 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileDeleted
2019-05-06 12:38:53,328 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ZChange
2019-05-06 12:38:53,328 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileModified
2019-05-06 12:38:53,329 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintStarted
2019-05-06 12:38:53,330 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileAdded
2019-05-06 12:38:53,331 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ConnectivityChanged
2019-05-06 12:38:53,332 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterReset
2019-05-06 12:38:53,333 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintFailed
2019-05-06 12:38:53,334 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connected
2019-05-06 12:38:53,335 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PositionUpdate
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingStarted
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileDeleted
2019-05-06 12:38:53,337 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferStarted
2019-05-06 12:38:53,338 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Shutdown
2019-05-06 12:38:53,339 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileModified
2019-05-06 12:38:53,340 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterStateChanged
2019-05-06 12:38:53,341 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieFailed
2019-05-06 12:38:53,342 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileAdded
2019-05-06 12:38:53,344 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:38:53,345 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintPaused
2019-05-06 12:38:53,346 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileSelected
2019-05-06 12:38:53,347 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelled
2019-05-06 12:38:53,348 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisStarted
2019-05-06 12:38:53,349 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderAdded
2019-05-06 12:38:53,350 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:38:53,350 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Conveyor
2019-05-06 12:38:53,351 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connecting
2019-05-06 12:38:53,353 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnecting
2019-05-06 12:38:53,353 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferFailed
2019-05-06 12:38:53,354 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientClosed
2019-05-06 12:38:53,355 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event EStop
2019-05-06 12:38:53,356 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileRemoved
2019-05-06 12:38:53,357 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollStart
2019-05-06 12:38:53,358 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Home
2019-05-06 12:38:53,359 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:38:53,360 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Cooling
2019-05-06 12:38:53,361 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Upload
2019-05-06 12:38:53,362 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:38:53,363 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Error
2019-05-06 12:38:53,363 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Dwelling
2019-05-06 12:38:53,364 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileAdded
2019-05-06 12:38:53,365 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:38:53,366 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Startup
2019-05-06 12:38:53,367 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureStart
2019-05-06 12:38:53,368 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientOpened
2019-05-06 12:38:53,368 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Alert
2019-05-06 12:38:53,369 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferDone
2019-05-06 12:38:53,370 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelling
2019-05-06 12:38:53,371 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieDone
2019-05-06 12:38:53,372 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureDone
2019-05-06 12:39:11,109 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:11,110 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>>
2019-05-06 12:39:11,114 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOn
2019-05-06 12:39:11,123 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:11,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FirmwareData
2019-05-06 12:39:11,126 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:11,128 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileDeselected
2019-05-06 12:39:11,129 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:11,131 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollEnd
2019-05-06 12:39:11,133 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:11,134 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderRemoved
2019-05-06 12:39:11,136 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:11,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOff
2019-05-06 12:39:11,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintDone
2019-05-06 12:39:11,138 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:11,144 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:11,147 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event UpdatedFiles
2019-05-06 12:39:11,148 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:11,151 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingCancelled
2019-05-06 12:39:11,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnected
2019-05-06 12:39:11,154 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SettingsUpdated
2019-05-06 12:39:11,156 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ToolChange
2019-05-06 12:39:11,158 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieRendering
2019-05-06 12:39:11,159 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:11,161 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisFinished
2019-05-06 12:39:11,163 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingFailed
2019-05-06 12:39:11,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event RegisteredMessageReceived
2019-05-06 12:39:11,167 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintResumed
2019-05-06 12:39:11,169 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Eject
2019-05-06 12:39:11,171 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Waiting
2019-05-06 12:39:11,172 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureFailed
2019-05-06 12:39:11,174 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingDone
2019-05-06 12:39:11,176 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileDeleted
2019-05-06 12:39:11,177 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ZChange
2019-05-06 12:39:11,179 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileModified
2019-05-06 12:39:11,180 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintStarted
2019-05-06 12:39:11,183 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileAdded
2019-05-06 12:39:11,184 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ConnectivityChanged
2019-05-06 12:39:11,186 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterReset
2019-05-06 12:39:11,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintFailed
2019-05-06 12:39:11,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connected
2019-05-06 12:39:11,191 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:11,193 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PositionUpdate
2019-05-06 12:39:11,195 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingStarted
2019-05-06 12:39:11,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileDeleted
2019-05-06 12:39:11,199 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferStarted
2019-05-06 12:39:11,201 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Shutdown
2019-05-06 12:39:11,203 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileModified
2019-05-06 12:39:11,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterStateChanged
2019-05-06 12:39:11,205 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieFailed
2019-05-06 12:39:11,206 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileAdded
2019-05-06 12:39:11,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:11,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintPaused
2019-05-06 12:39:11,212 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileSelected
2019-05-06 12:39:11,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelled
2019-05-06 12:39:11,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisStarted
2019-05-06 12:39:11,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderAdded
2019-05-06 12:39:11,218 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:11,220 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Conveyor
2019-05-06 12:39:11,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connecting
2019-05-06 12:39:11,225 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnecting
2019-05-06 12:39:11,226 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferFailed
2019-05-06 12:39:11,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientClosed
2019-05-06 12:39:11,230 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event EStop
2019-05-06 12:39:11,232 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileRemoved
2019-05-06 12:39:11,233 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollStart
2019-05-06 12:39:11,235 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Home
2019-05-06 12:39:11,237 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:11,239 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Cooling
2019-05-06 12:39:11,240 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Upload
2019-05-06 12:39:11,243 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:11,244 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Error
2019-05-06 12:39:11,245 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Dwelling
2019-05-06 12:39:11,246 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileAdded
2019-05-06 12:39:11,247 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:11,247 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Startup
2019-05-06 12:39:11,248 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureStart
2019-05-06 12:39:11,249 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientOpened
2019-05-06 12:39:11,250 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Alert
2019-05-06 12:39:11,250 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferDone
2019-05-06 12:39:11,251 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelling
2019-05-06 12:39:11,252 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieDone
2019-05-06 12:39:11,253 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureDone
2019-05-06 12:39:11,255 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:39:11,270 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:11,273 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:39:11,289 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:39:11,814 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:39:11,909 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:11,912 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:39:13,061 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:39:13,062 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:39:13,063 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:39:13,065 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:39:13,066 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:39:13,067 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:39:13,068 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:39:13,069 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:39:13,070 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:39:13,072 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:39:13,073 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:39:13,074 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:39:13,075 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:39:13,076 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:39:13,077 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:39:13,096 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:39:13,515 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:39:13,516 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:39:13,518 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:39:13,519 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:39:13,520 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:39:13,521 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:39:13,522 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:39:13,523 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:39:13,524 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:39:13,525 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:39:13,526 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:39:13,527 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:39:13,528 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:39:13,529 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:39:13,531 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:39:13,549 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:39:13,651 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:39:13,654 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:13,655 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:13,655 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:13,656 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:13,658 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:13,659 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:13,660 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:13,657 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOn
2019-05-06 12:39:13,661 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FirmwareData
2019-05-06 12:39:13,663 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileDeselected
2019-05-06 12:39:13,664 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollEnd
2019-05-06 12:39:13,665 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderRemoved
2019-05-06 12:39:13,666 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOff
2019-05-06 12:39:13,666 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintDone
2019-05-06 12:39:13,667 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:13,668 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event UpdatedFiles
2019-05-06 12:39:13,669 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:13,670 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingCancelled
2019-05-06 12:39:13,671 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnected
2019-05-06 12:39:13,671 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SettingsUpdated
2019-05-06 12:39:13,672 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ToolChange
2019-05-06 12:39:13,673 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieRendering
2019-05-06 12:39:13,675 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:13,676 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisFinished
2019-05-06 12:39:13,677 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingFailed
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event RegisteredMessageReceived
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintResumed
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Eject
2019-05-06 12:39:13,679 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Waiting
2019-05-06 12:39:13,679 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureFailed
2019-05-06 12:39:13,680 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingDone
2019-05-06 12:39:13,681 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileDeleted
2019-05-06 12:39:13,681 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ZChange
2019-05-06 12:39:13,682 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileModified
2019-05-06 12:39:13,684 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintStarted
2019-05-06 12:39:13,686 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileAdded
2019-05-06 12:39:13,687 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ConnectivityChanged
2019-05-06 12:39:13,688 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterReset
2019-05-06 12:39:13,690 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintFailed
2019-05-06 12:39:13,690 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connected
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PositionUpdate
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingStarted
2019-05-06 12:39:13,693 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileDeleted
2019-05-06 12:39:13,694 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferStarted
2019-05-06 12:39:13,695 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Shutdown
2019-05-06 12:39:13,696 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileModified
2019-05-06 12:39:13,697 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterStateChanged
2019-05-06 12:39:13,699 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieFailed
2019-05-06 12:39:13,700 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileAdded
2019-05-06 12:39:13,700 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:13,701 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintPaused
2019-05-06 12:39:13,702 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileSelected
2019-05-06 12:39:13,703 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelled
2019-05-06 12:39:13,704 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisStarted
2019-05-06 12:39:13,706 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderAdded
2019-05-06 12:39:13,706 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:13,707 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Conveyor
2019-05-06 12:39:13,708 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connecting
2019-05-06 12:39:13,709 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnecting
2019-05-06 12:39:13,710 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferFailed
2019-05-06 12:39:13,711 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientClosed
2019-05-06 12:39:13,712 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event EStop
2019-05-06 12:39:13,713 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileRemoved
2019-05-06 12:39:13,714 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollStart
2019-05-06 12:39:13,715 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Home
2019-05-06 12:39:13,716 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:13,717 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Cooling
2019-05-06 12:39:13,717 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Upload
2019-05-06 12:39:13,718 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:13,719 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Error
2019-05-06 12:39:13,720 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Dwelling
2019-05-06 12:39:13,721 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileAdded
2019-05-06 12:39:13,722 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:13,723 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Startup
2019-05-06 12:39:13,724 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureStart
2019-05-06 12:39:13,725 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientOpened
2019-05-06 12:39:13,726 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Alert
2019-05-06 12:39:13,727 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferDone
2019-05-06 12:39:13,727 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelling
2019-05-06 12:39:13,728 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieDone
2019-05-06 12:39:13,729 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureDone
2019-05-06 12:39:43,950 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:44,012 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOn
2019-05-06 12:39:44,013 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:44,016 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>>
2019-05-06 12:39:44,015 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FirmwareData
2019-05-06 12:39:44,019 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:44,022 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:44,021 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileDeselected
2019-05-06 12:39:44,024 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:44,025 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollEnd
2019-05-06 12:39:44,027 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:44,030 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderRemoved
2019-05-06 12:39:44,031 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:44,033 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOff
2019-05-06 12:39:44,035 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:44,036 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintDone
2019-05-06 12:39:44,041 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:44,043 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event UpdatedFiles
2019-05-06 12:39:44,044 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:44,044 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingCancelled
2019-05-06 12:39:44,045 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnected
2019-05-06 12:39:44,046 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SettingsUpdated
2019-05-06 12:39:44,047 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ToolChange
2019-05-06 12:39:44,048 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieRendering
2019-05-06 12:39:44,049 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:44,050 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisFinished
2019-05-06 12:39:44,051 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingFailed
2019-05-06 12:39:44,052 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event RegisteredMessageReceived
2019-05-06 12:39:44,052 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintResumed
2019-05-06 12:39:44,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Eject
2019-05-06 12:39:44,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Waiting
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureFailed
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingDone
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileDeleted
2019-05-06 12:39:44,057 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ZChange
2019-05-06 12:39:44,059 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileModified
2019-05-06 12:39:44,060 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintStarted
2019-05-06 12:39:44,061 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileAdded
2019-05-06 12:39:44,061 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ConnectivityChanged
2019-05-06 12:39:44,063 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterReset
2019-05-06 12:39:44,063 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintFailed
2019-05-06 12:39:44,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connected
2019-05-06 12:39:44,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:44,065 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PositionUpdate
2019-05-06 12:39:44,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingStarted
2019-05-06 12:39:44,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileDeleted
2019-05-06 12:39:44,068 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferStarted
2019-05-06 12:39:44,069 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Shutdown
2019-05-06 12:39:44,070 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileModified
2019-05-06 12:39:44,071 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterStateChanged
2019-05-06 12:39:44,071 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieFailed
2019-05-06 12:39:44,072 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileAdded
2019-05-06 12:39:44,073 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:44,074 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintPaused
2019-05-06 12:39:44,075 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileSelected
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelled
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisStarted
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderAdded
2019-05-06 12:39:44,077 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:44,079 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Conveyor
2019-05-06 12:39:44,080 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connecting
2019-05-06 12:39:44,081 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnecting
2019-05-06 12:39:44,082 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferFailed
2019-05-06 12:39:44,083 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientClosed
2019-05-06 12:39:44,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event EStop
2019-05-06 12:39:44,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileRemoved
2019-05-06 12:39:44,085 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollStart
2019-05-06 12:39:44,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Home
2019-05-06 12:39:44,087 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:44,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Cooling
2019-05-06 12:39:44,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Upload
2019-05-06 12:39:44,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:44,091 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Error
2019-05-06 12:39:44,092 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Dwelling
2019-05-06 12:39:44,093 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileAdded
2019-05-06 12:39:44,094 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:44,095 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Startup
2019-05-06 12:39:44,095 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureStart
2019-05-06 12:39:44,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientOpened
2019-05-06 12:39:44,097 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Alert
2019-05-06 12:39:44,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferDone
2019-05-06 12:39:44,099 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelling
2019-05-06 12:39:44,100 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieDone
2019-05-06 12:39:44,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureDone
2019-05-06 12:39:44,102 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:39:44,120 - octoprint.server.util.flask - DEBUG - Added network 127.0.0.0/8 to localNetworks
2019-05-06 12:39:44,122 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 127.0.0.0/8 = ::ffff:127.0.0.0/104 to localNetworks
2019-05-06 12:39:44,124 - octoprint.server.util.flask - DEBUG - Added network 129.247.189.0/24 to localNetworks
2019-05-06 12:39:44,125 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 129.247.189.0/24 = ::ffff:129.247.189.0/120 to localNetworks
2019-05-06 12:39:44,127 - octoprint.server.util.flask - DEBUG - Added network 10.97.0.0/16 to localNetworks
2019-05-06 12:39:44,128 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 10.97.0.0/16 = ::ffff:10.97.0.0/112 to localNetworks
2019-05-06 12:39:44,129 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:39:44,131 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=ZgJ4KS9skN,created=95.2191192)
2019-05-06 12:39:44,133 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:39:44,149 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:39:44,208 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 11.96ms
2019-05-06 12:39:44,646 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:39:44,725 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:39:44,727 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=WuJbi8kNvj,created=95.814748469)
2019-05-06 12:39:44,728 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:39:45,867 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:39:45,870 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:45,871 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:45,871 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:45,872 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:45,872 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOn
2019-05-06 12:39:45,872 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:45,873 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FirmwareData
2019-05-06 12:39:45,874 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:45,875 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileDeselected
2019-05-06 12:39:45,876 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollEnd
2019-05-06 12:39:45,877 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:45,878 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderRemoved
2019-05-06 12:39:45,881 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOff
2019-05-06 12:39:45,881 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintDone
2019-05-06 12:39:45,882 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:45,883 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event UpdatedFiles
2019-05-06 12:39:45,884 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataStatisticsUpdated
2019-05-06 12:39:45,885 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingCancelled
2019-05-06 12:39:45,886 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnected
2019-05-06 12:39:45,887 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SettingsUpdated
2019-05-06 12:39:45,888 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ToolChange
2019-05-06 12:39:45,889 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieRendering
2019-05-06 12:39:45,890 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:45,891 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisFinished
2019-05-06 12:39:45,891 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingFailed
2019-05-06 12:39:45,892 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event RegisteredMessageReceived
2019-05-06 12:39:45,893 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintResumed
2019-05-06 12:39:45,894 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Eject
2019-05-06 12:39:45,895 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Waiting
2019-05-06 12:39:45,896 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureFailed
2019-05-06 12:39:45,896 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingDone
2019-05-06 12:39:45,897 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileDeleted
2019-05-06 12:39:45,898 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ZChange
2019-05-06 12:39:45,899 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileModified
2019-05-06 12:39:45,900 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintStarted
2019-05-06 12:39:45,901 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileAdded
2019-05-06 12:39:45,902 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ConnectivityChanged
2019-05-06 12:39:45,903 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterReset
2019-05-06 12:39:45,904 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintFailed
2019-05-06 12:39:45,904 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connected
2019-05-06 12:39:45,906 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:45,907 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PositionUpdate
2019-05-06 12:39:45,908 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingStarted
2019-05-06 12:39:45,909 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileDeleted
2019-05-06 12:39:45,910 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferStarted
2019-05-06 12:39:45,911 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Shutdown
2019-05-06 12:39:45,912 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileModified
2019-05-06 12:39:45,912 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterStateChanged
2019-05-06 12:39:45,914 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieFailed
2019-05-06 12:39:45,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileAdded
2019-05-06 12:39:45,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:45,917 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintPaused
2019-05-06 12:39:45,918 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileSelected
2019-05-06 12:39:45,918 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelled
2019-05-06 12:39:45,919 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisStarted
2019-05-06 12:39:45,920 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderAdded
2019-05-06 12:39:45,921 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:45,922 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Conveyor
2019-05-06 12:39:45,923 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connecting
2019-05-06 12:39:45,924 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnecting
2019-05-06 12:39:45,925 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferFailed
2019-05-06 12:39:45,926 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientClosed
2019-05-06 12:39:45,927 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event EStop
2019-05-06 12:39:45,927 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileRemoved
2019-05-06 12:39:45,928 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollStart
2019-05-06 12:39:45,929 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Home
2019-05-06 12:39:45,930 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:45,931 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Cooling
2019-05-06 12:39:45,932 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Upload
2019-05-06 12:39:45,933 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:45,934 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Error
2019-05-06 12:39:45,935 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Dwelling
2019-05-06 12:39:45,936 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileAdded
2019-05-06 12:39:45,936 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:45,937 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Startup
2019-05-06 12:39:45,938 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureStart
2019-05-06 12:39:45,939 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientOpened
2019-05-06 12:39:45,941 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Alert
2019-05-06 12:39:45,941 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferDone
2019-05-06 12:39:45,942 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelling
2019-05-06 12:39:45,946 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieDone
2019-05-06 12:39:45,947 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureDone
2019-05-06 12:40:18,025 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=WuJbi8kNvj,created=95.814748469)
2019-05-06 12:40:18,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOn
2019-05-06 12:40:18,085 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:18,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FirmwareData
2019-05-06 12:40:18,088 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>>
2019-05-06 12:40:18,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileDeselected
2019-05-06 12:40:18,092 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:18,093 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollEnd
2019-05-06 12:40:18,095 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:18,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderRemoved
2019-05-06 12:40:18,097 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:18,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOff
2019-05-06 12:40:18,101 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:18,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintDone
2019-05-06 12:40:18,104 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:18,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_printer_safety_check_warning
2019-05-06 12:40:18,108 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:18,109 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event UpdatedFiles
2019-05-06 12:40:18,112 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataStatisticsUpdated
2019-05-06 12:40:18,114 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingCancelled
2019-05-06 12:40:18,116 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnected
2019-05-06 12:40:18,118 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SettingsUpdated
2019-05-06 12:40:18,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ToolChange
2019-05-06 12:40:18,121 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieRendering
2019-05-06 12:40:18,124 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pi_support_throttle_state
2019-05-06 12:40:18,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisFinished
2019-05-06 12:40:18,127 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingFailed
2019-05-06 12:40:18,129 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event RegisteredMessageReceived
2019-05-06 12:40:18,132 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintResumed
2019-05-06 12:40:18,133 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Eject
2019-05-06 12:40:18,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Waiting
2019-05-06 12:40:18,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureFailed
2019-05-06 12:40:18,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingDone
2019-05-06 12:40:18,142 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileDeleted
2019-05-06 12:40:18,143 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ZChange
2019-05-06 12:40:18,145 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileModified
2019-05-06 12:40:18,148 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintStarted
2019-05-06 12:40:18,150 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileAdded
2019-05-06 12:40:18,151 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ConnectivityChanged
2019-05-06 12:40:18,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterReset
2019-05-06 12:40:18,153 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintFailed
2019-05-06 12:40:18,155 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connected
2019-05-06 12:40:18,157 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:40:18,159 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PositionUpdate
2019-05-06 12:40:18,160 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingStarted
2019-05-06 12:40:18,162 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileDeleted
2019-05-06 12:40:18,164 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferStarted
2019-05-06 12:40:18,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Shutdown
2019-05-06 12:40:18,167 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileModified
2019-05-06 12:40:18,168 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterStateChanged
2019-05-06 12:40:18,170 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieFailed
2019-05-06 12:40:18,172 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileAdded
2019-05-06 12:40:18,173 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:40:18,176 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintPaused
2019-05-06 12:40:18,177 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileSelected
2019-05-06 12:40:18,179 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelled
2019-05-06 12:40:18,182 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisStarted
2019-05-06 12:40:18,184 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderAdded
2019-05-06 12:40:18,185 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:40:18,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Conveyor
2019-05-06 12:40:18,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connecting
2019-05-06 12:40:18,192 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnecting
2019-05-06 12:40:18,194 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferFailed
2019-05-06 12:40:18,195 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientClosed
2019-05-06 12:40:18,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event EStop
2019-05-06 12:40:18,198 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileRemoved
2019-05-06 12:40:18,201 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollStart
2019-05-06 12:40:18,203 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Home
2019-05-06 12:40:18,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:40:18,207 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Cooling
2019-05-06 12:40:18,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Upload
2019-05-06 12:40:18,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:40:18,211 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Error
2019-05-06 12:40:18,212 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Dwelling
2019-05-06 12:40:18,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileAdded
2019-05-06 12:40:18,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_failed
2019-05-06 12:40:18,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Startup
2019-05-06 12:40:18,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureStart
2019-05-06 12:40:18,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientOpened
2019-05-06 12:40:18,219 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Alert
2019-05-06 12:40:18,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferDone
2019-05-06 12:40:18,225 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelling
2019-05-06 12:40:18,227 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieDone
2019-05-06 12:40:18,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureDone
2019-05-06 12:40:18,231 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:40:18,254 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:40:18,257 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=hBDgwnrRCW,created=129.344853029)
2019-05-06 12:40:18,259 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:40:18,273 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:40:18,328 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 11.63ms
2019-05-06 12:40:18,357 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:40:18,485 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:40:18,486 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:18,486 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:18,488 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:18,489 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:18,491 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:18,493 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:18,493 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:18,813 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:40:18,891 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:40:18,893 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=MNwJ7iWPoF,created=129.981162682)
2019-05-06 12:40:18,896 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:40:20,030 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:40:20,033 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:20,034 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:20,034 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:20,036 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:20,040 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOn
2019-05-06 12:40:20,041 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FirmwareData
2019-05-06 12:40:20,042 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileDeselected
2019-05-06 12:40:20,043 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollEnd
2019-05-06 12:40:20,044 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderRemoved
2019-05-06 12:40:20,045 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOff
2019-05-06 12:40:20,046 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintDone
2019-05-06 12:40:20,046 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_printer_safety_check_warning
2019-05-06 12:40:20,047 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event UpdatedFiles
2019-05-06 12:40:20,048 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataStatisticsUpdated
2019-05-06 12:40:20,049 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingCancelled
2019-05-06 12:40:20,050 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnected
2019-05-06 12:40:20,051 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SettingsUpdated
2019-05-06 12:40:20,052 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ToolChange
2019-05-06 12:40:20,053 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieRendering
2019-05-06 12:40:20,054 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pi_support_throttle_state
2019-05-06 12:40:20,055 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisFinished
2019-05-06 12:40:20,056 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingFailed
2019-05-06 12:40:20,057 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event RegisteredMessageReceived
2019-05-06 12:40:20,058 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintResumed
2019-05-06 12:40:20,059 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Eject
2019-05-06 12:40:20,059 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Waiting
2019-05-06 12:40:20,060 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureFailed
2019-05-06 12:40:20,061 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingDone
2019-05-06 12:40:20,062 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileDeleted
2019-05-06 12:40:20,063 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ZChange
2019-05-06 12:40:20,064 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileModified
2019-05-06 12:40:20,065 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintStarted
2019-05-06 12:40:20,066 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileAdded
2019-05-06 12:40:20,067 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ConnectivityChanged
2019-05-06 12:40:20,068 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterReset
2019-05-06 12:40:20,069 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintFailed
2019-05-06 12:40:20,070 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connected
2019-05-06 12:40:20,070 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:40:20,071 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PositionUpdate
2019-05-06 12:40:20,072 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingStarted
2019-05-06 12:40:20,073 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileDeleted
2019-05-06 12:40:20,074 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferStarted
2019-05-06 12:40:20,075 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Shutdown
2019-05-06 12:40:20,076 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileModified
2019-05-06 12:40:20,077 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterStateChanged
2019-05-06 12:40:20,078 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieFailed
2019-05-06 12:40:20,079 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileAdded
2019-05-06 12:40:20,080 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:40:20,080 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintPaused
2019-05-06 12:40:20,081 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileSelected
2019-05-06 12:40:20,082 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelled
2019-05-06 12:40:20,083 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisStarted
2019-05-06 12:40:20,084 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderAdded
2019-05-06 12:40:20,085 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:40:20,086 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Conveyor
2019-05-06 12:40:20,087 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connecting
2019-05-06 12:40:20,088 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnecting
2019-05-06 12:40:20,089 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferFailed
2019-05-06 12:40:20,090 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientClosed
2019-05-06 12:40:20,091 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event EStop
2019-05-06 12:40:20,092 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileRemoved
2019-05-06 12:40:20,093 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollStart
2019-05-06 12:40:20,093 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Home
2019-05-06 12:40:20,094 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:40:20,095 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Cooling
2019-05-06 12:40:20,096 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Upload
2019-05-06 12:40:20,097 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:40:20,098 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Error
2019-05-06 12:40:20,099 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Dwelling
2019-05-06 12:40:20,100 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileAdded
2019-05-06 12:40:20,101 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_failed
2019-05-06 12:40:20,102 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Startup
2019-05-06 12:40:20,103 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureStart
2019-05-06 12:40:20,104 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientOpened
2019-05-06 12:40:20,105 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Alert
2019-05-06 12:40:20,106 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferDone
2019-05-06 12:40:20,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelling
2019-05-06 12:40:20,108 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieDone
2019-05-06 12:40:20,109 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureDone
2019-05-06 12:52:48,077 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:52:48,077 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>>
2019-05-06 12:52:48,078 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:52:48,079 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:52:48,079 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:52:48,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOn
2019-05-06 12:52:48,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FirmwareData
2019-05-06 12:52:48,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileDeselected
2019-05-06 12:52:48,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollEnd
2019-05-06 12:52:48,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderRemoved
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:52:48,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOff
2019-05-06 12:52:48,102 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintDone
2019-05-06 12:52:48,104 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_printer_safety_check_warning
2019-05-06 12:52:48,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event UpdatedFiles
2019-05-06 12:52:48,106 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataStatisticsUpdated
2019-05-06 12:52:48,111 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingCancelled
2019-05-06 12:52:48,113 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnected
2019-05-06 12:52:48,115 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SettingsUpdated
2019-05-06 12:52:48,116 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ToolChange
2019-05-06 12:52:48,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieRendering
2019-05-06 12:52:48,121 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pi_support_throttle_state
2019-05-06 12:52:48,123 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisFinished
2019-05-06 12:52:48,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingFailed
2019-05-06 12:52:48,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event RegisteredMessageReceived
2019-05-06 12:52:48,136 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintResumed
2019-05-06 12:52:48,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Eject
2019-05-06 12:52:48,138 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Waiting
2019-05-06 12:52:48,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureFailed
2019-05-06 12:52:48,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingDone
2019-05-06 12:52:48,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileDeleted
2019-05-06 12:52:48,144 - octoprint.server - DEBUG - SIGTERM received...
2019-05-06 12:52:48,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ZChange
2019-05-06 12:52:48,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileModified
2019-05-06 12:52:48,153 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintStarted
2019-05-06 12:52:48,155 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileAdded
2019-05-06 12:52:48,156 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ConnectivityChanged
2019-05-06 12:52:48,158 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterReset
2019-05-06 12:52:48,162 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintFailed
2019-05-06 12:52:48,163 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connected
2019-05-06 12:52:48,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:52:48,178 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PositionUpdate
2019-05-06 12:52:48,181 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingStarted
2019-05-06 12:52:48,183 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileDeleted
2019-05-06 12:52:48,185 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferStarted
2019-05-06 12:52:48,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Shutdown
2019-05-06 12:52:48,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileModified
2019-05-06 12:52:48,193 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterStateChanged
2019-05-06 12:52:48,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieFailed
2019-05-06 12:52:48,199 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileAdded
2019-05-06 12:52:48,202 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:52:48,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintPaused
2019-05-06 12:52:48,206 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileSelected
2019-05-06 12:52:48,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelled
2019-05-06 12:52:48,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisStarted
2019-05-06 12:52:48,211 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderAdded
2019-05-06 12:52:48,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:52:48,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Conveyor
2019-05-06 12:52:48,215 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connecting
2019-05-06 12:52:48,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnecting
2019-05-06 12:52:48,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferFailed
2019-05-06 12:52:48,218 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientClosed
2019-05-06 12:52:48,219 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event EStop
2019-05-06 12:52:48,221 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileRemoved
2019-05-06 12:52:48,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollStart
2019-05-06 12:52:48,223 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Home
2019-05-06 12:52:48,224 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:52:48,224 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Cooling
2019-05-06 12:52:48,226 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Upload
2019-05-06 12:52:48,227 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:52:48,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Error
2019-05-06 12:52:48,229 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Dwelling
2019-05-06 12:52:48,230 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileAdded
2019-05-06 12:52:48,231 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_failed
2019-05-06 12:52:48,232 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Startup
2019-05-06 12:52:48,234 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureStart
2019-05-06 12:52:48,236 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientOpened
2019-05-06 12:52:48,239 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Alert
2019-05-06 12:52:48,241 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferDone
2019-05-06 12:52:48,242 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelling
2019-05-06 12:52:48,243 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieDone
2019-05-06 12:52:48,244 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureDone
2019-05-06 12:52:48,245 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:52:48,247 - octoprint.server - DEBUG - Shutting down tornado's IOLoop...
2019-05-06 12:52:48,249 - octoprint.server - DEBUG - Tornado's IOLoop stopped
2019-05-06 12:52:48,251 - octoprint.server - INFO - Shutting down...
2019-05-06 12:52:48,396 - octoprint.plugin - DEBUG - Calling on_shutdown on discovery
2019-05-06 12:52:48,397 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-05-06 12:52:48,399 - octoprint.events.fire - DEBUG - Firing event: Shutdown (Payload: None)
2019-05-06 12:52:48,403 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:52:48,407 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:52:48,408 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:52:48,408 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:52:48,412 - octoprint.plugin - DEBUG - Calling on_shutdown on tracking
2019-05-06 12:52:48,414 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:52:48,415 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:52:48,418 - octoprint.events - INFO - Event loop shut down
2019-05-06 12:52:48,419 - octoprint.server - INFO - Goodbye!
2019-05-06 12:52:55,257 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:52:55,259 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc3
2019-05-06 12:52:55,260 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:52:55,364 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-05-06 12:52:55,364 - octoprint.startup - INFO - Blacklist processing done
2019-05-06 12:52:55,436 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:52:55,439 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for logging from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging/__init__.py
2019-05-06 12:52:57,023 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for corewizard from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard/__init__.py
2019-05-06 12:52:57,037 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for backup from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup/__init__.py
2019-05-06 12:52:57,107 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for announcements from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py
2019-05-06 12:52:57,293 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for action_command_prompt from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt/__init__.py
2019-05-06 12:52:57,310 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for appkeys from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys/__init__.py
2019-05-06 12:52:57,335 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for discovery from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery/__init__.py
2019-05-06 12:52:57,391 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for forcelogin from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py
2019-05-06 12:52:57,404 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pi_support from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py
2019-05-06 12:52:57,423 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for virtual_printer from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer/__init__.py
2019-05-06 12:52:57,429 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for printer_safety_check from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check/__init__.py
2019-05-06 12:52:57,447 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for softwareupdate from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/__init__.py
2019-05-06 12:52:57,543 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for errortracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking/__init__.py
2019-05-06 12:52:57,558 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for tracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking/__init__.py
2019-05-06 12:52:57,584 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pluginmanager from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py
2019-05-06 12:52:57,877 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for systemcommandeditor from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor/__init__.py
2019-05-06 12:52:57,881 - octoprint.plugin.core - INFO - Plugin System Command Editor (0.3.2) is disabled.
2019-05-06 12:52:57,904 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for flowspeedrename from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename/__init__.py
2019-05-06 12:52:57,907 - octoprint.plugin.core - INFO - Plugin Rename Flowspeed & Feedrate (0.1.0) is disabled.
2019-05-06 12:52:57,919 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for navbartemp from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py
2019-05-06 12:52:57,926 - octoprint.plugin.core - INFO - Plugin Navbar Temperature Plugin (0.11) is disabled.
2019-05-06 12:52:57,938 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for autoselect from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect/__init__.py
2019-05-06 12:52:57,943 - octoprint.plugin.core - INFO - Plugin Autoselect Plugin (0.2.0) is disabled.
2019-05-06 12:52:58,153 - octoprint.plugin.core - DEBUG - Loaded plugin logging: Logging
2019-05-06 12:52:58,155 - octoprint.plugin.core - DEBUG - Loaded plugin corewizard: Core Wizard
2019-05-06 12:52:58,156 - octoprint.plugin.core - DEBUG - Loaded plugin backup: Backup & Restore
2019-05-06 12:52:58,157 - octoprint.plugin.core - DEBUG - Loaded plugin announcements: Announcement Plugin
2019-05-06 12:52:58,158 - octoprint.plugin.core - DEBUG - Loaded plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:52:58,159 - octoprint.plugin.core - DEBUG - Loaded plugin appkeys: Application Keys Plugin
2019-05-06 12:52:58,160 - octoprint.plugin.core - DEBUG - Loaded plugin discovery: Discovery
2019-05-06 12:52:58,161 - octoprint.plugin.core - DEBUG - Loaded plugin forcelogin: Force Login
2019-05-06 12:52:58,162 - octoprint.plugin.core - DEBUG - Loaded plugin pi_support: Pi Support Plugin
2019-05-06 12:52:58,164 - octoprint.plugin.core - DEBUG - Loaded plugin virtual_printer: Virtual Printer
2019-05-06 12:52:58,165 - octoprint.plugin.core - DEBUG - Loaded plugin printer_safety_check: Printer Safety Check
2019-05-06 12:52:58,166 - octoprint.plugin.core - DEBUG - Loaded plugin softwareupdate: Software Update
2019-05-06 12:52:58,167 - octoprint.plugin.core - DEBUG - Loaded plugin errortracking: Error Tracking
2019-05-06 12:52:58,168 - octoprint.plugin.core - DEBUG - Loaded plugin tracking: Anonymous Usage Tracking
2019-05-06 12:52:58,169 - octoprint.plugin.core - DEBUG - Loaded plugin pluginmanager: Plugin Manager
2019-05-06 12:52:58,171 - octoprint.plugin.core - DEBUG - Enabled plugin logging: Logging
2019-05-06 12:52:58,172 - octoprint.plugin.core - DEBUG - Enabled plugin corewizard: Core Wizard
2019-05-06 12:52:58,175 - octoprint.plugin.core - DEBUG - Enabled plugin backup: Backup & Restore
2019-05-06 12:52:58,176 - octoprint.plugin.core - DEBUG - Enabled plugin announcements: Announcement Plugin
2019-05-06 12:52:58,178 - octoprint.plugin.core - DEBUG - Enabled plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:52:58,179 - octoprint.plugin.core - DEBUG - Enabled plugin appkeys: Application Keys Plugin
2019-05-06 12:52:58,181 - octoprint.plugin.core - DEBUG - Enabled plugin discovery: Discovery
2019-05-06 12:52:58,182 - octoprint.plugin.core - DEBUG - Enabled plugin forcelogin: Force Login
2019-05-06 12:52:58,184 - octoprint.plugin.core - DEBUG - Enabled plugin pi_support: Pi Support Plugin
2019-05-06 12:52:58,188 - octoprint.plugin.core - DEBUG - Enabled plugin virtual_printer: Virtual Printer
2019-05-06 12:52:58,190 - octoprint.plugin.core - DEBUG - Enabled plugin printer_safety_check: Printer Safety Check
2019-05-06 12:52:58,192 - octoprint.plugin.core - DEBUG - Enabled plugin softwareupdate: Software Update
2019-05-06 12:52:58,245 - octoprint.plugins.errortracking - INFO - Initialized error tracking
2019-05-06 12:52:58,248 - octoprint.plugin.core - DEBUG - Enabled plugin errortracking: Error Tracking
2019-05-06 12:52:58,249 - octoprint.plugin.core - DEBUG - Enabled plugin tracking: Anonymous Usage Tracking
2019-05-06 12:52:58,251 - octoprint.plugin.core - DEBUG - Enabled plugin pluginmanager: Plugin Manager
2019-05-06 12:52:58,252 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:52:58,523 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-05-06 12:52:58,574 - octoprint.server - DEBUG - Starting intermediary server on http://127.0.0.1:5000
2019-05-06 12:52:58,577 - octoprint.server - INFO - Intermediary server started
2019-05-06 12:52:58,578 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:52:58,829 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:52:58,863 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-05-06 12:52:59,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-05-06 12:52:59,406 - octoprint.events - DEBUG - Subscribed listener <function on_settings_update at 0x73993570> for event SettingsUpdated
2019-05-06 12:52:59,426 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataAnalysisFinished of <octoprint.printer.standard.Printer object at 0x737fb050>> for event MetadataAnalysisFinished
2019-05-06 12:52:59,427 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataStatisticsUpdated of <octoprint.printer.standard.Printer object at 0x737fb050>> for event MetadataStatisticsUpdated
2019-05-06 12:52:59,429 - octoprint.server - DEBUG - Registered event throttle_state of plugin pi_support as Events.PLUGIN_PI_SUPPORT_THROTTLE_STATE = "plugin_pi_support_throttle_state"
2019-05-06 12:52:59,430 - octoprint.server - DEBUG - Registered event install_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_INSTALL_PLUGIN = "plugin_pluginmanager_install_plugin"
2019-05-06 12:52:59,431 - octoprint.server - DEBUG - Registered event uninstall_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_UNINSTALL_PLUGIN = "plugin_pluginmanager_uninstall_plugin"
2019-05-06 12:52:59,432 - octoprint.server - DEBUG - Registered event enable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_ENABLE_PLUGIN = "plugin_pluginmanager_enable_plugin"
2019-05-06 12:52:59,433 - octoprint.server - DEBUG - Registered event disable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_DISABLE_PLUGIN = "plugin_pluginmanager_disable_plugin"
2019-05-06 12:52:59,434 - octoprint.server - DEBUG - Registered event warning of plugin printer_safety_check as Events.PLUGIN_PRINTER_SAFETY_CHECK_WARNING = "plugin_printer_safety_check_warning"
2019-05-06 12:52:59,436 - octoprint.server - DEBUG - Registered event update_succeeded of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_SUCCEEDED = "plugin_softwareupdate_update_succeeded"
2019-05-06 12:52:59,437 - octoprint.server - DEBUG - Registered event update_failed of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_FAILED = "plugin_softwareupdate_update_failed"
2019-05-06 12:52:59,439 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin tracking
2019-05-06 12:52:59,442 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin logging
2019-05-06 12:52:59,445 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin appkeys
2019-05-06 12:52:59,448 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin virtual_printer
2019-05-06 12:52:59,452 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin action_command_prompt
2019-05-06 12:52:59,454 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin corewizard
2019-05-06 12:52:59,457 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pi_support
2019-05-06 12:52:59,459 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin printer_safety_check
2019-05-06 12:52:59,543 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-05-06 12:52:59,544 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin softwareupdate
2019-05-06 12:52:59,547 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin errortracking
2019-05-06 12:52:59,549 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin announcements
2019-05-06 12:52:59,552 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin forcelogin
2019-05-06 12:53:01,909 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:53:03,843 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-05-06 12:53:03,844 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:53:03,845 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:53:03,847 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pluginmanager
2019-05-06 12:53:03,850 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin backup
2019-05-06 12:53:03,853 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin discovery
2019-05-06 12:53:03,854 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-05-06 12:53:03,866 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| !Autoselect Plugin (0.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Rename Flowspeed & Feedrate (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !System Command Editor (0.3.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-05-06 12:53:03,885 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 904245248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.13.0
| python:
| pip: 19.0.3
| version: 2.7.9
| virtualenv: /home/pi/oprint
2019-05-06 12:53:03,892 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,895 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,896 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,898 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:03,917 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:03,918 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:04,053 - octoprint.server - DEBUG - Registered API of plugin announcements under URL prefix /plugin/announcements
2019-05-06 12:53:04,077 - octoprint.server - DEBUG - Registered API of plugin appkeys under URL prefix /plugin/appkeys
2019-05-06 12:53:04,104 - octoprint.server - DEBUG - Registered API of plugin backup under URL prefix /plugin/backup
2019-05-06 12:53:04,122 - octoprint.server - DEBUG - Registered API of plugin corewizard under URL prefix /plugin/corewizard
2019-05-06 12:53:04,141 - octoprint.server - DEBUG - Registered API of plugin discovery under URL prefix /plugin/discovery
2019-05-06 12:53:04,157 - octoprint.server - DEBUG - Registered API of plugin logging under URL prefix /plugin/logging
2019-05-06 12:53:04,176 - octoprint.server - DEBUG - Registered API of plugin pluginmanager under URL prefix /plugin/pluginmanager
2019-05-06 12:53:04,197 - octoprint.server - DEBUG - Registered API of plugin softwareupdate under URL prefix /plugin/softwareupdate
2019-05-06 12:53:04,213 - octoprint.server - DEBUG - Registered assets of plugin action_command_prompt under URL prefix /plugin/action_command_prompt
2019-05-06 12:53:04,228 - octoprint.server - DEBUG - Registered assets of plugin errortracking under URL prefix /plugin/errortracking
2019-05-06 12:53:04,244 - octoprint.server - DEBUG - Registered assets of plugin forcelogin under URL prefix /plugin/forcelogin
2019-05-06 12:53:04,259 - octoprint.server - DEBUG - Registered assets of plugin pi_support under URL prefix /plugin/pi_support
2019-05-06 12:53:04,275 - octoprint.server - DEBUG - Registered assets of plugin printer_safety_check under URL prefix /plugin/printer_safety_check
2019-05-06 12:53:04,290 - octoprint.server - DEBUG - Registered assets of plugin tracking under URL prefix /plugin/tracking
2019-05-06 12:53:04,475 - octoprint.server - DEBUG - Adding additional route /plugin/backup/download/(.*) handled by handler <class 'octoprint.server.util.tornado.LargeResponseHandler'> and with additional arguments {'access_validation': <function f at 0x72f701b0>, 'as_attachment': True, 'path_validation': <function f at 0x72f70170>, 'path': '/home/pi/.octoprint/data/backup'}
2019-05-06 12:53:04,495 - octoprint.server - DEBUG - Adding maximum body size of 1073741824B for POST requests to /plugin/backup/restore)
2019-05-06 12:53:04,496 - octoprint.server - DEBUG - Adding maximum body size of 52428800B for POST requests to /plugin/pluginmanager/upload_archive)
2019-05-06 12:53:04,497 - octoprint.server - INFO - Shutting down intermediary server...
2019-05-06 12:53:04,661 - octoprint.server - INFO - Intermediary server shut down
2019-05-06 12:53:04,665 - octoprint.events - INFO - Processing startup event, this is our first event
2019-05-06 12:53:04,667 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-05-06 12:53:04,668 - octoprint.events.fire - DEBUG - Firing event: Startup (Payload: None)
2019-05-06 12:53:04,671 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:04,673 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-05-06 12:53:04,679 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:04,683 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:04,697 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:04,748 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:04,732 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-05-06 12:53:04,749 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:04,764 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-05-06 12:53:04,768 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-05-06 12:53:04,770 - octoprint.plugin - DEBUG - Calling on_startup on announcements
2019-05-06 12:53:04,771 - octoprint.plugin - DEBUG - Calling on_startup on backup
2019-05-06 12:53:04,771 - octoprint.plugin - DEBUG - Calling on_startup on discovery
2019-05-06 12:53:04,783 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _http._tcp
2019-05-06 12:53:04,795 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _octoprint._tcp
2019-05-06 12:53:04,797 - octoprint.plugin - DEBUG - Calling on_startup on pi_support
2019-05-06 12:53:04,830 - octoprint.plugins.pi_support - ERROR - Got an error while trying to fetch the current throttle state via "/usr/bin/vcgencmd get_throttled"
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 263, in _check_throttled_state
state = get_vcgencmd_throttled_state(command)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 140, in get_vcgencmd_throttled_state
raise ValueError("cannot parse \"{}\" output: {}".format(command, output))
ValueError: cannot parse "/usr/bin/vcgencmd get_throttled" output: error=1 error_msg="Command not registered"
2019-05-06 12:53:04,899 - octoprint.plugin - DEBUG - Calling on_startup on pluginmanager
2019-05-06 12:53:04,900 - octoprint.plugin - DEBUG - Calling on_startup on softwareupdate
2019-05-06 12:53:04,908 - octoprint.plugin - DEBUG - Calling on_startup on tracking
2019-05-06 12:53:04,913 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-05-06 12:53:04,916 - octoprint.plugin - DEBUG - Calling on_after_startup on announcements
2019-05-06 12:53:04,923 - octoprint.plugin - DEBUG - Calling on_after_startup on backup
2019-05-06 12:53:04,927 - octoprint.plugin - DEBUG - Calling on_after_startup on discovery
2019-05-06 12:53:04,929 - octoprint.plugin - DEBUG - Calling on_after_startup on pi_support
2019-05-06 12:53:04,931 - octoprint.plugin - DEBUG - Calling on_after_startup on pluginmanager
2019-05-06 12:53:04,983 - octoprint.plugin - DEBUG - Calling on_after_startup on softwareupdate
2019-05-06 12:53:05,072 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-05-06 12:53:05,182 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-05-06 12:53:07,254 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:53:07,255 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:53:07,256 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:53:07,340 - octoprint.plugin - DEBUG - Calling on_after_startup on tracking
2019-05-06 12:53:07,511 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://129.247.189.242:30141/'}
2019-05-06 12:53:07,524 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:07,525 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:07,527 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:07,528 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:07,529 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:07,530 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:07,531 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:07,532 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:07,533 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:07,534 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:07,536 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:07,537 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:07,538 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:07,539 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:07,540 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:07,570 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:07,860 - octoprint.server.views - DEBUG - Forcing rendering of view _default
2019-05-06 12:53:08,165 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:08,632 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:08,755 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:08,757 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:08,782 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:53:08,786 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:08,786 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOn
2019-05-06 12:53:08,791 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:08,796 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:08,796 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:08,801 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FirmwareData
2019-05-06 12:53:08,802 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileDeselected
2019-05-06 12:53:08,805 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollEnd
2019-05-06 12:53:08,806 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderRemoved
2019-05-06 12:53:08,808 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOff
2019-05-06 12:53:08,810 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintDone
2019-05-06 12:53:08,816 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:08,818 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event UpdatedFiles
2019-05-06 12:53:08,821 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataStatisticsUpdated
2019-05-06 12:53:08,823 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingCancelled
2019-05-06 12:53:08,825 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnected
2019-05-06 12:53:08,826 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SettingsUpdated
2019-05-06 12:53:08,828 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ToolChange
2019-05-06 12:53:08,836 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieRendering
2019-05-06 12:53:08,839 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:08,841 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisFinished
2019-05-06 12:53:08,843 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingFailed
2019-05-06 12:53:08,844 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event RegisteredMessageReceived
2019-05-06 12:53:08,845 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintResumed
2019-05-06 12:53:08,847 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Eject
2019-05-06 12:53:08,848 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Waiting
2019-05-06 12:53:08,852 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureFailed
2019-05-06 12:53:08,853 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingDone
2019-05-06 12:53:08,854 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileDeleted
2019-05-06 12:53:08,857 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ZChange
2019-05-06 12:53:08,858 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileModified
2019-05-06 12:53:08,860 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintStarted
2019-05-06 12:53:08,861 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileAdded
2019-05-06 12:53:08,862 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ConnectivityChanged
2019-05-06 12:53:08,864 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterReset
2019-05-06 12:53:08,868 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintFailed
2019-05-06 12:53:08,869 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connected
2019-05-06 12:53:08,870 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:08,872 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PositionUpdate
2019-05-06 12:53:08,874 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingStarted
2019-05-06 12:53:08,876 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileDeleted
2019-05-06 12:53:08,877 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferStarted
2019-05-06 12:53:08,878 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Shutdown
2019-05-06 12:53:08,882 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileModified
2019-05-06 12:53:08,883 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterStateChanged
2019-05-06 12:53:08,885 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieFailed
2019-05-06 12:53:08,887 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileAdded
2019-05-06 12:53:08,888 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:08,890 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintPaused
2019-05-06 12:53:08,892 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileSelected
2019-05-06 12:53:08,893 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelled
2019-05-06 12:53:08,897 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisStarted
2019-05-06 12:53:08,899 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderAdded
2019-05-06 12:53:08,901 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:08,905 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Conveyor
2019-05-06 12:53:08,909 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connecting
2019-05-06 12:53:08,911 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnecting
2019-05-06 12:53:08,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferFailed
2019-05-06 12:53:08,916 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientClosed
2019-05-06 12:53:08,946 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event EStop
2019-05-06 12:53:09,034 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileRemoved
2019-05-06 12:53:09,068 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollStart
2019-05-06 12:53:09,198 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Home
2019-05-06 12:53:09,247 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:09,263 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Cooling
2019-05-06 12:53:09,264 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Upload
2019-05-06 12:53:09,273 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:09,275 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Error
2019-05-06 12:53:09,277 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Dwelling
2019-05-06 12:53:09,277 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileAdded
2019-05-06 12:53:09,278 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:09,279 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Startup
2019-05-06 12:53:09,284 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureStart
2019-05-06 12:53:09,286 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientOpened
2019-05-06 12:53:09,331 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Alert
2019-05-06 12:53:09,333 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferDone
2019-05-06 12:53:09,338 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelling
2019-05-06 12:53:09,339 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieDone
2019-05-06 12:53:09,340 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureDone
2019-05-06 12:53:12,429 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOn
2019-05-06 12:53:12,430 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FirmwareData
2019-05-06 12:53:12,429 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:12,431 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileDeselected
2019-05-06 12:53:12,446 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>>
2019-05-06 12:53:12,448 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:12,449 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollEnd
2019-05-06 12:53:12,450 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:12,451 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderRemoved
2019-05-06 12:53:12,453 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:12,455 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:12,455 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOff
2019-05-06 12:53:12,456 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:12,459 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:12,458 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintDone
2019-05-06 12:53:12,461 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:12,462 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event UpdatedFiles
2019-05-06 12:53:12,472 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataStatisticsUpdated
2019-05-06 12:53:12,504 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingCancelled
2019-05-06 12:53:12,507 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnected
2019-05-06 12:53:12,509 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SettingsUpdated
2019-05-06 12:53:12,511 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ToolChange
2019-05-06 12:53:12,512 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieRendering
2019-05-06 12:53:12,514 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:12,515 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisFinished
2019-05-06 12:53:12,523 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingFailed
2019-05-06 12:53:12,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event RegisteredMessageReceived
2019-05-06 12:53:12,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintResumed
2019-05-06 12:53:12,527 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Eject
2019-05-06 12:53:12,528 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Waiting
2019-05-06 12:53:12,529 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureFailed
2019-05-06 12:53:12,531 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingDone
2019-05-06 12:53:12,532 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileDeleted
2019-05-06 12:53:12,533 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ZChange
2019-05-06 12:53:12,534 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileModified
2019-05-06 12:53:12,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintStarted
2019-05-06 12:53:12,536 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileAdded
2019-05-06 12:53:12,537 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ConnectivityChanged
2019-05-06 12:53:12,539 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterReset
2019-05-06 12:53:12,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintFailed
2019-05-06 12:53:12,541 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connected
2019-05-06 12:53:12,549 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:12,551 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PositionUpdate
2019-05-06 12:53:12,552 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingStarted
2019-05-06 12:53:12,553 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileDeleted
2019-05-06 12:53:12,554 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferStarted
2019-05-06 12:53:12,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Shutdown
2019-05-06 12:53:12,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileModified
2019-05-06 12:53:12,556 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterStateChanged
2019-05-06 12:53:12,557 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieFailed
2019-05-06 12:53:12,560 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileAdded
2019-05-06 12:53:12,561 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:12,562 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintPaused
2019-05-06 12:53:12,563 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileSelected
2019-05-06 12:53:12,564 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelled
2019-05-06 12:53:12,586 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisStarted
2019-05-06 12:53:12,588 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderAdded
2019-05-06 12:53:12,589 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:12,590 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Conveyor
2019-05-06 12:53:12,591 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connecting
2019-05-06 12:53:12,592 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnecting
2019-05-06 12:53:12,594 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferFailed
2019-05-06 12:53:12,596 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientClosed
2019-05-06 12:53:12,599 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event EStop
2019-05-06 12:53:12,599 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileRemoved
2019-05-06 12:53:12,620 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollStart
2019-05-06 12:53:12,621 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Home
2019-05-06 12:53:12,622 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:12,623 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Cooling
2019-05-06 12:53:12,625 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Upload
2019-05-06 12:53:12,626 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:12,627 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Error
2019-05-06 12:53:12,628 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Dwelling
2019-05-06 12:53:12,630 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileAdded
2019-05-06 12:53:12,631 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:12,632 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Startup
2019-05-06 12:53:12,660 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureStart
2019-05-06 12:53:12,661 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientOpened
2019-05-06 12:53:12,663 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Alert
2019-05-06 12:53:12,701 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferDone
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelling
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieDone
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureDone
2019-05-06 12:53:12,824 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:12,916 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:12,917 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:12,918 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:12,919 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:12,930 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:12,931 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:12,933 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:12,934 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:12,936 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:12,938 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:12,939 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:12,940 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:12,941 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:12,943 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:12,944 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:12,992 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:16,835 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:16,837 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:16,855 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:53:16,902 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:23,695 - octoprint.server.util.flask - DEBUG - Needed 15.53s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:23,704 - octoprint.server.preemptive_cache - INFO - ... done in 16.19s
2019-05-06 12:53:23,707 - octoprint.server.util.flask - DEBUG - Needed 6.80s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:24,754 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:24,837 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:24,839 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:26,086 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:53:26,090 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:26,090 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:26,092 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:26,092 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:26,094 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOn
2019-05-06 12:53:26,095 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FirmwareData
2019-05-06 12:53:26,097 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileDeselected
2019-05-06 12:53:26,098 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollEnd
2019-05-06 12:53:26,099 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderRemoved
2019-05-06 12:53:26,101 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOff
2019-05-06 12:53:26,102 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintDone
2019-05-06 12:53:26,103 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:26,104 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event UpdatedFiles
2019-05-06 12:53:26,105 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataStatisticsUpdated
2019-05-06 12:53:26,106 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingCancelled
2019-05-06 12:53:26,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnected
2019-05-06 12:53:26,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SettingsUpdated
2019-05-06 12:53:26,109 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ToolChange
2019-05-06 12:53:26,110 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieRendering
2019-05-06 12:53:26,111 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:26,112 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisFinished
2019-05-06 12:53:26,113 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingFailed
2019-05-06 12:53:26,114 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event RegisteredMessageReceived
2019-05-06 12:53:26,115 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintResumed
2019-05-06 12:53:26,116 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Eject
2019-05-06 12:53:26,116 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Waiting
2019-05-06 12:53:26,117 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureFailed
2019-05-06 12:53:26,118 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingDone
2019-05-06 12:53:26,119 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileDeleted
2019-05-06 12:53:26,120 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ZChange
2019-05-06 12:53:26,121 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileModified
2019-05-06 12:53:26,122 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintStarted
2019-05-06 12:53:26,123 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileAdded
2019-05-06 12:53:26,124 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ConnectivityChanged
2019-05-06 12:53:26,125 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterReset
2019-05-06 12:53:26,126 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintFailed
2019-05-06 12:53:26,127 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connected
2019-05-06 12:53:26,128 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:26,129 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PositionUpdate
2019-05-06 12:53:26,130 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingStarted
2019-05-06 12:53:26,131 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileDeleted
2019-05-06 12:53:26,131 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferStarted
2019-05-06 12:53:26,133 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Shutdown
2019-05-06 12:53:26,134 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileModified
2019-05-06 12:53:26,135 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterStateChanged
2019-05-06 12:53:26,136 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieFailed
2019-05-06 12:53:26,137 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileAdded
2019-05-06 12:53:26,137 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:26,138 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintPaused
2019-05-06 12:53:26,139 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileSelected
2019-05-06 12:53:26,140 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelled
2019-05-06 12:53:26,141 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisStarted
2019-05-06 12:53:26,142 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderAdded
2019-05-06 12:53:26,143 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:26,144 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Conveyor
2019-05-06 12:53:26,144 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connecting
2019-05-06 12:53:26,145 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnecting
2019-05-06 12:53:26,146 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferFailed
2019-05-06 12:53:26,147 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientClosed
2019-05-06 12:53:26,149 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event EStop
2019-05-06 12:53:26,150 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileRemoved
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollStart
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Home
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:26,152 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Cooling
2019-05-06 12:53:26,153 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Upload
2019-05-06 12:53:26,153 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:26,155 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Error
2019-05-06 12:53:26,156 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Dwelling
2019-05-06 12:53:26,157 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileAdded
2019-05-06 12:53:26,158 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:26,158 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Startup
2019-05-06 12:53:26,160 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureStart
2019-05-06 12:53:26,161 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientOpened
2019-05-06 12:53:26,162 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Alert
2019-05-06 12:53:26,162 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferDone
2019-05-06 12:53:26,163 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelling
2019-05-06 12:53:26,164 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieDone
2019-05-06 12:53:26,165 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureDone
2019-05-06 12:53:33,447 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:33,503 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOn
2019-05-06 12:53:33,504 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FirmwareData
2019-05-06 12:53:33,505 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileDeselected
2019-05-06 12:53:33,506 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:33,508 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollEnd
2019-05-06 12:53:33,509 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>>
2019-05-06 12:53:33,513 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderRemoved
2019-05-06 12:53:33,514 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:33,515 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOff
2019-05-06 12:53:33,516 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:33,517 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintDone
2019-05-06 12:53:33,518 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:33,519 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:33,520 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:33,521 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event UpdatedFiles
2019-05-06 12:53:33,522 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:33,523 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataStatisticsUpdated
2019-05-06 12:53:33,523 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:33,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingCancelled
2019-05-06 12:53:33,526 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnected
2019-05-06 12:53:33,528 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SettingsUpdated
2019-05-06 12:53:33,529 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ToolChange
2019-05-06 12:53:33,530 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieRendering
2019-05-06 12:53:33,532 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:33,533 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisFinished
2019-05-06 12:53:33,534 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingFailed
2019-05-06 12:53:33,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event RegisteredMessageReceived
2019-05-06 12:53:33,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintResumed
2019-05-06 12:53:33,536 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Eject
2019-05-06 12:53:33,537 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Waiting
2019-05-06 12:53:33,538 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureFailed
2019-05-06 12:53:33,539 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingDone
2019-05-06 12:53:33,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileDeleted
2019-05-06 12:53:33,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ZChange
2019-05-06 12:53:33,541 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileModified
2019-05-06 12:53:33,542 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintStarted
2019-05-06 12:53:33,543 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileAdded
2019-05-06 12:53:33,544 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ConnectivityChanged
2019-05-06 12:53:33,546 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterReset
2019-05-06 12:53:33,547 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintFailed
2019-05-06 12:53:33,548 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connected
2019-05-06 12:53:33,549 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:33,550 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PositionUpdate
2019-05-06 12:53:33,551 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingStarted
2019-05-06 12:53:33,552 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileDeleted
2019-05-06 12:53:33,553 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferStarted
2019-05-06 12:53:33,554 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Shutdown
2019-05-06 12:53:33,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileModified
2019-05-06 12:53:33,556 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterStateChanged
2019-05-06 12:53:33,557 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieFailed
2019-05-06 12:53:33,558 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileAdded
2019-05-06 12:53:33,558 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:33,559 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintPaused
2019-05-06 12:53:33,560 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileSelected
2019-05-06 12:53:33,561 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelled
2019-05-06 12:53:33,562 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisStarted
2019-05-06 12:53:33,563 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderAdded
2019-05-06 12:53:33,564 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:33,565 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Conveyor
2019-05-06 12:53:33,566 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connecting
2019-05-06 12:53:33,567 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnecting
2019-05-06 12:53:33,568 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferFailed
2019-05-06 12:53:33,569 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientClosed
2019-05-06 12:53:33,570 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event EStop
2019-05-06 12:53:33,571 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileRemoved
2019-05-06 12:53:33,572 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollStart
2019-05-06 12:53:33,573 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Home
2019-05-06 12:53:33,574 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:33,575 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Cooling
2019-05-06 12:53:33,576 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Upload
2019-05-06 12:53:33,577 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:33,578 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Error
2019-05-06 12:53:33,579 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Dwelling
2019-05-06 12:53:33,580 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileAdded
2019-05-06 12:53:33,581 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:33,582 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Startup
2019-05-06 12:53:33,582 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureStart
2019-05-06 12:53:33,583 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientOpened
2019-05-06 12:53:33,584 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Alert
2019-05-06 12:53:33,585 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferDone
2019-05-06 12:53:33,586 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelling
2019-05-06 12:53:33,587 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieDone
2019-05-06 12:53:33,588 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureDone
2019-05-06 12:53:33,589 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:33,614 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:forcelogin:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:34,141 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:34,143 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:34,144 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:34,145 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:34,146 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:34,147 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:34,148 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:34,149 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:34,151 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:34,152 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:34,153 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:34,154 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:34,155 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:34,156 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:34,158 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:34,176 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:34,181 - octoprint.server.util.flask - DEBUG - Needed 0.57s to render / (key: ui:forcelogin:http://129.247.189.242:30141/:de)
2019-05-06 12:53:34,206 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 12.46ms
2019-05-06 12:53:34,454 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:42,967 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:42,972 - octoprint.server.api - INFO - Actively logging in user pi from 10.97.3.15
2019-05-06 12:53:42,997 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:42,998 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:43,002 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:43,003 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:43,004 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:43,005 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:43,008 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:43,010 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:43,041 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:43,045 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:53:43,075 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:53:43,162 - octoprint.server.util.flask - DEBUG - Serving entry for / from cache (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:43,654 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:43,744 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:43,746 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:53:44,846 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:44,848 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:44,849 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:44,850 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:44,851 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:44,853 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:44,854 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:44,855 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:44,856 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:44,857 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:44,858 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:44,860 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:44,861 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:44,862 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:44,863 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:44,882 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:45,338 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:45,339 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:45,341 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:45,343 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:45,344 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:45,345 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:45,346 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:45,347 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:45,348 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:45,349 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:45,351 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:45,352 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:45,353 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:45,354 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:45,355 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:45,374 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:45,474 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:53:45,477 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:45,478 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:45,481 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:45,481 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOn
2019-05-06 12:53:45,483 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:45,484 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FirmwareData
2019-05-06 12:53:45,486 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileDeselected
2019-05-06 12:53:45,487 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollEnd
2019-05-06 12:53:45,488 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderRemoved
2019-05-06 12:53:45,489 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOff
2019-05-06 12:53:45,489 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintDone
2019-05-06 12:53:45,490 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:45,491 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event UpdatedFiles
2019-05-06 12:53:45,492 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataStatisticsUpdated
2019-05-06 12:53:45,493 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingCancelled
2019-05-06 12:53:45,494 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnected
2019-05-06 12:53:45,496 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SettingsUpdated
2019-05-06 12:53:45,496 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ToolChange
2019-05-06 12:53:45,497 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieRendering
2019-05-06 12:53:45,498 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:45,499 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisFinished
2019-05-06 12:53:45,500 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingFailed
2019-05-06 12:53:45,501 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event RegisteredMessageReceived
2019-05-06 12:53:45,502 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintResumed
2019-05-06 12:53:45,503 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Eject
2019-05-06 12:53:45,504 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Waiting
2019-05-06 12:53:45,504 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureFailed
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingDone
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileDeleted
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ZChange
2019-05-06 12:53:45,506 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileModified
2019-05-06 12:53:45,509 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintStarted
2019-05-06 12:53:45,510 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileAdded
2019-05-06 12:53:45,511 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ConnectivityChanged
2019-05-06 12:53:45,512 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterReset
2019-05-06 12:53:45,513 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintFailed
2019-05-06 12:53:45,514 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connected
2019-05-06 12:53:45,515 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:45,516 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PositionUpdate
2019-05-06 12:53:45,517 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingStarted
2019-05-06 12:53:45,517 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileDeleted
2019-05-06 12:53:45,518 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferStarted
2019-05-06 12:53:45,519 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Shutdown
2019-05-06 12:53:45,520 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileModified
2019-05-06 12:53:45,521 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterStateChanged
2019-05-06 12:53:45,522 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieFailed
2019-05-06 12:53:45,522 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileAdded
2019-05-06 12:53:45,524 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:45,525 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintPaused
2019-05-06 12:53:45,526 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileSelected
2019-05-06 12:53:45,527 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelled
2019-05-06 12:53:45,528 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisStarted
2019-05-06 12:53:45,529 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderAdded
2019-05-06 12:53:45,530 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:45,531 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Conveyor
2019-05-06 12:53:45,532 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connecting
2019-05-06 12:53:45,533 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnecting
2019-05-06 12:53:45,534 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferFailed
2019-05-06 12:53:45,535 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientClosed
2019-05-06 12:53:45,536 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event EStop
2019-05-06 12:53:45,537 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileRemoved
2019-05-06 12:53:45,538 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollStart
2019-05-06 12:53:45,540 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Home
2019-05-06 12:53:45,541 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:45,541 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Cooling
2019-05-06 12:53:45,543 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Upload
2019-05-06 12:53:45,543 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:45,545 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Error
2019-05-06 12:53:45,546 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Dwelling
2019-05-06 12:53:45,546 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileAdded
2019-05-06 12:53:45,547 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:45,548 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Startup
2019-05-06 12:53:45,549 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureStart
2019-05-06 12:53:45,550 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientOpened
2019-05-06 12:53:45,551 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Alert
2019-05-06 12:53:45,552 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferDone
2019-05-06 12:53:45,553 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelling
2019-05-06 12:53:45,554 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieDone
2019-05-06 12:53:45,555 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureDone
2019-05-06 12:53:54,986 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOn
2019-05-06 12:53:54,987 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:54,988 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FirmwareData
2019-05-06 12:53:54,989 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>>
2019-05-06 12:53:54,991 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileDeselected
2019-05-06 12:53:54,993 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:54,996 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollEnd
2019-05-06 12:53:54,997 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:55,000 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderRemoved
2019-05-06 12:53:55,001 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:55,004 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOff
2019-05-06 12:53:55,005 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:55,007 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintDone
2019-05-06 12:53:55,008 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:55,009 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:55,010 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:55,012 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event UpdatedFiles
2019-05-06 12:53:55,017 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataStatisticsUpdated
2019-05-06 12:53:55,019 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingCancelled
2019-05-06 12:53:55,020 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnected
2019-05-06 12:53:55,023 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SettingsUpdated
2019-05-06 12:53:55,025 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ToolChange
2019-05-06 12:53:55,026 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieRendering
2019-05-06 12:53:55,027 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:55,030 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisFinished
2019-05-06 12:53:55,031 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingFailed
2019-05-06 12:53:55,033 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event RegisteredMessageReceived
2019-05-06 12:53:55,035 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintResumed
2019-05-06 12:53:55,037 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Eject
2019-05-06 12:53:55,038 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Waiting
2019-05-06 12:53:55,041 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureFailed
2019-05-06 12:53:55,043 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingDone
2019-05-06 12:53:55,045 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileDeleted
2019-05-06 12:53:55,047 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ZChange
2019-05-06 12:53:55,049 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileModified
2019-05-06 12:53:55,050 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintStarted
2019-05-06 12:53:55,053 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileAdded
2019-05-06 12:53:55,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ConnectivityChanged
2019-05-06 12:53:55,057 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterReset
2019-05-06 12:53:55,058 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintFailed
2019-05-06 12:53:55,060 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connected
2019-05-06 12:53:55,062 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:55,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PositionUpdate
2019-05-06 12:53:55,065 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingStarted
2019-05-06 12:53:55,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileDeleted
2019-05-06 12:53:55,069 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferStarted
2019-05-06 12:53:55,070 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Shutdown
2019-05-06 12:53:55,072 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileModified
2019-05-06 12:53:55,074 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterStateChanged
2019-05-06 12:53:55,075 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieFailed
2019-05-06 12:53:55,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileAdded
2019-05-06 12:53:55,079 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:55,081 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintPaused
2019-05-06 12:53:55,083 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileSelected
2019-05-06 12:53:55,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelled
2019-05-06 12:53:55,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisStarted
2019-05-06 12:53:55,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderAdded
2019-05-06 12:53:55,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:55,091 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Conveyor
2019-05-06 12:53:55,094 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connecting
2019-05-06 12:53:55,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnecting
2019-05-06 12:53:55,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferFailed
2019-05-06 12:53:55,100 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientClosed
2019-05-06 12:53:55,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event EStop
2019-05-06 12:53:55,102 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileRemoved
2019-05-06 12:53:55,103 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollStart
2019-05-06 12:53:55,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Home
2019-05-06 12:53:55,108 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:55,110 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Cooling
2019-05-06 12:53:55,111 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Upload
2019-05-06 12:53:55,113 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:55,115 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Error
2019-05-06 12:53:55,117 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Dwelling
2019-05-06 12:53:55,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileAdded
2019-05-06 12:53:55,120 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:55,123 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Startup
2019-05-06 12:53:55,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureStart
2019-05-06 12:53:55,127 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientOpened
2019-05-06 12:53:55,128 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Alert
2019-05-06 12:53:55,130 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferDone
2019-05-06 12:53:55,132 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelling
2019-05-06 12:53:55,134 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieDone
2019-05-06 12:53:55,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureDone
2019-05-06 12:53:55,136 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
|
ValueError
|
def passive_login():
logger = logging.getLogger(__name__)
if octoprint.server.userManager.enabled:
user = octoprint.server.userManager.login_user(flask_login.current_user)
else:
user = flask_login.current_user
remote_address = get_remote_address(flask.request)
ip_check_enabled = settings().getBoolean(["server", "ipCheck", "enabled"])
ip_check_trusted = settings().get(["server", "ipCheck", "trustedSubnets"])
if user is not None and not user.is_anonymous() and user.is_active():
flask_principal.identity_changed.send(
flask.current_app._get_current_object(),
identity=flask_principal.Identity(user.get_id()),
)
if hasattr(user, "session"):
flask.session["usersession.id"] = user.session
flask.g.user = user
logger.info(
"Passively logging in user {} from {}".format(user.get_id(), remote_address)
)
response = user.asDict()
response["_is_external_client"] = ip_check_enabled and not is_lan_address(
remote_address, additional_private=ip_check_trusted
)
return flask.jsonify(response)
elif (
settings().getBoolean(["accessControl", "autologinLocal"])
and settings().get(["accessControl", "autologinAs"]) is not None
and settings().get(["accessControl", "localNetworks"]) is not None
and not "active_logout" in flask.request.cookies
):
autologin_as = settings().get(["accessControl", "autologinAs"])
local_networks = _local_networks()
logger.debug(
"Checking if remote address {} is in localNetworks ({!r})".format(
remote_address, local_networks
)
)
try:
if netaddr.IPAddress(remote_address) in local_networks:
user = octoprint.server.userManager.findUser(autologin_as)
if user is not None and user.is_active():
user = octoprint.server.userManager.login_user(user)
flask.session["usersession.id"] = user.session
flask.g.user = user
flask_login.login_user(user)
flask_principal.identity_changed.send(
flask.current_app._get_current_object(),
identity=flask_principal.Identity(user.get_id()),
)
logger.info(
"Passively logging in user {} from {} via autologin".format(
user.get_id(), remote_address
)
)
response = user.asDict()
response["_is_external_client"] = (
ip_check_enabled
and not is_lan_address(
remote_address, additional_private=ip_check_trusted
)
)
return flask.jsonify(response)
except:
logger.exception(
"Could not autologin user {} for networks {}".format(
autologin_as, local_networks
)
)
return "", 204
|
def passive_login():
logger = logging.getLogger(__name__)
if octoprint.server.userManager.enabled:
user = octoprint.server.userManager.login_user(flask_login.current_user)
else:
user = flask_login.current_user
remote_address = get_remote_address(flask.request)
ip_check_enabled = settings().getBoolean(["server", "ipCheck", "enabled"])
ip_check_trusted = settings().get(["server", "ipCheck", "trustedSubnets"])
if user is not None and not user.is_anonymous() and user.is_active():
flask_principal.identity_changed.send(
flask.current_app._get_current_object(),
identity=flask_principal.Identity(user.get_id()),
)
if hasattr(user, "session"):
flask.session["usersession.id"] = user.session
flask.g.user = user
logger.info(
"Passively logging in user {} from {}".format(user.get_id(), remote_address)
)
response = user.asDict()
response["_is_external_client"] = ip_check_enabled and not is_lan_address(
remote_address, additional_private=ip_check_trusted
)
return flask.jsonify(response)
elif (
settings().getBoolean(["accessControl", "autologinLocal"])
and settings().get(["accessControl", "autologinAs"]) is not None
and settings().get(["accessControl", "localNetworks"]) is not None
):
autologin_as = settings().get(["accessControl", "autologinAs"])
local_networks = _local_networks()
logger.debug(
"Checking if remote address {} is in localNetworks ({!r})".format(
remote_address, local_networks
)
)
try:
if netaddr.IPAddress(remote_address) in local_networks:
user = octoprint.server.userManager.findUser(autologin_as)
if user is not None and user.is_active():
user = octoprint.server.userManager.login_user(user)
flask.session["usersession.id"] = user.session
flask.g.user = user
flask_login.login_user(user)
flask_principal.identity_changed.send(
flask.current_app._get_current_object(),
identity=flask_principal.Identity(user.get_id()),
)
logger.info(
"Passively logging in user {} from {} via autologin".format(
user.get_id(), remote_address
)
)
response = user.asDict()
response["_is_external_client"] = (
ip_check_enabled
and not is_lan_address(
remote_address, additional_private=ip_check_trusted
)
)
return flask.jsonify(response)
except:
logger.exception(
"Could not autologin user {} for networks {}".format(
autologin_as, local_networks
)
)
return "", 204
|
https://github.com/OctoPrint/OctoPrint/issues/3142
|
2019-05-06 12:38:21,168 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:38:21,170 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc3
2019-05-06 12:38:21,171 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:38:21,277 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-05-06 12:38:21,278 - octoprint.startup - INFO - Blacklist processing done
2019-05-06 12:38:21,349 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:38:21,352 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for logging from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging/__init__.py
2019-05-06 12:38:22,945 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for corewizard from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard/__init__.py
2019-05-06 12:38:22,959 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for backup from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup/__init__.py
2019-05-06 12:38:23,028 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for announcements from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py
2019-05-06 12:38:23,212 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for action_command_prompt from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt/__init__.py
2019-05-06 12:38:23,228 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for appkeys from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys/__init__.py
2019-05-06 12:38:23,254 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for discovery from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery/__init__.py
2019-05-06 12:38:23,310 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for forcelogin from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py
2019-05-06 12:38:23,323 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pi_support from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py
2019-05-06 12:38:23,341 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for virtual_printer from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer/__init__.py
2019-05-06 12:38:23,348 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for printer_safety_check from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check/__init__.py
2019-05-06 12:38:23,365 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for softwareupdate from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/__init__.py
2019-05-06 12:38:23,463 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for errortracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking/__init__.py
2019-05-06 12:38:23,478 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for tracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking/__init__.py
2019-05-06 12:38:23,503 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pluginmanager from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py
2019-05-06 12:38:23,793 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for systemcommandeditor from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor/__init__.py
2019-05-06 12:38:23,797 - octoprint.plugin.core - INFO - Plugin System Command Editor (0.3.2) is disabled.
2019-05-06 12:38:23,821 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for flowspeedrename from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename/__init__.py
2019-05-06 12:38:23,824 - octoprint.plugin.core - INFO - Plugin Rename Flowspeed & Feedrate (0.1.0) is disabled.
2019-05-06 12:38:23,836 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for navbartemp from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py
2019-05-06 12:38:23,843 - octoprint.plugin.core - INFO - Plugin Navbar Temperature Plugin (0.11) is disabled.
2019-05-06 12:38:23,855 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for autoselect from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect/__init__.py
2019-05-06 12:38:23,860 - octoprint.plugin.core - INFO - Plugin Autoselect Plugin (0.2.0) is disabled.
2019-05-06 12:38:23,871 - octoprint.plugin.core - DEBUG - Loaded plugin logging: Logging
2019-05-06 12:38:23,872 - octoprint.plugin.core - DEBUG - Loaded plugin corewizard: Core Wizard
2019-05-06 12:38:23,873 - octoprint.plugin.core - DEBUG - Loaded plugin backup: Backup & Restore
2019-05-06 12:38:23,874 - octoprint.plugin.core - DEBUG - Loaded plugin announcements: Announcement Plugin
2019-05-06 12:38:23,875 - octoprint.plugin.core - DEBUG - Loaded plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:38:23,877 - octoprint.plugin.core - DEBUG - Loaded plugin appkeys: Application Keys Plugin
2019-05-06 12:38:23,878 - octoprint.plugin.core - DEBUG - Loaded plugin discovery: Discovery
2019-05-06 12:38:23,879 - octoprint.plugin.core - DEBUG - Loaded plugin forcelogin: Force Login
2019-05-06 12:38:23,880 - octoprint.plugin.core - DEBUG - Loaded plugin pi_support: Pi Support Plugin
2019-05-06 12:38:23,881 - octoprint.plugin.core - DEBUG - Loaded plugin virtual_printer: Virtual Printer
2019-05-06 12:38:23,882 - octoprint.plugin.core - DEBUG - Loaded plugin printer_safety_check: Printer Safety Check
2019-05-06 12:38:23,883 - octoprint.plugin.core - DEBUG - Loaded plugin softwareupdate: Software Update
2019-05-06 12:38:23,884 - octoprint.plugin.core - DEBUG - Loaded plugin errortracking: Error Tracking
2019-05-06 12:38:23,885 - octoprint.plugin.core - DEBUG - Loaded plugin tracking: Anonymous Usage Tracking
2019-05-06 12:38:23,887 - octoprint.plugin.core - DEBUG - Loaded plugin pluginmanager: Plugin Manager
2019-05-06 12:38:23,888 - octoprint.plugin.core - DEBUG - Enabled plugin logging: Logging
2019-05-06 12:38:23,889 - octoprint.plugin.core - DEBUG - Enabled plugin corewizard: Core Wizard
2019-05-06 12:38:23,892 - octoprint.plugin.core - DEBUG - Enabled plugin backup: Backup & Restore
2019-05-06 12:38:23,894 - octoprint.plugin.core - DEBUG - Enabled plugin announcements: Announcement Plugin
2019-05-06 12:38:23,895 - octoprint.plugin.core - DEBUG - Enabled plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:38:23,897 - octoprint.plugin.core - DEBUG - Enabled plugin appkeys: Application Keys Plugin
2019-05-06 12:38:23,898 - octoprint.plugin.core - DEBUG - Enabled plugin discovery: Discovery
2019-05-06 12:38:23,899 - octoprint.plugin.core - DEBUG - Enabled plugin forcelogin: Force Login
2019-05-06 12:38:23,901 - octoprint.plugin.core - DEBUG - Enabled plugin pi_support: Pi Support Plugin
2019-05-06 12:38:23,905 - octoprint.plugin.core - DEBUG - Enabled plugin virtual_printer: Virtual Printer
2019-05-06 12:38:23,907 - octoprint.plugin.core - DEBUG - Enabled plugin printer_safety_check: Printer Safety Check
2019-05-06 12:38:23,909 - octoprint.plugin.core - DEBUG - Enabled plugin softwareupdate: Software Update
2019-05-06 12:38:23,963 - octoprint.plugins.errortracking - INFO - Initialized error tracking
2019-05-06 12:38:23,965 - octoprint.plugin.core - DEBUG - Enabled plugin errortracking: Error Tracking
2019-05-06 12:38:23,967 - octoprint.plugin.core - DEBUG - Enabled plugin tracking: Anonymous Usage Tracking
2019-05-06 12:38:23,969 - octoprint.plugin.core - DEBUG - Enabled plugin pluginmanager: Plugin Manager
2019-05-06 12:38:23,970 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:38:24,241 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-05-06 12:38:24,291 - octoprint.server - DEBUG - Starting intermediary server on http://127.0.0.1:5000
2019-05-06 12:38:24,294 - octoprint.server - INFO - Intermediary server started
2019-05-06 12:38:24,295 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:38:24,545 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:38:24,580 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-05-06 12:38:25,111 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-05-06 12:38:25,114 - octoprint.events - DEBUG - Subscribed listener <function on_settings_update at 0x73a14570> for event SettingsUpdated
2019-05-06 12:38:25,134 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataAnalysisFinished of <octoprint.printer.standard.Printer object at 0x73b6f3b0>> for event MetadataAnalysisFinished
2019-05-06 12:38:25,135 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataStatisticsUpdated of <octoprint.printer.standard.Printer object at 0x73b6f3b0>> for event MetadataStatisticsUpdated
2019-05-06 12:38:25,137 - octoprint.server - DEBUG - Registered event throttle_state of plugin pi_support as Events.PLUGIN_PI_SUPPORT_THROTTLE_STATE = "plugin_pi_support_throttle_state"
2019-05-06 12:38:25,138 - octoprint.server - DEBUG - Registered event install_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_INSTALL_PLUGIN = "plugin_pluginmanager_install_plugin"
2019-05-06 12:38:25,139 - octoprint.server - DEBUG - Registered event uninstall_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_UNINSTALL_PLUGIN = "plugin_pluginmanager_uninstall_plugin"
2019-05-06 12:38:25,140 - octoprint.server - DEBUG - Registered event enable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_ENABLE_PLUGIN = "plugin_pluginmanager_enable_plugin"
2019-05-06 12:38:25,141 - octoprint.server - DEBUG - Registered event disable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_DISABLE_PLUGIN = "plugin_pluginmanager_disable_plugin"
2019-05-06 12:38:25,142 - octoprint.server - DEBUG - Registered event warning of plugin printer_safety_check as Events.PLUGIN_PRINTER_SAFETY_CHECK_WARNING = "plugin_printer_safety_check_warning"
2019-05-06 12:38:25,143 - octoprint.server - DEBUG - Registered event update_succeeded of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_SUCCEEDED = "plugin_softwareupdate_update_succeeded"
2019-05-06 12:38:25,144 - octoprint.server - DEBUG - Registered event update_failed of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_FAILED = "plugin_softwareupdate_update_failed"
2019-05-06 12:38:25,147 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin tracking
2019-05-06 12:38:25,149 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin logging
2019-05-06 12:38:25,153 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin appkeys
2019-05-06 12:38:25,155 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin virtual_printer
2019-05-06 12:38:25,159 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin action_command_prompt
2019-05-06 12:38:25,162 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin corewizard
2019-05-06 12:38:25,164 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pi_support
2019-05-06 12:38:25,167 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin printer_safety_check
2019-05-06 12:38:25,252 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-05-06 12:38:25,253 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin softwareupdate
2019-05-06 12:38:25,256 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin errortracking
2019-05-06 12:38:25,258 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin announcements
2019-05-06 12:38:25,261 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin forcelogin
2019-05-06 12:38:27,772 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:38:29,702 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-05-06 12:38:29,704 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:38:29,706 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:38:29,707 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pluginmanager
2019-05-06 12:38:29,710 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin backup
2019-05-06 12:38:29,713 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin discovery
2019-05-06 12:38:29,715 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-05-06 12:38:29,726 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| !Autoselect Plugin (0.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Rename Flowspeed & Feedrate (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !System Command Editor (0.3.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-05-06 12:38:29,743 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 904245248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.13.0
| python:
| pip: 19.0.3
| version: 2.7.9
| virtualenv: /home/pi/oprint
2019-05-06 12:38:29,750 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,755 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,757 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-05-06 12:38:29,758 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,777 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,779 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:38:29,915 - octoprint.server - DEBUG - Registered API of plugin announcements under URL prefix /plugin/announcements
2019-05-06 12:38:29,938 - octoprint.server - DEBUG - Registered API of plugin appkeys under URL prefix /plugin/appkeys
2019-05-06 12:38:29,964 - octoprint.server - DEBUG - Registered API of plugin backup under URL prefix /plugin/backup
2019-05-06 12:38:29,982 - octoprint.server - DEBUG - Registered API of plugin corewizard under URL prefix /plugin/corewizard
2019-05-06 12:38:30,001 - octoprint.server - DEBUG - Registered API of plugin discovery under URL prefix /plugin/discovery
2019-05-06 12:38:30,016 - octoprint.server - DEBUG - Registered API of plugin logging under URL prefix /plugin/logging
2019-05-06 12:38:30,035 - octoprint.server - DEBUG - Registered API of plugin pluginmanager under URL prefix /plugin/pluginmanager
2019-05-06 12:38:30,055 - octoprint.server - DEBUG - Registered API of plugin softwareupdate under URL prefix /plugin/softwareupdate
2019-05-06 12:38:30,071 - octoprint.server - DEBUG - Registered assets of plugin action_command_prompt under URL prefix /plugin/action_command_prompt
2019-05-06 12:38:30,086 - octoprint.server - DEBUG - Registered assets of plugin errortracking under URL prefix /plugin/errortracking
2019-05-06 12:38:30,101 - octoprint.server - DEBUG - Registered assets of plugin forcelogin under URL prefix /plugin/forcelogin
2019-05-06 12:38:30,116 - octoprint.server - DEBUG - Registered assets of plugin pi_support under URL prefix /plugin/pi_support
2019-05-06 12:38:30,132 - octoprint.server - DEBUG - Registered assets of plugin printer_safety_check under URL prefix /plugin/printer_safety_check
2019-05-06 12:38:30,147 - octoprint.server - DEBUG - Registered assets of plugin tracking under URL prefix /plugin/tracking
2019-05-06 12:38:30,340 - octoprint.server - DEBUG - Adding additional route /plugin/backup/download/(.*) handled by handler <class 'octoprint.server.util.tornado.LargeResponseHandler'> and with additional arguments {'access_validation': <function f at 0x71cc71b0>, 'as_attachment': True, 'path_validation': <function f at 0x71cc7170>, 'path': '/home/pi/.octoprint/data/backup'}
2019-05-06 12:38:30,368 - octoprint.server - DEBUG - Adding maximum body size of 1073741824B for POST requests to /plugin/backup/restore)
2019-05-06 12:38:30,370 - octoprint.server - DEBUG - Adding maximum body size of 52428800B for POST requests to /plugin/pluginmanager/upload_archive)
2019-05-06 12:38:30,372 - octoprint.server - INFO - Shutting down intermediary server...
2019-05-06 12:38:30,418 - octoprint.server - INFO - Intermediary server shut down
2019-05-06 12:38:30,422 - octoprint.events - INFO - Processing startup event, this is our first event
2019-05-06 12:38:30,423 - octoprint.events.fire - DEBUG - Firing event: Startup (Payload: None)
2019-05-06 12:38:30,424 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:38:30,425 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:38:30,425 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:38:30,426 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:38:30,426 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:38:30,427 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:38:30,423 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-05-06 12:38:30,432 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-05-06 12:38:30,485 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-05-06 12:38:30,501 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-05-06 12:38:30,505 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-05-06 12:38:30,510 - octoprint.plugin - DEBUG - Calling on_startup on announcements
2019-05-06 12:38:30,513 - octoprint.plugin - DEBUG - Calling on_startup on backup
2019-05-06 12:38:30,515 - octoprint.plugin - DEBUG - Calling on_startup on discovery
2019-05-06 12:38:30,531 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _http._tcp
2019-05-06 12:38:30,547 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _octoprint._tcp
2019-05-06 12:38:30,550 - octoprint.plugin - DEBUG - Calling on_startup on pi_support
2019-05-06 12:38:30,564 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "Printer_1" for SSDP
2019-05-06 12:38:30,589 - octoprint.plugins.pi_support - ERROR - Got an error while trying to fetch the current throttle state via "/usr/bin/vcgencmd get_throttled"
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 263, in _check_throttled_state
state = get_vcgencmd_throttled_state(command)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 140, in get_vcgencmd_throttled_state
raise ValueError("cannot parse \"{}\" output: {}".format(command, output))
ValueError: cannot parse "/usr/bin/vcgencmd get_throttled" output: error=1 error_msg="Command not registered"
2019-05-06 12:38:30,670 - octoprint.plugin - DEBUG - Calling on_startup on pluginmanager
2019-05-06 12:38:30,673 - octoprint.plugin - DEBUG - Calling on_startup on softwareupdate
2019-05-06 12:38:30,676 - octoprint.plugin - DEBUG - Calling on_startup on tracking
2019-05-06 12:38:30,678 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-05-06 12:38:30,681 - octoprint.plugin - DEBUG - Calling on_after_startup on announcements
2019-05-06 12:38:30,695 - octoprint.plugin - DEBUG - Calling on_after_startup on backup
2019-05-06 12:38:30,702 - octoprint.plugin - DEBUG - Calling on_after_startup on discovery
2019-05-06 12:38:30,704 - octoprint.plugin - DEBUG - Calling on_after_startup on pi_support
2019-05-06 12:38:30,706 - octoprint.plugin - DEBUG - Calling on_after_startup on pluginmanager
2019-05-06 12:38:30,722 - octoprint.plugin - DEBUG - Calling on_after_startup on softwareupdate
2019-05-06 12:38:30,842 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-05-06 12:38:31,028 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-05-06 12:38:31,139 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:31,140 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:31,244 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:31,246 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:31,247 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:31,249 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:31,319 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:31,320 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:31,323 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:31,325 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:31,326 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:31,328 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:31,329 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:31,330 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:31,332 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:31,361 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:31,682 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:38:31,685 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:38:31,905 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:38:32,039 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:38:32,882 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:38:32,883 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:38:32,884 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:38:32,952 - octoprint.plugin - DEBUG - Calling on_after_startup on tracking
2019-05-06 12:38:33,194 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://129.247.189.242:30141/'}
2019-05-06 12:38:33,203 - octoprint.server.views - DEBUG - Forcing rendering of view _default
2019-05-06 12:38:33,269 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:38:34,826 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:34,827 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:34,829 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:34,830 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:34,831 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:34,832 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:34,833 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:34,835 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:34,836 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:34,837 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:34,838 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:34,840 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:34,841 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:34,848 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:34,849 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:34,873 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:50,694 - octoprint.server.util.flask - DEBUG - Needed 18.65s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:38:50,728 - octoprint.server.util.flask - DEBUG - Needed 17.46s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:38:50,740 - octoprint.server.preemptive_cache - INFO - ... done in 17.55s
2019-05-06 12:38:51,274 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:38:51,348 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:38:51,351 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:38:52,593 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:52,594 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:52,595 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:52,596 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:52,597 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:52,598 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:52,600 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:52,601 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:52,602 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:52,603 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:52,604 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:52,605 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:52,606 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:52,607 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:52,609 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:52,628 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,036 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:53,038 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:53,039 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:53,040 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:53,041 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:53,042 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:53,043 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:53,044 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:53,045 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:53,046 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:53,047 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:53,049 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:53,050 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:53,051 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:53,052 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:53,070 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,221 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:38:53,224 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:38:53,225 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:38:53,226 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:38:53,227 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:38:53,228 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:38:53,230 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:38:53,231 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:38:53,232 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:38:53,233 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:38:53,234 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:38:53,235 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:38:53,236 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:38:53,237 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:38:53,238 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:38:53,256 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:38:53,295 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:38:53,298 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOn
2019-05-06 12:38:53,299 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:38:53,300 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:38:53,300 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FirmwareData
2019-05-06 12:38:53,301 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:38:53,303 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:38:53,304 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:38:53,304 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:38:53,305 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:38:53,302 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileDeselected
2019-05-06 12:38:53,306 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollEnd
2019-05-06 12:38:53,307 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderRemoved
2019-05-06 12:38:53,309 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOff
2019-05-06 12:38:53,311 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintDone
2019-05-06 12:38:53,312 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_printer_safety_check_warning
2019-05-06 12:38:53,312 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event UpdatedFiles
2019-05-06 12:38:53,313 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataStatisticsUpdated
2019-05-06 12:38:53,314 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingCancelled
2019-05-06 12:38:53,314 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnected
2019-05-06 12:38:53,315 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SettingsUpdated
2019-05-06 12:38:53,316 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ToolChange
2019-05-06 12:38:53,316 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieRendering
2019-05-06 12:38:53,317 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pi_support_throttle_state
2019-05-06 12:38:53,319 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisFinished
2019-05-06 12:38:53,320 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingFailed
2019-05-06 12:38:53,321 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event RegisteredMessageReceived
2019-05-06 12:38:53,322 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintResumed
2019-05-06 12:38:53,323 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Eject
2019-05-06 12:38:53,324 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Waiting
2019-05-06 12:38:53,324 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureFailed
2019-05-06 12:38:53,325 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingDone
2019-05-06 12:38:53,327 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileDeleted
2019-05-06 12:38:53,328 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ZChange
2019-05-06 12:38:53,328 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileModified
2019-05-06 12:38:53,329 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintStarted
2019-05-06 12:38:53,330 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileAdded
2019-05-06 12:38:53,331 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ConnectivityChanged
2019-05-06 12:38:53,332 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterReset
2019-05-06 12:38:53,333 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintFailed
2019-05-06 12:38:53,334 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connected
2019-05-06 12:38:53,335 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PositionUpdate
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingStarted
2019-05-06 12:38:53,336 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileDeleted
2019-05-06 12:38:53,337 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferStarted
2019-05-06 12:38:53,338 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Shutdown
2019-05-06 12:38:53,339 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileModified
2019-05-06 12:38:53,340 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterStateChanged
2019-05-06 12:38:53,341 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieFailed
2019-05-06 12:38:53,342 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileAdded
2019-05-06 12:38:53,344 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:38:53,345 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintPaused
2019-05-06 12:38:53,346 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileSelected
2019-05-06 12:38:53,347 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelled
2019-05-06 12:38:53,348 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisStarted
2019-05-06 12:38:53,349 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderAdded
2019-05-06 12:38:53,350 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:38:53,350 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Conveyor
2019-05-06 12:38:53,351 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connecting
2019-05-06 12:38:53,353 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnecting
2019-05-06 12:38:53,353 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferFailed
2019-05-06 12:38:53,354 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientClosed
2019-05-06 12:38:53,355 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event EStop
2019-05-06 12:38:53,356 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileRemoved
2019-05-06 12:38:53,357 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollStart
2019-05-06 12:38:53,358 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Home
2019-05-06 12:38:53,359 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:38:53,360 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Cooling
2019-05-06 12:38:53,361 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Upload
2019-05-06 12:38:53,362 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:38:53,363 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Error
2019-05-06 12:38:53,363 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Dwelling
2019-05-06 12:38:53,364 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileAdded
2019-05-06 12:38:53,365 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:38:53,366 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Startup
2019-05-06 12:38:53,367 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureStart
2019-05-06 12:38:53,368 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientOpened
2019-05-06 12:38:53,368 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Alert
2019-05-06 12:38:53,369 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferDone
2019-05-06 12:38:53,370 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelling
2019-05-06 12:38:53,371 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieDone
2019-05-06 12:38:53,372 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureDone
2019-05-06 12:39:11,109 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:11,110 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>>
2019-05-06 12:39:11,114 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOn
2019-05-06 12:39:11,123 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:11,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FirmwareData
2019-05-06 12:39:11,126 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:11,128 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileDeselected
2019-05-06 12:39:11,129 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:11,131 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollEnd
2019-05-06 12:39:11,133 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:11,134 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderRemoved
2019-05-06 12:39:11,136 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:11,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PowerOff
2019-05-06 12:39:11,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintDone
2019-05-06 12:39:11,138 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:11,144 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:11,147 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event UpdatedFiles
2019-05-06 12:39:11,148 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:11,151 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingCancelled
2019-05-06 12:39:11,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnected
2019-05-06 12:39:11,154 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SettingsUpdated
2019-05-06 12:39:11,156 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ToolChange
2019-05-06 12:39:11,158 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieRendering
2019-05-06 12:39:11,159 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:11,161 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisFinished
2019-05-06 12:39:11,163 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingFailed
2019-05-06 12:39:11,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event RegisteredMessageReceived
2019-05-06 12:39:11,167 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintResumed
2019-05-06 12:39:11,169 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Eject
2019-05-06 12:39:11,171 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Waiting
2019-05-06 12:39:11,172 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureFailed
2019-05-06 12:39:11,174 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingDone
2019-05-06 12:39:11,176 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileDeleted
2019-05-06 12:39:11,177 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ZChange
2019-05-06 12:39:11,179 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileModified
2019-05-06 12:39:11,180 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintStarted
2019-05-06 12:39:11,183 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileAdded
2019-05-06 12:39:11,184 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ConnectivityChanged
2019-05-06 12:39:11,186 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterReset
2019-05-06 12:39:11,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintFailed
2019-05-06 12:39:11,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connected
2019-05-06 12:39:11,191 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:11,193 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PositionUpdate
2019-05-06 12:39:11,195 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingStarted
2019-05-06 12:39:11,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterProfileDeleted
2019-05-06 12:39:11,199 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferStarted
2019-05-06 12:39:11,201 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Shutdown
2019-05-06 12:39:11,203 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileModified
2019-05-06 12:39:11,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrinterStateChanged
2019-05-06 12:39:11,205 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieFailed
2019-05-06 12:39:11,206 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileAdded
2019-05-06 12:39:11,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:11,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintPaused
2019-05-06 12:39:11,212 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileSelected
2019-05-06 12:39:11,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelled
2019-05-06 12:39:11,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MetadataAnalysisStarted
2019-05-06 12:39:11,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FolderAdded
2019-05-06 12:39:11,218 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:11,220 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Conveyor
2019-05-06 12:39:11,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Connecting
2019-05-06 12:39:11,225 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Disconnecting
2019-05-06 12:39:11,226 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferFailed
2019-05-06 12:39:11,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientClosed
2019-05-06 12:39:11,230 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event EStop
2019-05-06 12:39:11,232 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event FileRemoved
2019-05-06 12:39:11,233 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PostRollStart
2019-05-06 12:39:11,235 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Home
2019-05-06 12:39:11,237 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:11,239 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Cooling
2019-05-06 12:39:11,240 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Upload
2019-05-06 12:39:11,243 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:11,244 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Error
2019-05-06 12:39:11,245 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Dwelling
2019-05-06 12:39:11,246 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event SlicingProfileAdded
2019-05-06 12:39:11,247 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:11,247 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Startup
2019-05-06 12:39:11,248 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureStart
2019-05-06 12:39:11,249 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event ClientOpened
2019-05-06 12:39:11,250 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event Alert
2019-05-06 12:39:11,250 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event TransferDone
2019-05-06 12:39:11,251 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event PrintCancelling
2019-05-06 12:39:11,252 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event MovieDone
2019-05-06 12:39:11,253 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x71cd7bb0>> for event CaptureDone
2019-05-06 12:39:11,255 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:39:11,270 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:11,273 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:39:11,289 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:39:11,814 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:39:11,909 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:11,912 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:39:13,061 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:39:13,062 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:39:13,063 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:39:13,065 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:39:13,066 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:39:13,067 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:39:13,068 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:39:13,069 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:39:13,070 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:39:13,072 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:39:13,073 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:39:13,074 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:39:13,075 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:39:13,076 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:39:13,077 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:39:13,096 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:39:13,515 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:39:13,516 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:39:13,518 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:39:13,519 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:39:13,520 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:39:13,521 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:39:13,522 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:39:13,523 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:39:13,524 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:39:13,525 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:39:13,526 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:39:13,527 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:39:13,528 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:39:13,529 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:39:13,531 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:39:13,549 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:39:13,651 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:39:13,654 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:13,655 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:13,655 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:13,656 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:13,658 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:13,659 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:13,660 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:13,657 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOn
2019-05-06 12:39:13,661 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FirmwareData
2019-05-06 12:39:13,663 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileDeselected
2019-05-06 12:39:13,664 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollEnd
2019-05-06 12:39:13,665 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderRemoved
2019-05-06 12:39:13,666 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOff
2019-05-06 12:39:13,666 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintDone
2019-05-06 12:39:13,667 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:13,668 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event UpdatedFiles
2019-05-06 12:39:13,669 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:13,670 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingCancelled
2019-05-06 12:39:13,671 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnected
2019-05-06 12:39:13,671 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SettingsUpdated
2019-05-06 12:39:13,672 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ToolChange
2019-05-06 12:39:13,673 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieRendering
2019-05-06 12:39:13,675 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:13,676 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisFinished
2019-05-06 12:39:13,677 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingFailed
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event RegisteredMessageReceived
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintResumed
2019-05-06 12:39:13,678 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Eject
2019-05-06 12:39:13,679 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Waiting
2019-05-06 12:39:13,679 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureFailed
2019-05-06 12:39:13,680 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingDone
2019-05-06 12:39:13,681 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileDeleted
2019-05-06 12:39:13,681 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ZChange
2019-05-06 12:39:13,682 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileModified
2019-05-06 12:39:13,684 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintStarted
2019-05-06 12:39:13,686 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileAdded
2019-05-06 12:39:13,687 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ConnectivityChanged
2019-05-06 12:39:13,688 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterReset
2019-05-06 12:39:13,690 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintFailed
2019-05-06 12:39:13,690 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connected
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PositionUpdate
2019-05-06 12:39:13,691 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingStarted
2019-05-06 12:39:13,693 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileDeleted
2019-05-06 12:39:13,694 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferStarted
2019-05-06 12:39:13,695 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Shutdown
2019-05-06 12:39:13,696 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileModified
2019-05-06 12:39:13,697 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterStateChanged
2019-05-06 12:39:13,699 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieFailed
2019-05-06 12:39:13,700 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileAdded
2019-05-06 12:39:13,700 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:13,701 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintPaused
2019-05-06 12:39:13,702 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileSelected
2019-05-06 12:39:13,703 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelled
2019-05-06 12:39:13,704 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisStarted
2019-05-06 12:39:13,706 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderAdded
2019-05-06 12:39:13,706 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:13,707 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Conveyor
2019-05-06 12:39:13,708 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connecting
2019-05-06 12:39:13,709 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnecting
2019-05-06 12:39:13,710 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferFailed
2019-05-06 12:39:13,711 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientClosed
2019-05-06 12:39:13,712 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event EStop
2019-05-06 12:39:13,713 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileRemoved
2019-05-06 12:39:13,714 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollStart
2019-05-06 12:39:13,715 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Home
2019-05-06 12:39:13,716 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:13,717 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Cooling
2019-05-06 12:39:13,717 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Upload
2019-05-06 12:39:13,718 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:13,719 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Error
2019-05-06 12:39:13,720 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Dwelling
2019-05-06 12:39:13,721 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileAdded
2019-05-06 12:39:13,722 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:13,723 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Startup
2019-05-06 12:39:13,724 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureStart
2019-05-06 12:39:13,725 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientOpened
2019-05-06 12:39:13,726 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Alert
2019-05-06 12:39:13,727 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferDone
2019-05-06 12:39:13,727 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelling
2019-05-06 12:39:13,728 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieDone
2019-05-06 12:39:13,729 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureDone
2019-05-06 12:39:43,950 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=nARzaqdgyf,created=22.770345659)
2019-05-06 12:39:44,012 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOn
2019-05-06 12:39:44,013 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:44,016 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>>
2019-05-06 12:39:44,015 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FirmwareData
2019-05-06 12:39:44,019 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:44,022 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:44,021 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileDeselected
2019-05-06 12:39:44,024 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:44,025 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollEnd
2019-05-06 12:39:44,027 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:44,030 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderRemoved
2019-05-06 12:39:44,031 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:44,033 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PowerOff
2019-05-06 12:39:44,035 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:44,036 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintDone
2019-05-06 12:39:44,041 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:44,043 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event UpdatedFiles
2019-05-06 12:39:44,044 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataStatisticsUpdated
2019-05-06 12:39:44,044 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingCancelled
2019-05-06 12:39:44,045 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnected
2019-05-06 12:39:44,046 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SettingsUpdated
2019-05-06 12:39:44,047 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ToolChange
2019-05-06 12:39:44,048 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieRendering
2019-05-06 12:39:44,049 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:44,050 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisFinished
2019-05-06 12:39:44,051 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingFailed
2019-05-06 12:39:44,052 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event RegisteredMessageReceived
2019-05-06 12:39:44,052 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintResumed
2019-05-06 12:39:44,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Eject
2019-05-06 12:39:44,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Waiting
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureFailed
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingDone
2019-05-06 12:39:44,056 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileDeleted
2019-05-06 12:39:44,057 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ZChange
2019-05-06 12:39:44,059 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileModified
2019-05-06 12:39:44,060 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintStarted
2019-05-06 12:39:44,061 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileAdded
2019-05-06 12:39:44,061 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ConnectivityChanged
2019-05-06 12:39:44,063 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterReset
2019-05-06 12:39:44,063 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintFailed
2019-05-06 12:39:44,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connected
2019-05-06 12:39:44,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:44,065 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PositionUpdate
2019-05-06 12:39:44,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingStarted
2019-05-06 12:39:44,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterProfileDeleted
2019-05-06 12:39:44,068 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferStarted
2019-05-06 12:39:44,069 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Shutdown
2019-05-06 12:39:44,070 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileModified
2019-05-06 12:39:44,071 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrinterStateChanged
2019-05-06 12:39:44,071 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieFailed
2019-05-06 12:39:44,072 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileAdded
2019-05-06 12:39:44,073 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:44,074 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintPaused
2019-05-06 12:39:44,075 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileSelected
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelled
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MetadataAnalysisStarted
2019-05-06 12:39:44,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FolderAdded
2019-05-06 12:39:44,077 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:44,079 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Conveyor
2019-05-06 12:39:44,080 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Connecting
2019-05-06 12:39:44,081 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Disconnecting
2019-05-06 12:39:44,082 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferFailed
2019-05-06 12:39:44,083 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientClosed
2019-05-06 12:39:44,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event EStop
2019-05-06 12:39:44,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event FileRemoved
2019-05-06 12:39:44,085 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PostRollStart
2019-05-06 12:39:44,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Home
2019-05-06 12:39:44,087 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:44,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Cooling
2019-05-06 12:39:44,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Upload
2019-05-06 12:39:44,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:44,091 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Error
2019-05-06 12:39:44,092 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Dwelling
2019-05-06 12:39:44,093 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event SlicingProfileAdded
2019-05-06 12:39:44,094 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:44,095 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Startup
2019-05-06 12:39:44,095 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureStart
2019-05-06 12:39:44,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event ClientOpened
2019-05-06 12:39:44,097 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event Alert
2019-05-06 12:39:44,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event TransferDone
2019-05-06 12:39:44,099 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event PrintCancelling
2019-05-06 12:39:44,100 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event MovieDone
2019-05-06 12:39:44,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b5dbab0>> for event CaptureDone
2019-05-06 12:39:44,102 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:39:44,120 - octoprint.server.util.flask - DEBUG - Added network 127.0.0.0/8 to localNetworks
2019-05-06 12:39:44,122 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 127.0.0.0/8 = ::ffff:127.0.0.0/104 to localNetworks
2019-05-06 12:39:44,124 - octoprint.server.util.flask - DEBUG - Added network 129.247.189.0/24 to localNetworks
2019-05-06 12:39:44,125 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 129.247.189.0/24 = ::ffff:129.247.189.0/120 to localNetworks
2019-05-06 12:39:44,127 - octoprint.server.util.flask - DEBUG - Added network 10.97.0.0/16 to localNetworks
2019-05-06 12:39:44,128 - octoprint.server.util.flask - DEBUG - Also added v6 representation of v4 network 10.97.0.0/16 = ::ffff:10.97.0.0/112 to localNetworks
2019-05-06 12:39:44,129 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:39:44,131 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=ZgJ4KS9skN,created=95.2191192)
2019-05-06 12:39:44,133 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:39:44,149 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:39:44,208 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 11.96ms
2019-05-06 12:39:44,646 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:39:44,725 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:39:44,727 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=WuJbi8kNvj,created=95.814748469)
2019-05-06 12:39:44,728 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:39:45,867 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:39:45,870 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:39:45,871 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:39:45,871 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:39:45,872 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:39:45,872 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOn
2019-05-06 12:39:45,872 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:39:45,873 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FirmwareData
2019-05-06 12:39:45,874 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:39:45,875 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileDeselected
2019-05-06 12:39:45,876 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollEnd
2019-05-06 12:39:45,877 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:39:45,878 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderRemoved
2019-05-06 12:39:45,881 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOff
2019-05-06 12:39:45,881 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintDone
2019-05-06 12:39:45,882 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_printer_safety_check_warning
2019-05-06 12:39:45,883 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event UpdatedFiles
2019-05-06 12:39:45,884 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataStatisticsUpdated
2019-05-06 12:39:45,885 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingCancelled
2019-05-06 12:39:45,886 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnected
2019-05-06 12:39:45,887 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SettingsUpdated
2019-05-06 12:39:45,888 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ToolChange
2019-05-06 12:39:45,889 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieRendering
2019-05-06 12:39:45,890 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pi_support_throttle_state
2019-05-06 12:39:45,891 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisFinished
2019-05-06 12:39:45,891 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingFailed
2019-05-06 12:39:45,892 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event RegisteredMessageReceived
2019-05-06 12:39:45,893 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintResumed
2019-05-06 12:39:45,894 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Eject
2019-05-06 12:39:45,895 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Waiting
2019-05-06 12:39:45,896 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureFailed
2019-05-06 12:39:45,896 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingDone
2019-05-06 12:39:45,897 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileDeleted
2019-05-06 12:39:45,898 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ZChange
2019-05-06 12:39:45,899 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileModified
2019-05-06 12:39:45,900 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintStarted
2019-05-06 12:39:45,901 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileAdded
2019-05-06 12:39:45,902 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ConnectivityChanged
2019-05-06 12:39:45,903 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterReset
2019-05-06 12:39:45,904 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintFailed
2019-05-06 12:39:45,904 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connected
2019-05-06 12:39:45,906 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:39:45,907 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PositionUpdate
2019-05-06 12:39:45,908 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingStarted
2019-05-06 12:39:45,909 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileDeleted
2019-05-06 12:39:45,910 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferStarted
2019-05-06 12:39:45,911 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Shutdown
2019-05-06 12:39:45,912 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileModified
2019-05-06 12:39:45,912 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterStateChanged
2019-05-06 12:39:45,914 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieFailed
2019-05-06 12:39:45,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileAdded
2019-05-06 12:39:45,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:39:45,917 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintPaused
2019-05-06 12:39:45,918 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileSelected
2019-05-06 12:39:45,918 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelled
2019-05-06 12:39:45,919 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisStarted
2019-05-06 12:39:45,920 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderAdded
2019-05-06 12:39:45,921 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:39:45,922 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Conveyor
2019-05-06 12:39:45,923 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connecting
2019-05-06 12:39:45,924 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnecting
2019-05-06 12:39:45,925 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferFailed
2019-05-06 12:39:45,926 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientClosed
2019-05-06 12:39:45,927 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event EStop
2019-05-06 12:39:45,927 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileRemoved
2019-05-06 12:39:45,928 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollStart
2019-05-06 12:39:45,929 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Home
2019-05-06 12:39:45,930 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:39:45,931 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Cooling
2019-05-06 12:39:45,932 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Upload
2019-05-06 12:39:45,933 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:39:45,934 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Error
2019-05-06 12:39:45,935 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Dwelling
2019-05-06 12:39:45,936 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileAdded
2019-05-06 12:39:45,936 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_failed
2019-05-06 12:39:45,937 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Startup
2019-05-06 12:39:45,938 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureStart
2019-05-06 12:39:45,939 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientOpened
2019-05-06 12:39:45,941 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Alert
2019-05-06 12:39:45,941 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferDone
2019-05-06 12:39:45,942 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelling
2019-05-06 12:39:45,946 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieDone
2019-05-06 12:39:45,947 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureDone
2019-05-06 12:40:18,025 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=WuJbi8kNvj,created=95.814748469)
2019-05-06 12:40:18,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOn
2019-05-06 12:40:18,085 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:18,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FirmwareData
2019-05-06 12:40:18,088 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>>
2019-05-06 12:40:18,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileDeselected
2019-05-06 12:40:18,092 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:18,093 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollEnd
2019-05-06 12:40:18,095 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:18,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderRemoved
2019-05-06 12:40:18,097 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:18,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PowerOff
2019-05-06 12:40:18,101 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:18,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintDone
2019-05-06 12:40:18,104 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:18,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_printer_safety_check_warning
2019-05-06 12:40:18,108 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:18,109 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event UpdatedFiles
2019-05-06 12:40:18,112 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataStatisticsUpdated
2019-05-06 12:40:18,114 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingCancelled
2019-05-06 12:40:18,116 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnected
2019-05-06 12:40:18,118 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SettingsUpdated
2019-05-06 12:40:18,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ToolChange
2019-05-06 12:40:18,121 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieRendering
2019-05-06 12:40:18,124 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pi_support_throttle_state
2019-05-06 12:40:18,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisFinished
2019-05-06 12:40:18,127 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingFailed
2019-05-06 12:40:18,129 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event RegisteredMessageReceived
2019-05-06 12:40:18,132 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintResumed
2019-05-06 12:40:18,133 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Eject
2019-05-06 12:40:18,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Waiting
2019-05-06 12:40:18,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureFailed
2019-05-06 12:40:18,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingDone
2019-05-06 12:40:18,142 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileDeleted
2019-05-06 12:40:18,143 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ZChange
2019-05-06 12:40:18,145 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileModified
2019-05-06 12:40:18,148 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintStarted
2019-05-06 12:40:18,150 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileAdded
2019-05-06 12:40:18,151 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ConnectivityChanged
2019-05-06 12:40:18,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterReset
2019-05-06 12:40:18,153 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintFailed
2019-05-06 12:40:18,155 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connected
2019-05-06 12:40:18,157 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:40:18,159 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PositionUpdate
2019-05-06 12:40:18,160 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingStarted
2019-05-06 12:40:18,162 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterProfileDeleted
2019-05-06 12:40:18,164 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferStarted
2019-05-06 12:40:18,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Shutdown
2019-05-06 12:40:18,167 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileModified
2019-05-06 12:40:18,168 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrinterStateChanged
2019-05-06 12:40:18,170 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieFailed
2019-05-06 12:40:18,172 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileAdded
2019-05-06 12:40:18,173 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:40:18,176 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintPaused
2019-05-06 12:40:18,177 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileSelected
2019-05-06 12:40:18,179 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelled
2019-05-06 12:40:18,182 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MetadataAnalysisStarted
2019-05-06 12:40:18,184 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FolderAdded
2019-05-06 12:40:18,185 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:40:18,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Conveyor
2019-05-06 12:40:18,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Connecting
2019-05-06 12:40:18,192 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Disconnecting
2019-05-06 12:40:18,194 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferFailed
2019-05-06 12:40:18,195 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientClosed
2019-05-06 12:40:18,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event EStop
2019-05-06 12:40:18,198 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event FileRemoved
2019-05-06 12:40:18,201 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PostRollStart
2019-05-06 12:40:18,203 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Home
2019-05-06 12:40:18,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:40:18,207 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Cooling
2019-05-06 12:40:18,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Upload
2019-05-06 12:40:18,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:40:18,211 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Error
2019-05-06 12:40:18,212 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Dwelling
2019-05-06 12:40:18,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event SlicingProfileAdded
2019-05-06 12:40:18,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event plugin_softwareupdate_update_failed
2019-05-06 12:40:18,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Startup
2019-05-06 12:40:18,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureStart
2019-05-06 12:40:18,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event ClientOpened
2019-05-06 12:40:18,219 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event Alert
2019-05-06 12:40:18,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event TransferDone
2019-05-06 12:40:18,225 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event PrintCancelling
2019-05-06 12:40:18,227 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event MovieDone
2019-05-06 12:40:18,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b6d4090>> for event CaptureDone
2019-05-06 12:40:18,231 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:40:18,254 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:40:18,257 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=hBDgwnrRCW,created=129.344853029)
2019-05-06 12:40:18,259 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:40:18,273 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:40:18,328 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 11.63ms
2019-05-06 12:40:18,357 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:40:18,485 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:40:18,486 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:18,486 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:18,488 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:18,489 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:18,491 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:18,493 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:18,493 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:18,813 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:40:18,891 - octoprint.server.util.flask - DEBUG - Checking if remote address 10.97.3.15 is in localNetworks (IPSet(['10.97.0.0/16', '127.0.0.0/8', '129.247.189.0/24', '::ffff:10.97.0.0/112', '::ffff:127.0.0.0/104', '::ffff:129.247.189.0/120']))
2019-05-06 12:40:18,893 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=MNwJ7iWPoF,created=129.981162682)
2019-05-06 12:40:18,896 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15 via autologin
2019-05-06 12:40:20,030 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:40:20,033 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:40:20,034 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:40:20,034 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:40:20,035 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:40:20,036 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:40:20,040 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOn
2019-05-06 12:40:20,041 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FirmwareData
2019-05-06 12:40:20,042 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileDeselected
2019-05-06 12:40:20,043 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollEnd
2019-05-06 12:40:20,044 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderRemoved
2019-05-06 12:40:20,045 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOff
2019-05-06 12:40:20,046 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintDone
2019-05-06 12:40:20,046 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_printer_safety_check_warning
2019-05-06 12:40:20,047 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event UpdatedFiles
2019-05-06 12:40:20,048 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataStatisticsUpdated
2019-05-06 12:40:20,049 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingCancelled
2019-05-06 12:40:20,050 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnected
2019-05-06 12:40:20,051 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SettingsUpdated
2019-05-06 12:40:20,052 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ToolChange
2019-05-06 12:40:20,053 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieRendering
2019-05-06 12:40:20,054 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pi_support_throttle_state
2019-05-06 12:40:20,055 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisFinished
2019-05-06 12:40:20,056 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingFailed
2019-05-06 12:40:20,057 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event RegisteredMessageReceived
2019-05-06 12:40:20,058 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintResumed
2019-05-06 12:40:20,059 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Eject
2019-05-06 12:40:20,059 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Waiting
2019-05-06 12:40:20,060 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureFailed
2019-05-06 12:40:20,061 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingDone
2019-05-06 12:40:20,062 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileDeleted
2019-05-06 12:40:20,063 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ZChange
2019-05-06 12:40:20,064 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileModified
2019-05-06 12:40:20,065 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintStarted
2019-05-06 12:40:20,066 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileAdded
2019-05-06 12:40:20,067 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ConnectivityChanged
2019-05-06 12:40:20,068 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterReset
2019-05-06 12:40:20,069 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintFailed
2019-05-06 12:40:20,070 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connected
2019-05-06 12:40:20,070 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:40:20,071 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PositionUpdate
2019-05-06 12:40:20,072 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingStarted
2019-05-06 12:40:20,073 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileDeleted
2019-05-06 12:40:20,074 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferStarted
2019-05-06 12:40:20,075 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Shutdown
2019-05-06 12:40:20,076 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileModified
2019-05-06 12:40:20,077 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterStateChanged
2019-05-06 12:40:20,078 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieFailed
2019-05-06 12:40:20,079 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileAdded
2019-05-06 12:40:20,080 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:40:20,080 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintPaused
2019-05-06 12:40:20,081 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileSelected
2019-05-06 12:40:20,082 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelled
2019-05-06 12:40:20,083 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisStarted
2019-05-06 12:40:20,084 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderAdded
2019-05-06 12:40:20,085 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:40:20,086 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Conveyor
2019-05-06 12:40:20,087 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connecting
2019-05-06 12:40:20,088 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnecting
2019-05-06 12:40:20,089 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferFailed
2019-05-06 12:40:20,090 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientClosed
2019-05-06 12:40:20,091 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event EStop
2019-05-06 12:40:20,092 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileRemoved
2019-05-06 12:40:20,093 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollStart
2019-05-06 12:40:20,093 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Home
2019-05-06 12:40:20,094 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:40:20,095 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Cooling
2019-05-06 12:40:20,096 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Upload
2019-05-06 12:40:20,097 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:40:20,098 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Error
2019-05-06 12:40:20,099 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Dwelling
2019-05-06 12:40:20,100 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileAdded
2019-05-06 12:40:20,101 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_failed
2019-05-06 12:40:20,102 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Startup
2019-05-06 12:40:20,103 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureStart
2019-05-06 12:40:20,104 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientOpened
2019-05-06 12:40:20,105 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Alert
2019-05-06 12:40:20,106 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferDone
2019-05-06 12:40:20,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelling
2019-05-06 12:40:20,108 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieDone
2019-05-06 12:40:20,109 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureDone
2019-05-06 12:52:48,077 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:52:48,077 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>>
2019-05-06 12:52:48,078 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:52:48,079 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:52:48,079 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:52:48,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOn
2019-05-06 12:52:48,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FirmwareData
2019-05-06 12:52:48,089 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileDeselected
2019-05-06 12:52:48,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollEnd
2019-05-06 12:52:48,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderRemoved
2019-05-06 12:52:48,080 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:52:48,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PowerOff
2019-05-06 12:52:48,102 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintDone
2019-05-06 12:52:48,104 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_printer_safety_check_warning
2019-05-06 12:52:48,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event UpdatedFiles
2019-05-06 12:52:48,106 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataStatisticsUpdated
2019-05-06 12:52:48,111 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingCancelled
2019-05-06 12:52:48,113 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnected
2019-05-06 12:52:48,115 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SettingsUpdated
2019-05-06 12:52:48,116 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ToolChange
2019-05-06 12:52:48,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieRendering
2019-05-06 12:52:48,121 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pi_support_throttle_state
2019-05-06 12:52:48,123 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisFinished
2019-05-06 12:52:48,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingFailed
2019-05-06 12:52:48,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event RegisteredMessageReceived
2019-05-06 12:52:48,136 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintResumed
2019-05-06 12:52:48,137 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Eject
2019-05-06 12:52:48,138 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Waiting
2019-05-06 12:52:48,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureFailed
2019-05-06 12:52:48,139 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingDone
2019-05-06 12:52:48,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileDeleted
2019-05-06 12:52:48,144 - octoprint.server - DEBUG - SIGTERM received...
2019-05-06 12:52:48,140 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ZChange
2019-05-06 12:52:48,152 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileModified
2019-05-06 12:52:48,153 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintStarted
2019-05-06 12:52:48,155 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileAdded
2019-05-06 12:52:48,156 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ConnectivityChanged
2019-05-06 12:52:48,158 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterReset
2019-05-06 12:52:48,162 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintFailed
2019-05-06 12:52:48,163 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connected
2019-05-06 12:52:48,165 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:52:48,178 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PositionUpdate
2019-05-06 12:52:48,181 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingStarted
2019-05-06 12:52:48,183 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterProfileDeleted
2019-05-06 12:52:48,185 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferStarted
2019-05-06 12:52:48,188 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Shutdown
2019-05-06 12:52:48,190 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileModified
2019-05-06 12:52:48,193 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrinterStateChanged
2019-05-06 12:52:48,197 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieFailed
2019-05-06 12:52:48,199 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileAdded
2019-05-06 12:52:48,202 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:52:48,204 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintPaused
2019-05-06 12:52:48,206 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileSelected
2019-05-06 12:52:48,208 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelled
2019-05-06 12:52:48,210 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MetadataAnalysisStarted
2019-05-06 12:52:48,211 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FolderAdded
2019-05-06 12:52:48,213 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:52:48,214 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Conveyor
2019-05-06 12:52:48,215 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Connecting
2019-05-06 12:52:48,216 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Disconnecting
2019-05-06 12:52:48,217 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferFailed
2019-05-06 12:52:48,218 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientClosed
2019-05-06 12:52:48,219 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event EStop
2019-05-06 12:52:48,221 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event FileRemoved
2019-05-06 12:52:48,222 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PostRollStart
2019-05-06 12:52:48,223 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Home
2019-05-06 12:52:48,224 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:52:48,224 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Cooling
2019-05-06 12:52:48,226 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Upload
2019-05-06 12:52:48,227 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:52:48,228 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Error
2019-05-06 12:52:48,229 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Dwelling
2019-05-06 12:52:48,230 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event SlicingProfileAdded
2019-05-06 12:52:48,231 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event plugin_softwareupdate_update_failed
2019-05-06 12:52:48,232 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Startup
2019-05-06 12:52:48,234 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureStart
2019-05-06 12:52:48,236 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event ClientOpened
2019-05-06 12:52:48,239 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event Alert
2019-05-06 12:52:48,241 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event TransferDone
2019-05-06 12:52:48,242 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event PrintCancelling
2019-05-06 12:52:48,243 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event MovieDone
2019-05-06 12:52:48,244 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6b2d7770>> for event CaptureDone
2019-05-06 12:52:48,245 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:52:48,247 - octoprint.server - DEBUG - Shutting down tornado's IOLoop...
2019-05-06 12:52:48,249 - octoprint.server - DEBUG - Tornado's IOLoop stopped
2019-05-06 12:52:48,251 - octoprint.server - INFO - Shutting down...
2019-05-06 12:52:48,396 - octoprint.plugin - DEBUG - Calling on_shutdown on discovery
2019-05-06 12:52:48,397 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-05-06 12:52:48,399 - octoprint.events.fire - DEBUG - Firing event: Shutdown (Payload: None)
2019-05-06 12:52:48,403 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:52:48,407 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:52:48,408 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:52:48,408 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:52:48,412 - octoprint.plugin - DEBUG - Calling on_shutdown on tracking
2019-05-06 12:52:48,414 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:52:48,415 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:52:48,418 - octoprint.events - INFO - Event loop shut down
2019-05-06 12:52:48,419 - octoprint.server - INFO - Goodbye!
2019-05-06 12:52:55,257 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:52:55,259 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc3
2019-05-06 12:52:55,260 - octoprint.startup - INFO - ******************************************************************************
2019-05-06 12:52:55,364 - octoprint.startup - INFO - Unable to fetch plugin blacklist from https://plugins.octoprint.org/blacklist.json, proceeding without it.
2019-05-06 12:52:55,364 - octoprint.startup - INFO - Blacklist processing done
2019-05-06 12:52:55,436 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:52:55,439 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for logging from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging/__init__.py
2019-05-06 12:52:57,023 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for corewizard from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard/__init__.py
2019-05-06 12:52:57,037 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for backup from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup/__init__.py
2019-05-06 12:52:57,107 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for announcements from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements/__init__.py
2019-05-06 12:52:57,293 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for action_command_prompt from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt/__init__.py
2019-05-06 12:52:57,310 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for appkeys from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys/__init__.py
2019-05-06 12:52:57,335 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for discovery from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery/__init__.py
2019-05-06 12:52:57,391 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for forcelogin from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py
2019-05-06 12:52:57,404 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pi_support from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py
2019-05-06 12:52:57,423 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for virtual_printer from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer/__init__.py
2019-05-06 12:52:57,429 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for printer_safety_check from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check/__init__.py
2019-05-06 12:52:57,447 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for softwareupdate from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/__init__.py
2019-05-06 12:52:57,543 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for errortracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking/__init__.py
2019-05-06 12:52:57,558 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for tracking from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking/__init__.py
2019-05-06 12:52:57,584 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for pluginmanager from AST of /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager/__init__.py
2019-05-06 12:52:57,877 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for systemcommandeditor from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor/__init__.py
2019-05-06 12:52:57,881 - octoprint.plugin.core - INFO - Plugin System Command Editor (0.3.2) is disabled.
2019-05-06 12:52:57,904 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for flowspeedrename from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename/__init__.py
2019-05-06 12:52:57,907 - octoprint.plugin.core - INFO - Plugin Rename Flowspeed & Feedrate (0.1.0) is disabled.
2019-05-06 12:52:57,919 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for navbartemp from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp/__init__.py
2019-05-06 12:52:57,926 - octoprint.plugin.core - INFO - Plugin Navbar Temperature Plugin (0.11) is disabled.
2019-05-06 12:52:57,938 - octoprint.plugin.core - DEBUG - Parsing plugin metadata for autoselect from AST of /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect/__init__.py
2019-05-06 12:52:57,943 - octoprint.plugin.core - INFO - Plugin Autoselect Plugin (0.2.0) is disabled.
2019-05-06 12:52:58,153 - octoprint.plugin.core - DEBUG - Loaded plugin logging: Logging
2019-05-06 12:52:58,155 - octoprint.plugin.core - DEBUG - Loaded plugin corewizard: Core Wizard
2019-05-06 12:52:58,156 - octoprint.plugin.core - DEBUG - Loaded plugin backup: Backup & Restore
2019-05-06 12:52:58,157 - octoprint.plugin.core - DEBUG - Loaded plugin announcements: Announcement Plugin
2019-05-06 12:52:58,158 - octoprint.plugin.core - DEBUG - Loaded plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:52:58,159 - octoprint.plugin.core - DEBUG - Loaded plugin appkeys: Application Keys Plugin
2019-05-06 12:52:58,160 - octoprint.plugin.core - DEBUG - Loaded plugin discovery: Discovery
2019-05-06 12:52:58,161 - octoprint.plugin.core - DEBUG - Loaded plugin forcelogin: Force Login
2019-05-06 12:52:58,162 - octoprint.plugin.core - DEBUG - Loaded plugin pi_support: Pi Support Plugin
2019-05-06 12:52:58,164 - octoprint.plugin.core - DEBUG - Loaded plugin virtual_printer: Virtual Printer
2019-05-06 12:52:58,165 - octoprint.plugin.core - DEBUG - Loaded plugin printer_safety_check: Printer Safety Check
2019-05-06 12:52:58,166 - octoprint.plugin.core - DEBUG - Loaded plugin softwareupdate: Software Update
2019-05-06 12:52:58,167 - octoprint.plugin.core - DEBUG - Loaded plugin errortracking: Error Tracking
2019-05-06 12:52:58,168 - octoprint.plugin.core - DEBUG - Loaded plugin tracking: Anonymous Usage Tracking
2019-05-06 12:52:58,169 - octoprint.plugin.core - DEBUG - Loaded plugin pluginmanager: Plugin Manager
2019-05-06 12:52:58,171 - octoprint.plugin.core - DEBUG - Enabled plugin logging: Logging
2019-05-06 12:52:58,172 - octoprint.plugin.core - DEBUG - Enabled plugin corewizard: Core Wizard
2019-05-06 12:52:58,175 - octoprint.plugin.core - DEBUG - Enabled plugin backup: Backup & Restore
2019-05-06 12:52:58,176 - octoprint.plugin.core - DEBUG - Enabled plugin announcements: Announcement Plugin
2019-05-06 12:52:58,178 - octoprint.plugin.core - DEBUG - Enabled plugin action_command_prompt: Action Command Prompt Support
2019-05-06 12:52:58,179 - octoprint.plugin.core - DEBUG - Enabled plugin appkeys: Application Keys Plugin
2019-05-06 12:52:58,181 - octoprint.plugin.core - DEBUG - Enabled plugin discovery: Discovery
2019-05-06 12:52:58,182 - octoprint.plugin.core - DEBUG - Enabled plugin forcelogin: Force Login
2019-05-06 12:52:58,184 - octoprint.plugin.core - DEBUG - Enabled plugin pi_support: Pi Support Plugin
2019-05-06 12:52:58,188 - octoprint.plugin.core - DEBUG - Enabled plugin virtual_printer: Virtual Printer
2019-05-06 12:52:58,190 - octoprint.plugin.core - DEBUG - Enabled plugin printer_safety_check: Printer Safety Check
2019-05-06 12:52:58,192 - octoprint.plugin.core - DEBUG - Enabled plugin softwareupdate: Software Update
2019-05-06 12:52:58,245 - octoprint.plugins.errortracking - INFO - Initialized error tracking
2019-05-06 12:52:58,248 - octoprint.plugin.core - DEBUG - Enabled plugin errortracking: Error Tracking
2019-05-06 12:52:58,249 - octoprint.plugin.core - DEBUG - Enabled plugin tracking: Anonymous Usage Tracking
2019-05-06 12:52:58,251 - octoprint.plugin.core - DEBUG - Enabled plugin pluginmanager: Plugin Manager
2019-05-06 12:52:58,252 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:52:58,523 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-05-06 12:52:58,574 - octoprint.server - DEBUG - Starting intermediary server on http://127.0.0.1:5000
2019-05-06 12:52:58,577 - octoprint.server - INFO - Intermediary server started
2019-05-06 12:52:58,578 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-05-06 12:52:58,829 - octoprint.plugin.core - INFO - Found 19 plugin(s) providing 15 mixin implementations, 23 hook handlers
2019-05-06 12:52:58,863 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-05-06 12:52:59,404 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-05-06 12:52:59,406 - octoprint.events - DEBUG - Subscribed listener <function on_settings_update at 0x73993570> for event SettingsUpdated
2019-05-06 12:52:59,426 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataAnalysisFinished of <octoprint.printer.standard.Printer object at 0x737fb050>> for event MetadataAnalysisFinished
2019-05-06 12:52:59,427 - octoprint.events - DEBUG - Subscribed listener <bound method Printer._on_event_MetadataStatisticsUpdated of <octoprint.printer.standard.Printer object at 0x737fb050>> for event MetadataStatisticsUpdated
2019-05-06 12:52:59,429 - octoprint.server - DEBUG - Registered event throttle_state of plugin pi_support as Events.PLUGIN_PI_SUPPORT_THROTTLE_STATE = "plugin_pi_support_throttle_state"
2019-05-06 12:52:59,430 - octoprint.server - DEBUG - Registered event install_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_INSTALL_PLUGIN = "plugin_pluginmanager_install_plugin"
2019-05-06 12:52:59,431 - octoprint.server - DEBUG - Registered event uninstall_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_UNINSTALL_PLUGIN = "plugin_pluginmanager_uninstall_plugin"
2019-05-06 12:52:59,432 - octoprint.server - DEBUG - Registered event enable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_ENABLE_PLUGIN = "plugin_pluginmanager_enable_plugin"
2019-05-06 12:52:59,433 - octoprint.server - DEBUG - Registered event disable_plugin of plugin pluginmanager as Events.PLUGIN_PLUGINMANAGER_DISABLE_PLUGIN = "plugin_pluginmanager_disable_plugin"
2019-05-06 12:52:59,434 - octoprint.server - DEBUG - Registered event warning of plugin printer_safety_check as Events.PLUGIN_PRINTER_SAFETY_CHECK_WARNING = "plugin_printer_safety_check_warning"
2019-05-06 12:52:59,436 - octoprint.server - DEBUG - Registered event update_succeeded of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_SUCCEEDED = "plugin_softwareupdate_update_succeeded"
2019-05-06 12:52:59,437 - octoprint.server - DEBUG - Registered event update_failed of plugin softwareupdate as Events.PLUGIN_SOFTWAREUPDATE_UPDATE_FAILED = "plugin_softwareupdate_update_failed"
2019-05-06 12:52:59,439 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin tracking
2019-05-06 12:52:59,442 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin logging
2019-05-06 12:52:59,445 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin appkeys
2019-05-06 12:52:59,448 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin virtual_printer
2019-05-06 12:52:59,452 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin action_command_prompt
2019-05-06 12:52:59,454 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin corewizard
2019-05-06 12:52:59,457 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pi_support
2019-05-06 12:52:59,459 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin printer_safety_check
2019-05-06 12:52:59,543 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-05-06 12:52:59,544 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin softwareupdate
2019-05-06 12:52:59,547 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin errortracking
2019-05-06 12:52:59,549 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin announcements
2019-05-06 12:52:59,552 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin forcelogin
2019-05-06 12:53:01,909 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:53:03,843 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-05-06 12:53:03,844 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:53:03,845 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:53:03,847 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin pluginmanager
2019-05-06 12:53:03,850 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin backup
2019-05-06 12:53:03,853 - octoprint.plugin.core - DEBUG - Initialized plugin mixin implementation for plugin discovery
2019-05-06 12:53:03,854 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-05-06 12:53:03,866 - octoprint.plugin.core - INFO - 19 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| !Autoselect Plugin (0.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_autoselect
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| !Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| !Rename Flowspeed & Feedrate (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_flowspeedrename
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !System Command Editor (0.3.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_systemcommandeditor
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-05-06 12:53:03,885 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 904245248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.13.0
| python:
| pip: 19.0.3
| version: 2.7.9
| virtualenv: /home/pi/oprint
2019-05-06 12:53:03,892 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,895 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,896 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-05-06 12:53:03,898 - octoprint.server - DEBUG - Deleting /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:03,917 - octoprint.server - DEBUG - Creating /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:03,918 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-05-06 12:53:04,053 - octoprint.server - DEBUG - Registered API of plugin announcements under URL prefix /plugin/announcements
2019-05-06 12:53:04,077 - octoprint.server - DEBUG - Registered API of plugin appkeys under URL prefix /plugin/appkeys
2019-05-06 12:53:04,104 - octoprint.server - DEBUG - Registered API of plugin backup under URL prefix /plugin/backup
2019-05-06 12:53:04,122 - octoprint.server - DEBUG - Registered API of plugin corewizard under URL prefix /plugin/corewizard
2019-05-06 12:53:04,141 - octoprint.server - DEBUG - Registered API of plugin discovery under URL prefix /plugin/discovery
2019-05-06 12:53:04,157 - octoprint.server - DEBUG - Registered API of plugin logging under URL prefix /plugin/logging
2019-05-06 12:53:04,176 - octoprint.server - DEBUG - Registered API of plugin pluginmanager under URL prefix /plugin/pluginmanager
2019-05-06 12:53:04,197 - octoprint.server - DEBUG - Registered API of plugin softwareupdate under URL prefix /plugin/softwareupdate
2019-05-06 12:53:04,213 - octoprint.server - DEBUG - Registered assets of plugin action_command_prompt under URL prefix /plugin/action_command_prompt
2019-05-06 12:53:04,228 - octoprint.server - DEBUG - Registered assets of plugin errortracking under URL prefix /plugin/errortracking
2019-05-06 12:53:04,244 - octoprint.server - DEBUG - Registered assets of plugin forcelogin under URL prefix /plugin/forcelogin
2019-05-06 12:53:04,259 - octoprint.server - DEBUG - Registered assets of plugin pi_support under URL prefix /plugin/pi_support
2019-05-06 12:53:04,275 - octoprint.server - DEBUG - Registered assets of plugin printer_safety_check under URL prefix /plugin/printer_safety_check
2019-05-06 12:53:04,290 - octoprint.server - DEBUG - Registered assets of plugin tracking under URL prefix /plugin/tracking
2019-05-06 12:53:04,475 - octoprint.server - DEBUG - Adding additional route /plugin/backup/download/(.*) handled by handler <class 'octoprint.server.util.tornado.LargeResponseHandler'> and with additional arguments {'access_validation': <function f at 0x72f701b0>, 'as_attachment': True, 'path_validation': <function f at 0x72f70170>, 'path': '/home/pi/.octoprint/data/backup'}
2019-05-06 12:53:04,495 - octoprint.server - DEBUG - Adding maximum body size of 1073741824B for POST requests to /plugin/backup/restore)
2019-05-06 12:53:04,496 - octoprint.server - DEBUG - Adding maximum body size of 52428800B for POST requests to /plugin/pluginmanager/upload_archive)
2019-05-06 12:53:04,497 - octoprint.server - INFO - Shutting down intermediary server...
2019-05-06 12:53:04,661 - octoprint.server - INFO - Intermediary server shut down
2019-05-06 12:53:04,665 - octoprint.events - INFO - Processing startup event, this is our first event
2019-05-06 12:53:04,667 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-05-06 12:53:04,668 - octoprint.events.fire - DEBUG - Firing event: Startup (Payload: None)
2019-05-06 12:53:04,671 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:04,673 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-05-06 12:53:04,679 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:04,683 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:04,697 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:04,748 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:04,732 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-05-06 12:53:04,749 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:04,764 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-05-06 12:53:04,768 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-05-06 12:53:04,770 - octoprint.plugin - DEBUG - Calling on_startup on announcements
2019-05-06 12:53:04,771 - octoprint.plugin - DEBUG - Calling on_startup on backup
2019-05-06 12:53:04,771 - octoprint.plugin - DEBUG - Calling on_startup on discovery
2019-05-06 12:53:04,783 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _http._tcp
2019-05-06 12:53:04,795 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance "Printer_1"' for _octoprint._tcp
2019-05-06 12:53:04,797 - octoprint.plugin - DEBUG - Calling on_startup on pi_support
2019-05-06 12:53:04,830 - octoprint.plugins.pi_support - ERROR - Got an error while trying to fetch the current throttle state via "/usr/bin/vcgencmd get_throttled"
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 263, in _check_throttled_state
state = get_vcgencmd_throttled_state(command)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support/__init__.py", line 140, in get_vcgencmd_throttled_state
raise ValueError("cannot parse \"{}\" output: {}".format(command, output))
ValueError: cannot parse "/usr/bin/vcgencmd get_throttled" output: error=1 error_msg="Command not registered"
2019-05-06 12:53:04,899 - octoprint.plugin - DEBUG - Calling on_startup on pluginmanager
2019-05-06 12:53:04,900 - octoprint.plugin - DEBUG - Calling on_startup on softwareupdate
2019-05-06 12:53:04,908 - octoprint.plugin - DEBUG - Calling on_startup on tracking
2019-05-06 12:53:04,913 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-05-06 12:53:04,916 - octoprint.plugin - DEBUG - Calling on_after_startup on announcements
2019-05-06 12:53:04,923 - octoprint.plugin - DEBUG - Calling on_after_startup on backup
2019-05-06 12:53:04,927 - octoprint.plugin - DEBUG - Calling on_after_startup on discovery
2019-05-06 12:53:04,929 - octoprint.plugin - DEBUG - Calling on_after_startup on pi_support
2019-05-06 12:53:04,931 - octoprint.plugin - DEBUG - Calling on_after_startup on pluginmanager
2019-05-06 12:53:04,983 - octoprint.plugin - DEBUG - Calling on_after_startup on softwareupdate
2019-05-06 12:53:05,072 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-05-06 12:53:05,182 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-05-06 12:53:07,254 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2019-05-06 12:53:07,255 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-05-06 12:53:07,256 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-05-06 12:53:07,340 - octoprint.plugin - DEBUG - Calling on_after_startup on tracking
2019-05-06 12:53:07,511 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://129.247.189.242:30141/'}
2019-05-06 12:53:07,524 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:07,525 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:07,527 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:07,528 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:07,529 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:07,530 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:07,531 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:07,532 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:07,533 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:07,534 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:07,536 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:07,537 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:07,538 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:07,539 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:07,540 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:07,570 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:07,860 - octoprint.server.views - DEBUG - Forcing rendering of view _default
2019-05-06 12:53:08,165 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:08,632 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:08,755 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:08,757 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:08,782 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:53:08,786 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:08,790 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:08,786 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOn
2019-05-06 12:53:08,791 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:08,796 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:08,796 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:08,801 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FirmwareData
2019-05-06 12:53:08,802 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileDeselected
2019-05-06 12:53:08,805 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollEnd
2019-05-06 12:53:08,806 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderRemoved
2019-05-06 12:53:08,808 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOff
2019-05-06 12:53:08,810 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintDone
2019-05-06 12:53:08,816 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:08,818 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event UpdatedFiles
2019-05-06 12:53:08,821 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataStatisticsUpdated
2019-05-06 12:53:08,823 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingCancelled
2019-05-06 12:53:08,825 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnected
2019-05-06 12:53:08,826 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SettingsUpdated
2019-05-06 12:53:08,828 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ToolChange
2019-05-06 12:53:08,836 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieRendering
2019-05-06 12:53:08,839 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:08,841 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisFinished
2019-05-06 12:53:08,843 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingFailed
2019-05-06 12:53:08,844 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event RegisteredMessageReceived
2019-05-06 12:53:08,845 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintResumed
2019-05-06 12:53:08,847 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Eject
2019-05-06 12:53:08,848 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Waiting
2019-05-06 12:53:08,852 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureFailed
2019-05-06 12:53:08,853 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingDone
2019-05-06 12:53:08,854 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileDeleted
2019-05-06 12:53:08,857 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ZChange
2019-05-06 12:53:08,858 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileModified
2019-05-06 12:53:08,860 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintStarted
2019-05-06 12:53:08,861 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileAdded
2019-05-06 12:53:08,862 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ConnectivityChanged
2019-05-06 12:53:08,864 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterReset
2019-05-06 12:53:08,868 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintFailed
2019-05-06 12:53:08,869 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connected
2019-05-06 12:53:08,870 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:08,872 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PositionUpdate
2019-05-06 12:53:08,874 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingStarted
2019-05-06 12:53:08,876 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileDeleted
2019-05-06 12:53:08,877 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferStarted
2019-05-06 12:53:08,878 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Shutdown
2019-05-06 12:53:08,882 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileModified
2019-05-06 12:53:08,883 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterStateChanged
2019-05-06 12:53:08,885 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieFailed
2019-05-06 12:53:08,887 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileAdded
2019-05-06 12:53:08,888 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:08,890 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintPaused
2019-05-06 12:53:08,892 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileSelected
2019-05-06 12:53:08,893 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelled
2019-05-06 12:53:08,897 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisStarted
2019-05-06 12:53:08,899 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderAdded
2019-05-06 12:53:08,901 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:08,905 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Conveyor
2019-05-06 12:53:08,909 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connecting
2019-05-06 12:53:08,911 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnecting
2019-05-06 12:53:08,915 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferFailed
2019-05-06 12:53:08,916 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientClosed
2019-05-06 12:53:08,946 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event EStop
2019-05-06 12:53:09,034 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileRemoved
2019-05-06 12:53:09,068 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollStart
2019-05-06 12:53:09,198 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Home
2019-05-06 12:53:09,247 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:09,263 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Cooling
2019-05-06 12:53:09,264 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Upload
2019-05-06 12:53:09,273 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:09,275 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Error
2019-05-06 12:53:09,277 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Dwelling
2019-05-06 12:53:09,277 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileAdded
2019-05-06 12:53:09,278 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:09,279 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Startup
2019-05-06 12:53:09,284 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureStart
2019-05-06 12:53:09,286 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientOpened
2019-05-06 12:53:09,331 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Alert
2019-05-06 12:53:09,333 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferDone
2019-05-06 12:53:09,338 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelling
2019-05-06 12:53:09,339 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieDone
2019-05-06 12:53:09,340 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureDone
2019-05-06 12:53:12,429 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOn
2019-05-06 12:53:12,430 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FirmwareData
2019-05-06 12:53:12,429 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:12,431 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileDeselected
2019-05-06 12:53:12,446 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>>
2019-05-06 12:53:12,448 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:12,449 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollEnd
2019-05-06 12:53:12,450 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:12,451 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderRemoved
2019-05-06 12:53:12,453 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:12,455 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:12,455 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PowerOff
2019-05-06 12:53:12,456 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:12,459 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:12,458 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintDone
2019-05-06 12:53:12,461 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:12,462 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event UpdatedFiles
2019-05-06 12:53:12,472 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataStatisticsUpdated
2019-05-06 12:53:12,504 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingCancelled
2019-05-06 12:53:12,507 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnected
2019-05-06 12:53:12,509 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SettingsUpdated
2019-05-06 12:53:12,511 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ToolChange
2019-05-06 12:53:12,512 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieRendering
2019-05-06 12:53:12,514 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:12,515 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisFinished
2019-05-06 12:53:12,523 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingFailed
2019-05-06 12:53:12,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event RegisteredMessageReceived
2019-05-06 12:53:12,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintResumed
2019-05-06 12:53:12,527 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Eject
2019-05-06 12:53:12,528 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Waiting
2019-05-06 12:53:12,529 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureFailed
2019-05-06 12:53:12,531 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingDone
2019-05-06 12:53:12,532 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileDeleted
2019-05-06 12:53:12,533 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ZChange
2019-05-06 12:53:12,534 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileModified
2019-05-06 12:53:12,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintStarted
2019-05-06 12:53:12,536 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileAdded
2019-05-06 12:53:12,537 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ConnectivityChanged
2019-05-06 12:53:12,539 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterReset
2019-05-06 12:53:12,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintFailed
2019-05-06 12:53:12,541 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connected
2019-05-06 12:53:12,549 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:12,551 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PositionUpdate
2019-05-06 12:53:12,552 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingStarted
2019-05-06 12:53:12,553 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterProfileDeleted
2019-05-06 12:53:12,554 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferStarted
2019-05-06 12:53:12,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Shutdown
2019-05-06 12:53:12,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileModified
2019-05-06 12:53:12,556 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrinterStateChanged
2019-05-06 12:53:12,557 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieFailed
2019-05-06 12:53:12,560 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileAdded
2019-05-06 12:53:12,561 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:12,562 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintPaused
2019-05-06 12:53:12,563 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileSelected
2019-05-06 12:53:12,564 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelled
2019-05-06 12:53:12,586 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MetadataAnalysisStarted
2019-05-06 12:53:12,588 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FolderAdded
2019-05-06 12:53:12,589 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:12,590 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Conveyor
2019-05-06 12:53:12,591 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Connecting
2019-05-06 12:53:12,592 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Disconnecting
2019-05-06 12:53:12,594 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferFailed
2019-05-06 12:53:12,596 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientClosed
2019-05-06 12:53:12,599 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event EStop
2019-05-06 12:53:12,599 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event FileRemoved
2019-05-06 12:53:12,620 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PostRollStart
2019-05-06 12:53:12,621 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Home
2019-05-06 12:53:12,622 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:12,623 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Cooling
2019-05-06 12:53:12,625 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Upload
2019-05-06 12:53:12,626 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:12,627 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Error
2019-05-06 12:53:12,628 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Dwelling
2019-05-06 12:53:12,630 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event SlicingProfileAdded
2019-05-06 12:53:12,631 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:12,632 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Startup
2019-05-06 12:53:12,660 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureStart
2019-05-06 12:53:12,661 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event ClientOpened
2019-05-06 12:53:12,663 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event Alert
2019-05-06 12:53:12,701 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event TransferDone
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event PrintCancelling
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event MovieDone
2019-05-06 12:53:12,703 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6be38070>> for event CaptureDone
2019-05-06 12:53:12,824 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:12,916 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:12,917 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:12,918 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:12,919 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:12,930 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:12,931 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:12,933 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:12,934 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:12,936 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:12,938 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:12,939 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:12,940 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:12,941 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:12,943 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:12,944 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:12,992 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:16,835 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:16,837 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:16,855 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:53:16,902 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:_default:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:23,695 - octoprint.server.util.flask - DEBUG - Needed 15.53s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:23,704 - octoprint.server.preemptive_cache - INFO - ... done in 16.19s
2019-05-06 12:53:23,707 - octoprint.server.util.flask - DEBUG - Needed 6.80s to render / (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:24,754 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:24,837 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:24,839 - octoprint.server.util.flask - INFO - Passively logging in user DLR from 10.97.3.15
2019-05-06 12:53:26,086 - octoprint.server.util.sockjs - INFO - User DLR logged in on the socket from client 10.97.3.15
2019-05-06 12:53:26,090 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:26,090 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:26,091 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:26,092 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:26,092 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:26,094 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOn
2019-05-06 12:53:26,095 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FirmwareData
2019-05-06 12:53:26,097 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileDeselected
2019-05-06 12:53:26,098 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollEnd
2019-05-06 12:53:26,099 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderRemoved
2019-05-06 12:53:26,101 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOff
2019-05-06 12:53:26,102 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintDone
2019-05-06 12:53:26,103 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:26,104 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event UpdatedFiles
2019-05-06 12:53:26,105 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataStatisticsUpdated
2019-05-06 12:53:26,106 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingCancelled
2019-05-06 12:53:26,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnected
2019-05-06 12:53:26,107 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SettingsUpdated
2019-05-06 12:53:26,109 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ToolChange
2019-05-06 12:53:26,110 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieRendering
2019-05-06 12:53:26,111 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:26,112 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisFinished
2019-05-06 12:53:26,113 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingFailed
2019-05-06 12:53:26,114 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event RegisteredMessageReceived
2019-05-06 12:53:26,115 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintResumed
2019-05-06 12:53:26,116 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Eject
2019-05-06 12:53:26,116 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Waiting
2019-05-06 12:53:26,117 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureFailed
2019-05-06 12:53:26,118 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingDone
2019-05-06 12:53:26,119 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileDeleted
2019-05-06 12:53:26,120 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ZChange
2019-05-06 12:53:26,121 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileModified
2019-05-06 12:53:26,122 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintStarted
2019-05-06 12:53:26,123 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileAdded
2019-05-06 12:53:26,124 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ConnectivityChanged
2019-05-06 12:53:26,125 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterReset
2019-05-06 12:53:26,126 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintFailed
2019-05-06 12:53:26,127 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connected
2019-05-06 12:53:26,128 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:26,129 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PositionUpdate
2019-05-06 12:53:26,130 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingStarted
2019-05-06 12:53:26,131 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileDeleted
2019-05-06 12:53:26,131 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferStarted
2019-05-06 12:53:26,133 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Shutdown
2019-05-06 12:53:26,134 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileModified
2019-05-06 12:53:26,135 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterStateChanged
2019-05-06 12:53:26,136 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieFailed
2019-05-06 12:53:26,137 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileAdded
2019-05-06 12:53:26,137 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:26,138 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintPaused
2019-05-06 12:53:26,139 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileSelected
2019-05-06 12:53:26,140 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelled
2019-05-06 12:53:26,141 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisStarted
2019-05-06 12:53:26,142 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderAdded
2019-05-06 12:53:26,143 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:26,144 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Conveyor
2019-05-06 12:53:26,144 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connecting
2019-05-06 12:53:26,145 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnecting
2019-05-06 12:53:26,146 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferFailed
2019-05-06 12:53:26,147 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientClosed
2019-05-06 12:53:26,149 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event EStop
2019-05-06 12:53:26,150 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileRemoved
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollStart
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Home
2019-05-06 12:53:26,151 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:26,152 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Cooling
2019-05-06 12:53:26,153 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Upload
2019-05-06 12:53:26,153 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:26,155 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Error
2019-05-06 12:53:26,156 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Dwelling
2019-05-06 12:53:26,157 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileAdded
2019-05-06 12:53:26,158 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:26,158 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Startup
2019-05-06 12:53:26,160 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureStart
2019-05-06 12:53:26,161 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientOpened
2019-05-06 12:53:26,162 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Alert
2019-05-06 12:53:26,162 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferDone
2019-05-06 12:53:26,163 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelling
2019-05-06 12:53:26,164 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieDone
2019-05-06 12:53:26,165 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureDone
2019-05-06 12:53:33,447 - octoprint.users - DEBUG - Logged out user: SessionUser(User(id=DLR,name=DLR,active=True,user=True,admin=False),session=PPFYE0jdgD,created=25.851497989)
2019-05-06 12:53:33,503 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOn
2019-05-06 12:53:33,504 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FirmwareData
2019-05-06 12:53:33,505 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileDeselected
2019-05-06 12:53:33,506 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:33,508 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollEnd
2019-05-06 12:53:33,509 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>>
2019-05-06 12:53:33,513 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderRemoved
2019-05-06 12:53:33,514 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:33,515 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PowerOff
2019-05-06 12:53:33,516 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:33,517 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintDone
2019-05-06 12:53:33,518 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:33,519 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:33,520 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:33,521 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event UpdatedFiles
2019-05-06 12:53:33,522 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:33,523 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataStatisticsUpdated
2019-05-06 12:53:33,523 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:33,524 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingCancelled
2019-05-06 12:53:33,526 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnected
2019-05-06 12:53:33,528 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SettingsUpdated
2019-05-06 12:53:33,529 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ToolChange
2019-05-06 12:53:33,530 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieRendering
2019-05-06 12:53:33,532 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:33,533 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisFinished
2019-05-06 12:53:33,534 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingFailed
2019-05-06 12:53:33,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event RegisteredMessageReceived
2019-05-06 12:53:33,535 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintResumed
2019-05-06 12:53:33,536 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Eject
2019-05-06 12:53:33,537 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Waiting
2019-05-06 12:53:33,538 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureFailed
2019-05-06 12:53:33,539 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingDone
2019-05-06 12:53:33,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileDeleted
2019-05-06 12:53:33,540 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ZChange
2019-05-06 12:53:33,541 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileModified
2019-05-06 12:53:33,542 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintStarted
2019-05-06 12:53:33,543 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileAdded
2019-05-06 12:53:33,544 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ConnectivityChanged
2019-05-06 12:53:33,546 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterReset
2019-05-06 12:53:33,547 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintFailed
2019-05-06 12:53:33,548 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connected
2019-05-06 12:53:33,549 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:33,550 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PositionUpdate
2019-05-06 12:53:33,551 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingStarted
2019-05-06 12:53:33,552 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterProfileDeleted
2019-05-06 12:53:33,553 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferStarted
2019-05-06 12:53:33,554 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Shutdown
2019-05-06 12:53:33,555 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileModified
2019-05-06 12:53:33,556 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrinterStateChanged
2019-05-06 12:53:33,557 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieFailed
2019-05-06 12:53:33,558 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileAdded
2019-05-06 12:53:33,558 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:33,559 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintPaused
2019-05-06 12:53:33,560 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileSelected
2019-05-06 12:53:33,561 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelled
2019-05-06 12:53:33,562 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MetadataAnalysisStarted
2019-05-06 12:53:33,563 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FolderAdded
2019-05-06 12:53:33,564 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:33,565 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Conveyor
2019-05-06 12:53:33,566 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Connecting
2019-05-06 12:53:33,567 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Disconnecting
2019-05-06 12:53:33,568 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferFailed
2019-05-06 12:53:33,569 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientClosed
2019-05-06 12:53:33,570 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event EStop
2019-05-06 12:53:33,571 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event FileRemoved
2019-05-06 12:53:33,572 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PostRollStart
2019-05-06 12:53:33,573 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Home
2019-05-06 12:53:33,574 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:33,575 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Cooling
2019-05-06 12:53:33,576 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Upload
2019-05-06 12:53:33,577 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:33,578 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Error
2019-05-06 12:53:33,579 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Dwelling
2019-05-06 12:53:33,580 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event SlicingProfileAdded
2019-05-06 12:53:33,581 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:33,582 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Startup
2019-05-06 12:53:33,582 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureStart
2019-05-06 12:53:33,583 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event ClientOpened
2019-05-06 12:53:33,584 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event Alert
2019-05-06 12:53:33,585 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event TransferDone
2019-05-06 12:53:33,586 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event PrintCancelling
2019-05-06 12:53:33,587 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event MovieDone
2019-05-06 12:53:33,588 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6bad6270>> for event CaptureDone
2019-05-06 12:53:33,589 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:33,614 - octoprint.server.util.flask - DEBUG - No cache entry or refreshing cache for / (key: ui:forcelogin:http://129.247.189.242:30141/:de), calling wrapped function
2019-05-06 12:53:34,141 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:34,143 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:34,144 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:34,145 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:34,146 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:34,147 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:34,148 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:34,149 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:34,151 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:34,152 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:34,153 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:34,154 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:34,155 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:34,156 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:34,158 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:34,176 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:34,181 - octoprint.server.util.flask - DEBUG - Needed 0.57s to render / (key: ui:forcelogin:http://129.247.189.242:30141/:de)
2019-05-06 12:53:34,206 - tornado.access - WARNING - 403 GET /api/settings (10.97.3.15) 12.46ms
2019-05-06 12:53:34,454 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:42,967 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:42,972 - octoprint.server.api - INFO - Actively logging in user pi from 10.97.3.15
2019-05-06 12:53:42,997 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
2019-05-06 12:53:42,998 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:43,002 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:43,003 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:43,004 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:43,005 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:43,008 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:43,010 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:43,041 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:43,045 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:53:43,075 - octoprint.server.util.flask.PreemptiveCache - DEBUG - Updating timestamp and counter for / and {'query_string': 'l10n=de', 'path': u'/', 'base_url': u'http://129.247.189.242:30141/'}
2019-05-06 12:53:43,162 - octoprint.server.util.flask - DEBUG - Serving entry for / from cache (key: ui:_default:http://129.247.189.242:30141/:de)
2019-05-06 12:53:43,654 - octoprint.server.util.sockjs - INFO - New connection from client: 10.97.3.15
2019-05-06 12:53:43,744 - octoprint.users - DEBUG - Logged in user: SessionUser(User(id=pi,name=pi,active=True,user=True,admin=True),session=ZifzO6ni9B,created=60.062953529)
2019-05-06 12:53:43,746 - octoprint.server.util.flask - INFO - Passively logging in user pi from 10.97.3.15
2019-05-06 12:53:44,846 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:44,848 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:44,849 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:44,850 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:44,851 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:44,853 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:44,854 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:44,855 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:44,856 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:44,857 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:44,858 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:44,860 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:44,861 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:44,862 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:44,863 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:44,882 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:45,338 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin tracking
2019-05-06 12:53:45,339 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin logging
2019-05-06 12:53:45,341 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin appkeys
2019-05-06 12:53:45,343 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin virtual_printer
2019-05-06 12:53:45,344 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin action_command_prompt
2019-05-06 12:53:45,345 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin corewizard
2019-05-06 12:53:45,346 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pi_support
2019-05-06 12:53:45,347 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin printer_safety_check
2019-05-06 12:53:45,348 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin softwareupdate
2019-05-06 12:53:45,349 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin errortracking
2019-05-06 12:53:45,351 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin announcements
2019-05-06 12:53:45,352 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin forcelogin
2019-05-06 12:53:45,353 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin pluginmanager
2019-05-06 12:53:45,354 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin backup
2019-05-06 12:53:45,355 - octoprint.server.util.flask - DEBUG - No translations for locale de from plugin discovery
2019-05-06 12:53:45,374 - octoprint.server.util.flask - DEBUG - Using translation core folder /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/translations for locale de
2019-05-06 12:53:45,474 - octoprint.server.util.sockjs - INFO - User pi logged in on the socket from client 10.97.3.15
2019-05-06 12:53:45,477 - octoprint.events.fire - DEBUG - Firing event: ClientOpened (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:45,478 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:45,479 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:45,481 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:45,481 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOn
2019-05-06 12:53:45,483 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:45,484 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FirmwareData
2019-05-06 12:53:45,486 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileDeselected
2019-05-06 12:53:45,487 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollEnd
2019-05-06 12:53:45,488 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderRemoved
2019-05-06 12:53:45,489 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOff
2019-05-06 12:53:45,489 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintDone
2019-05-06 12:53:45,490 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:45,491 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event UpdatedFiles
2019-05-06 12:53:45,492 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataStatisticsUpdated
2019-05-06 12:53:45,493 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingCancelled
2019-05-06 12:53:45,494 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnected
2019-05-06 12:53:45,496 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SettingsUpdated
2019-05-06 12:53:45,496 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ToolChange
2019-05-06 12:53:45,497 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieRendering
2019-05-06 12:53:45,498 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:45,499 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisFinished
2019-05-06 12:53:45,500 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingFailed
2019-05-06 12:53:45,501 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event RegisteredMessageReceived
2019-05-06 12:53:45,502 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintResumed
2019-05-06 12:53:45,503 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Eject
2019-05-06 12:53:45,504 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Waiting
2019-05-06 12:53:45,504 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureFailed
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingDone
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileDeleted
2019-05-06 12:53:45,505 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ZChange
2019-05-06 12:53:45,506 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileModified
2019-05-06 12:53:45,509 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintStarted
2019-05-06 12:53:45,510 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileAdded
2019-05-06 12:53:45,511 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ConnectivityChanged
2019-05-06 12:53:45,512 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterReset
2019-05-06 12:53:45,513 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintFailed
2019-05-06 12:53:45,514 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connected
2019-05-06 12:53:45,515 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:45,516 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PositionUpdate
2019-05-06 12:53:45,517 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingStarted
2019-05-06 12:53:45,517 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileDeleted
2019-05-06 12:53:45,518 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferStarted
2019-05-06 12:53:45,519 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Shutdown
2019-05-06 12:53:45,520 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileModified
2019-05-06 12:53:45,521 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterStateChanged
2019-05-06 12:53:45,522 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieFailed
2019-05-06 12:53:45,522 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileAdded
2019-05-06 12:53:45,524 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:45,525 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintPaused
2019-05-06 12:53:45,526 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileSelected
2019-05-06 12:53:45,527 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelled
2019-05-06 12:53:45,528 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisStarted
2019-05-06 12:53:45,529 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderAdded
2019-05-06 12:53:45,530 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:45,531 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Conveyor
2019-05-06 12:53:45,532 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connecting
2019-05-06 12:53:45,533 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnecting
2019-05-06 12:53:45,534 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferFailed
2019-05-06 12:53:45,535 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientClosed
2019-05-06 12:53:45,536 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event EStop
2019-05-06 12:53:45,537 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileRemoved
2019-05-06 12:53:45,538 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollStart
2019-05-06 12:53:45,540 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Home
2019-05-06 12:53:45,541 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:45,541 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Cooling
2019-05-06 12:53:45,543 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Upload
2019-05-06 12:53:45,543 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:45,545 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Error
2019-05-06 12:53:45,546 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Dwelling
2019-05-06 12:53:45,546 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileAdded
2019-05-06 12:53:45,547 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:45,548 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Startup
2019-05-06 12:53:45,549 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureStart
2019-05-06 12:53:45,550 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientOpened
2019-05-06 12:53:45,551 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Alert
2019-05-06 12:53:45,552 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferDone
2019-05-06 12:53:45,553 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelling
2019-05-06 12:53:45,554 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieDone
2019-05-06 12:53:45,555 - octoprint.events - DEBUG - Subscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureDone
2019-05-06 12:53:54,986 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOn
2019-05-06 12:53:54,987 - octoprint.events.fire - DEBUG - Firing event: ClientClosed (Payload: {'remoteAddress': '10.97.3.15'})
2019-05-06 12:53:54,988 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FirmwareData
2019-05-06 12:53:54,989 - octoprint.events - DEBUG - Sending action to <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>>
2019-05-06 12:53:54,991 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileDeselected
2019-05-06 12:53:54,993 - octoprint.plugin - DEBUG - Calling on_event on action_command_prompt
2019-05-06 12:53:54,996 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollEnd
2019-05-06 12:53:54,997 - octoprint.plugin - DEBUG - Calling on_event on announcements
2019-05-06 12:53:55,000 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderRemoved
2019-05-06 12:53:55,001 - octoprint.plugin - DEBUG - Calling on_event on pluginmanager
2019-05-06 12:53:55,004 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PowerOff
2019-05-06 12:53:55,005 - octoprint.plugin - DEBUG - Calling on_event on printer_safety_check
2019-05-06 12:53:55,007 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintDone
2019-05-06 12:53:55,008 - octoprint.plugin - DEBUG - Calling on_event on softwareupdate
2019-05-06 12:53:55,009 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_printer_safety_check_warning
2019-05-06 12:53:55,010 - octoprint.plugin - DEBUG - Calling on_event on tracking
2019-05-06 12:53:55,012 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event UpdatedFiles
2019-05-06 12:53:55,017 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataStatisticsUpdated
2019-05-06 12:53:55,019 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingCancelled
2019-05-06 12:53:55,020 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnected
2019-05-06 12:53:55,023 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SettingsUpdated
2019-05-06 12:53:55,025 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ToolChange
2019-05-06 12:53:55,026 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieRendering
2019-05-06 12:53:55,027 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pi_support_throttle_state
2019-05-06 12:53:55,030 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisFinished
2019-05-06 12:53:55,031 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingFailed
2019-05-06 12:53:55,033 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event RegisteredMessageReceived
2019-05-06 12:53:55,035 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintResumed
2019-05-06 12:53:55,037 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Eject
2019-05-06 12:53:55,038 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Waiting
2019-05-06 12:53:55,041 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureFailed
2019-05-06 12:53:55,043 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingDone
2019-05-06 12:53:55,045 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileDeleted
2019-05-06 12:53:55,047 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ZChange
2019-05-06 12:53:55,049 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileModified
2019-05-06 12:53:55,050 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintStarted
2019-05-06 12:53:55,053 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileAdded
2019-05-06 12:53:55,055 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ConnectivityChanged
2019-05-06 12:53:55,057 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterReset
2019-05-06 12:53:55,058 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintFailed
2019-05-06 12:53:55,060 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connected
2019-05-06 12:53:55,062 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_enable_plugin
2019-05-06 12:53:55,064 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PositionUpdate
2019-05-06 12:53:55,065 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingStarted
2019-05-06 12:53:55,067 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterProfileDeleted
2019-05-06 12:53:55,069 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferStarted
2019-05-06 12:53:55,070 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Shutdown
2019-05-06 12:53:55,072 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileModified
2019-05-06 12:53:55,074 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrinterStateChanged
2019-05-06 12:53:55,075 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieFailed
2019-05-06 12:53:55,076 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileAdded
2019-05-06 12:53:55,079 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_install_plugin
2019-05-06 12:53:55,081 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintPaused
2019-05-06 12:53:55,083 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileSelected
2019-05-06 12:53:55,084 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelled
2019-05-06 12:53:55,086 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MetadataAnalysisStarted
2019-05-06 12:53:55,088 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FolderAdded
2019-05-06 12:53:55,090 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_disable_plugin
2019-05-06 12:53:55,091 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Conveyor
2019-05-06 12:53:55,094 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Connecting
2019-05-06 12:53:55,096 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Disconnecting
2019-05-06 12:53:55,098 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferFailed
2019-05-06 12:53:55,100 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientClosed
2019-05-06 12:53:55,101 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event EStop
2019-05-06 12:53:55,102 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event FileRemoved
2019-05-06 12:53:55,103 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PostRollStart
2019-05-06 12:53:55,105 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Home
2019-05-06 12:53:55,108 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_succeeded
2019-05-06 12:53:55,110 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Cooling
2019-05-06 12:53:55,111 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Upload
2019-05-06 12:53:55,113 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_pluginmanager_uninstall_plugin
2019-05-06 12:53:55,115 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Error
2019-05-06 12:53:55,117 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Dwelling
2019-05-06 12:53:55,119 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event SlicingProfileAdded
2019-05-06 12:53:55,120 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event plugin_softwareupdate_update_failed
2019-05-06 12:53:55,123 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Startup
2019-05-06 12:53:55,125 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureStart
2019-05-06 12:53:55,127 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event ClientOpened
2019-05-06 12:53:55,128 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event Alert
2019-05-06 12:53:55,130 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event TransferDone
2019-05-06 12:53:55,132 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event PrintCancelling
2019-05-06 12:53:55,134 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event MovieDone
2019-05-06 12:53:55,135 - octoprint.events - DEBUG - Unsubscribed listener <bound method PrinterStateConnection._onEvent of <octoprint.server.util.sockjs.PrinterStateConnection object at 0x6ba37a10>> for event CaptureDone
2019-05-06 12:53:55,136 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.97.3.15
|
ValueError
|
def init_pluginsystem(
settings, safe_mode=False, ignore_blacklist=True, connectivity_checker=None
):
"""Initializes the plugin manager based on the settings."""
import os
# we need this so that octoprint.plugins is in sys.modules and no warnings are caused when loading bundled plugins
import octoprint.plugins
logger = log.getLogger(__name__ + ".startup")
plugin_folders = [
(
os.path.abspath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "plugins")
),
"octoprint.plugins",
True,
),
settings.getBaseFolder("plugins"),
]
plugin_entry_points = ["octoprint.plugin"]
plugin_disabled_list = settings.get(["plugins", "_disabled"])
plugin_blacklist = []
if not ignore_blacklist and settings.getBoolean(
["server", "pluginBlacklist", "enabled"]
):
plugin_blacklist = get_plugin_blacklist(
settings, connectivity_checker=connectivity_checker
)
plugin_validators = []
if safe_mode:
def validator(phase, plugin_info):
if phase in ("before_import", "before_load", "before_enable"):
setattr(plugin_info, "safe_mode_victim", not plugin_info.bundled)
if not plugin_info.bundled:
return False
return True
plugin_validators.append(validator)
compatibility_ignored_list = settings.get(["plugins", "_forcedCompatible"])
from octoprint.plugin import plugin_manager
pm = plugin_manager(
init=True,
plugin_folders=plugin_folders,
plugin_entry_points=plugin_entry_points,
plugin_disabled_list=plugin_disabled_list,
plugin_blacklist=plugin_blacklist,
plugin_validators=plugin_validators,
compatibility_ignored_list=compatibility_ignored_list,
)
settings_overlays = dict()
disabled_from_overlays = dict()
def handle_plugin_loaded(name, plugin):
if plugin.instance and hasattr(plugin.instance, "__plugin_settings_overlay__"):
plugin.needs_restart = True
# plugin has a settings overlay, inject it
overlay_definition = getattr(plugin.instance, "__plugin_settings_overlay__")
if isinstance(overlay_definition, (tuple, list)):
overlay_definition, order = overlay_definition
else:
order = None
overlay = settings.load_overlay(overlay_definition)
if "plugins" in overlay and "_disabled" in overlay["plugins"]:
disabled_plugins = overlay["plugins"]["_disabled"]
del overlay["plugins"]["_disabled"]
disabled_from_overlays[name] = (disabled_plugins, order)
settings_overlays[name] = overlay
logger.debug("Found settings overlay on plugin {}".format(name))
def handle_plugins_loaded(
startup=False, initialize_implementations=True, force_reload=None
):
if not startup:
return
from octoprint.util import sv
sorted_disabled_from_overlays = sorted(
[
(key, value[0], value[1])
for key, value in disabled_from_overlays.items()
],
key=lambda x: (x[2] is None, sv(x[2]), sv(x[0])),
)
disabled_list = pm.plugin_disabled_list
already_processed = []
for name, addons, _ in sorted_disabled_from_overlays:
if not name in disabled_list and not name.endswith("disabled"):
for addon in addons:
if addon in disabled_list:
continue
if addon in already_processed:
logger.info(
"Plugin {} wants to disable plugin {}, but that was already processed".format(
name, addon
)
)
if not addon in already_processed and not addon in disabled_list:
disabled_list.append(addon)
logger.info(
"Disabling plugin {} as defined by plugin {}".format(
addon, name
)
)
already_processed.append(name)
def handle_plugin_enabled(name, plugin):
if name in settings_overlays:
settings.add_overlay(settings_overlays[name])
logger.info("Added settings overlay from plugin {}".format(name))
pm.on_plugin_loaded = handle_plugin_loaded
pm.on_plugins_loaded = handle_plugins_loaded
pm.on_plugin_enabled = handle_plugin_enabled
pm.reload_plugins(startup=True, initialize_implementations=False)
return pm
|
def init_pluginsystem(
settings, safe_mode=False, ignore_blacklist=True, connectivity_checker=None
):
"""Initializes the plugin manager based on the settings."""
import os
# we need this so that octoprint.plugins is in sys.modules and no warnings are caused when loading bundled plugins
import octoprint.plugins
logger = log.getLogger(__name__ + ".startup")
plugin_folders = [
(
os.path.abspath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "plugins")
),
"octoprint.plugins",
True,
),
settings.getBaseFolder("plugins"),
]
plugin_entry_points = ["octoprint.plugin"]
plugin_disabled_list = settings.get(["plugins", "_disabled"])
plugin_blacklist = []
if not ignore_blacklist and settings.getBoolean(
["server", "pluginBlacklist", "enabled"]
):
plugin_blacklist = get_plugin_blacklist(
settings, connectivity_checker=connectivity_checker
)
plugin_validators = []
if safe_mode:
def validator(phase, plugin_info):
if phase in ("before_import", "before_load", "before_enable"):
setattr(plugin_info, "safe_mode_victim", not plugin_info.bundled)
if not plugin_info.bundled:
return False
return True
plugin_validators.append(validator)
compatibility_ignored_list = settings.get(["plugins", "_forcedCompatible"])
from octoprint.plugin import plugin_manager
pm = plugin_manager(
init=True,
plugin_folders=plugin_folders,
plugin_entry_points=plugin_entry_points,
plugin_disabled_list=plugin_disabled_list,
plugin_blacklist=plugin_blacklist,
plugin_validators=plugin_validators,
compatibility_ignored_list=compatibility_ignored_list,
)
settings_overlays = dict()
disabled_from_overlays = dict()
def handle_plugin_loaded(name, plugin):
if plugin.instance and hasattr(plugin.instance, "__plugin_settings_overlay__"):
plugin.needs_restart = True
# plugin has a settings overlay, inject it
overlay_definition = getattr(plugin.instance, "__plugin_settings_overlay__")
if isinstance(overlay_definition, (tuple, list)):
overlay_definition, order = overlay_definition
else:
order = None
overlay = settings.load_overlay(overlay_definition)
if "plugins" in overlay and "_disabled" in overlay["plugins"]:
disabled_plugins = overlay["plugins"]["_disabled"]
del overlay["plugins"]["_disabled"]
disabled_from_overlays[name] = (disabled_plugins, order)
settings_overlays[name] = overlay
logger.debug("Found settings overlay on plugin {}".format(name))
def handle_plugins_loaded(
startup=False, initialize_implementations=True, force_reload=None
):
if not startup:
return
sorted_disabled_from_overlays = sorted(
[
(key, value[0], value[1])
for key, value in disabled_from_overlays.items()
],
key=lambda x: (x[2] is None, x[2], x[0]),
)
disabled_list = pm.plugin_disabled_list
already_processed = []
for name, addons, _ in sorted_disabled_from_overlays:
if not name in disabled_list and not name.endswith("disabled"):
for addon in addons:
if addon in disabled_list:
continue
if addon in already_processed:
logger.info(
"Plugin {} wants to disable plugin {}, but that was already processed".format(
name, addon
)
)
if not addon in already_processed and not addon in disabled_list:
disabled_list.append(addon)
logger.info(
"Disabling plugin {} as defined by plugin {}".format(
addon, name
)
)
already_processed.append(name)
def handle_plugin_enabled(name, plugin):
if name in settings_overlays:
settings.add_overlay(settings_overlays[name])
logger.info("Added settings overlay from plugin {}".format(name))
pm.on_plugin_loaded = handle_plugin_loaded
pm.on_plugins_loaded = handle_plugins_loaded
pm.on_plugin_enabled = handle_plugin_enabled
pm.reload_plugins(startup=True, initialize_implementations=False)
return pm
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def handle_plugins_loaded(
startup=False, initialize_implementations=True, force_reload=None
):
if not startup:
return
from octoprint.util import sv
sorted_disabled_from_overlays = sorted(
[(key, value[0], value[1]) for key, value in disabled_from_overlays.items()],
key=lambda x: (x[2] is None, sv(x[2]), sv(x[0])),
)
disabled_list = pm.plugin_disabled_list
already_processed = []
for name, addons, _ in sorted_disabled_from_overlays:
if not name in disabled_list and not name.endswith("disabled"):
for addon in addons:
if addon in disabled_list:
continue
if addon in already_processed:
logger.info(
"Plugin {} wants to disable plugin {}, but that was already processed".format(
name, addon
)
)
if not addon in already_processed and not addon in disabled_list:
disabled_list.append(addon)
logger.info(
"Disabling plugin {} as defined by plugin {}".format(
addon, name
)
)
already_processed.append(name)
|
def handle_plugins_loaded(
startup=False, initialize_implementations=True, force_reload=None
):
if not startup:
return
sorted_disabled_from_overlays = sorted(
[(key, value[0], value[1]) for key, value in disabled_from_overlays.items()],
key=lambda x: (x[2] is None, x[2], x[0]),
)
disabled_list = pm.plugin_disabled_list
already_processed = []
for name, addons, _ in sorted_disabled_from_overlays:
if not name in disabled_list and not name.endswith("disabled"):
for addon in addons:
if addon in disabled_list:
continue
if addon in already_processed:
logger.info(
"Plugin {} wants to disable plugin {}, but that was already processed".format(
name, addon
)
)
if not addon in already_processed and not addon in disabled_list:
disabled_list.append(addon)
logger.info(
"Disabling plugin {} as defined by plugin {}".format(
addon, name
)
)
already_processed.append(name)
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def _print_list(users):
click.echo("{} users registered in the system:".format(len(users)))
for user in sorted(
map(lambda x: x.as_dict(), users), key=lambda x: sv(x.get("name"))
):
click.echo("\t{}".format(_user_to_line(user)))
|
def _print_list(users):
click.echo("{} users registered in the system:".format(len(users)))
for user in sorted(map(lambda x: x.as_dict(), users), key=lambda x: x.get("name")):
click.echo("\t{}".format(_user_to_line(user)))
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def get_implementations(self, *types, **kwargs):
"""
Get all mixin implementations that implement *all* of the provided ``types``.
Arguments:
types (one or more type): The types a mixin implementation needs to implement in order to be returned.
Returns:
list: A list of all found implementations
"""
sorting_context = kwargs.get("sorting_context", None)
result = None
for t in types:
implementations = self.plugin_implementations_by_type[t]
if result is None:
result = set(implementations)
else:
result = result.intersection(implementations)
if result is None:
return []
def sort_func(impl):
sorting_value = None
if sorting_context is not None and isinstance(impl[1], SortablePlugin):
try:
sorting_value = impl[1].get_sorting_key(sorting_context)
except Exception:
self.logger.exception(
"Error while trying to retrieve sorting order for plugin {}".format(
impl[0]
)
)
if sorting_value is not None:
try:
sorting_value = int(sorting_value)
except ValueError:
self.logger.warning(
"The order value returned by {} for sorting context {} is not a valid integer, ignoring it".format(
impl[0], sorting_context
)
)
sorting_value = None
plugin_info = self.get_plugin_info(impl[0], require_enabled=False)
return (
sorting_value is None,
sv(sorting_value),
not plugin_info.bundled if plugin_info else True,
sv(impl[0]),
)
return [impl[1] for impl in sorted(result, key=sort_func)]
|
def get_implementations(self, *types, **kwargs):
"""
Get all mixin implementations that implement *all* of the provided ``types``.
Arguments:
types (one or more type): The types a mixin implementation needs to implement in order to be returned.
Returns:
list: A list of all found implementations
"""
sorting_context = kwargs.get("sorting_context", None)
result = None
for t in types:
implementations = self.plugin_implementations_by_type[t]
if result is None:
result = set(implementations)
else:
result = result.intersection(implementations)
if result is None:
return []
def sort_func(impl):
sorting_value = None
if sorting_context is not None and isinstance(impl[1], SortablePlugin):
try:
sorting_value = impl[1].get_sorting_key(sorting_context)
except Exception:
self.logger.exception(
"Error while trying to retrieve sorting order for plugin {}".format(
impl[0]
)
)
if sorting_value is not None:
try:
sorting_value = int(sorting_value)
except ValueError:
self.logger.warning(
"The order value returned by {} for sorting context {} is not a valid integer, ignoring it".format(
impl[0], sorting_context
)
)
sorting_value = None
plugin_info = self.get_plugin_info(impl[0], require_enabled=False)
return (
sorting_value is None,
sorting_value,
not plugin_info.bundled if plugin_info else True,
impl[0],
)
return [impl[1] for impl in sorted(result, key=sort_func)]
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def sort_func(impl):
sorting_value = None
if sorting_context is not None and isinstance(impl[1], SortablePlugin):
try:
sorting_value = impl[1].get_sorting_key(sorting_context)
except Exception:
self.logger.exception(
"Error while trying to retrieve sorting order for plugin {}".format(
impl[0]
)
)
if sorting_value is not None:
try:
sorting_value = int(sorting_value)
except ValueError:
self.logger.warning(
"The order value returned by {} for sorting context {} is not a valid integer, ignoring it".format(
impl[0], sorting_context
)
)
sorting_value = None
plugin_info = self.get_plugin_info(impl[0], require_enabled=False)
return (
sorting_value is None,
sv(sorting_value),
not plugin_info.bundled if plugin_info else True,
sv(impl[0]),
)
|
def sort_func(impl):
sorting_value = None
if sorting_context is not None and isinstance(impl[1], SortablePlugin):
try:
sorting_value = impl[1].get_sorting_key(sorting_context)
except Exception:
self.logger.exception(
"Error while trying to retrieve sorting order for plugin {}".format(
impl[0]
)
)
if sorting_value is not None:
try:
sorting_value = int(sorting_value)
except ValueError:
self.logger.warning(
"The order value returned by {} for sorting context {} is not a valid integer, ignoring it".format(
impl[0], sorting_context
)
)
sorting_value = None
plugin_info = self.get_plugin_info(impl[0], require_enabled=False)
return (
sorting_value is None,
sorting_value,
not plugin_info.bundled if plugin_info else True,
impl[0],
)
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def _sort_hooks(self, hook):
self._plugin_hooks[hook] = sorted(
self._plugin_hooks[hook],
key=lambda x: (x[0] is None, sv(x[0]), sv(x[1]), sv(x[2])),
)
|
def _sort_hooks(self, hook):
self._plugin_hooks[hook] = sorted(
self._plugin_hooks[hook], key=lambda x: (x[0] is None, x[0], x[1], x[2])
)
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def _create_etag(path, filter, recursive, lm=None):
if lm is None:
lm = _create_lastmodified(path, recursive)
if lm is None:
return None
hash = hashlib.sha1()
def hash_update(value):
value = value.encode("utf-8")
hash.update(value)
hash_update(str(lm))
hash_update(str(filter))
hash_update(str(recursive))
if path.endswith("/files") or path.endswith("/files/sdcard"):
# include sd data in etag
hash_update(repr(sorted(printer.get_sd_files(), key=lambda x: sv(x[0]))))
hash_update(_DATA_FORMAT_VERSION) # increment version if we change the API format
return hash.hexdigest()
|
def _create_etag(path, filter, recursive, lm=None):
if lm is None:
lm = _create_lastmodified(path, recursive)
if lm is None:
return None
hash = hashlib.sha1()
def hash_update(value):
value = value.encode("utf-8")
hash.update(value)
hash_update(str(lm))
hash_update(str(filter))
hash_update(str(recursive))
if path.endswith("/files") or path.endswith("/files/sdcard"):
# include sd data in etag
hash_update(repr(sorted(printer.get_sd_files(), key=lambda x: x[0])))
hash_update(_DATA_FORMAT_VERSION) # increment version if we change the API format
return hash.hexdigest()
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def fetch_template_data(refresh=False):
global _templates, _plugin_names, _plugin_vars
locale = g.locale.language if g.locale else "en"
if (
not refresh
and _templates.get(locale) is not None
and _plugin_names is not None
and _plugin_vars is not None
):
return _templates[locale], _plugin_names, _plugin_vars
first_run = settings().getBoolean(["server", "firstRun"])
##~~ prepare templates
templates = defaultdict(lambda: dict(order=[], entries=dict()))
# rules for transforming template configs to template entries
template_rules = dict(
navbar=dict(
div=lambda x: "navbar_plugin_" + x,
template=lambda x: x + "_navbar.jinja2",
to_entry=lambda data: data,
),
sidebar=dict(
div=lambda x: "sidebar_plugin_" + x,
template=lambda x: x + "_sidebar.jinja2",
to_entry=lambda data: (data["name"], data),
),
tab=dict(
div=lambda x: "tab_plugin_" + x,
template=lambda x: x + "_tab.jinja2",
to_entry=lambda data: (data["name"], data),
),
settings=dict(
div=lambda x: "settings_plugin_" + x,
template=lambda x: x + "_settings.jinja2",
to_entry=lambda data: (data["name"], data),
),
usersettings=dict(
div=lambda x: "usersettings_plugin_" + x,
template=lambda x: x + "_usersettings.jinja2",
to_entry=lambda data: (data["name"], data),
),
wizard=dict(
div=lambda x: "wizard_plugin_" + x,
template=lambda x: x + "_wizard.jinja2",
to_entry=lambda data: (data["name"], data),
),
about=dict(
div=lambda x: "about_plugin_" + x,
template=lambda x: x + "_about.jinja2",
to_entry=lambda data: (data["name"], data),
),
generic=dict(template=lambda x: x + ".jinja2", to_entry=lambda data: data),
)
# sorting orders
def wizard_key_extractor(d, k):
if d[1].get("_key", None) == "plugin_corewizard_acl":
# Ultra special case - we MUST always have the ACL wizard first since otherwise any steps that follow and
# that require to access APIs to function will run into errors since those APIs won't work before ACL
# has been configured. See also #2140
return "0:{}".format(to_unicode(d[0]))
elif d[1].get("mandatory", False):
# Other mandatory steps come before the optional ones
return "1:{}".format(to_unicode(d[0]))
else:
# Finally everything else
return "2:{}".format(to_unicode(d[0]))
template_sorting = dict(
navbar=dict(add="prepend", key=None),
sidebar=dict(add="append", key="name"),
tab=dict(add="append", key="name"),
settings=dict(
add="custom_append",
key="name",
custom_add_entries=lambda missing: dict(
section_plugins=(gettext("Plugins"), None)
),
custom_add_order=lambda missing: ["section_plugins"] + missing,
),
usersettings=dict(add="append", key="name"),
wizard=dict(add="append", key="name", key_extractor=wizard_key_extractor),
about=dict(add="append", key="name"),
generic=dict(add="append", key=None),
)
hooks = pluginManager.get_hooks("octoprint.ui.web.templatetypes")
for name, hook in hooks.items():
try:
result = hook(dict(template_sorting), dict(template_rules))
except Exception:
_logger.exception(
"Error while retrieving custom template type "
"definitions from plugin {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if not isinstance(result, list):
continue
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
key, order, rule = entry
# order defaults
if "add" not in order:
order["add"] = "prepend"
if "key" not in order:
order["key"] = "name"
# rule defaults
if "div" not in rule:
# default div name: <hook plugin>_<template_key>_plugin_<plugin>
div = "{name}_{key}_plugin_".format(**locals())
rule["div"] = lambda x: div + x
if "template" not in rule:
# default template name: <plugin>_plugin_<hook plugin>_<template key>.jinja2
template = "_plugin_{name}_{key}.jinja2".format(**locals())
rule["template"] = lambda x: x + template
if "to_entry" not in rule:
# default to_entry assumes existing "name" property to be used as label for 2-tuple entry data structure (<name>, <properties>)
rule["to_entry"] = lambda data: (data["name"], data)
template_rules["plugin_" + name + "_" + key] = rule
template_sorting["plugin_" + name + "_" + key] = order
template_types = list(template_rules.keys())
# navbar
templates["navbar"]["entries"] = dict(
settings=dict(
template="navbar/settings.jinja2",
_div="navbar_settings",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.SETTINGS)",
),
systemmenu=dict(
template="navbar/systemmenu.jinja2",
_div="navbar_systemmenu",
classes=["dropdown"],
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.SYSTEM)",
custom_bindings=False,
),
login=dict(
template="navbar/login.jinja2",
_div="navbar_login",
classes=["dropdown"],
custom_bindings=False,
),
)
# sidebar
templates["sidebar"]["entries"] = dict(
connection=(
gettext("Connection"),
dict(
template="sidebar/connection.jinja2",
_div="connection",
icon="signal",
styles_wrapper=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.CONNECTION)",
template_header="sidebar/connection_header.jinja2",
),
),
state=(
gettext("State"),
dict(
template="sidebar/state.jinja2",
_div="state",
icon="info-circle",
styles_wrapper=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.STATUS)",
),
),
files=(
gettext("Files"),
dict(
template="sidebar/files.jinja2",
_div="files",
icon="list",
classes_content=["overflow_visible"],
template_header="sidebar/files_header.jinja2",
styles_wrapper=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.FILES_LIST)",
),
),
)
# tabs
templates["tab"]["entries"] = dict(
temperature=(
gettext("Temperature"),
dict(
template="tabs/temperature.jinja2",
_div="temp",
styles=["display: none;"],
data_bind="visible: loginState.hasAnyPermissionKo(access.permissions.STATUS, access.permissions.CONTROL) && visible()",
),
),
control=(
gettext("Control"),
dict(
template="tabs/control.jinja2",
_div="control",
styles=["display: none;"],
data_bind="visible: loginState.hasAnyPermissionKo(access.permissions.WEBCAM, access.permissions.CONTROL)",
),
),
gcodeviewer=(
gettext("GCode Viewer"),
dict(
template="tabs/gcodeviewer.jinja2",
_div="gcode",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.GCODE_VIEWER)",
),
),
terminal=(
gettext("Terminal"),
dict(
template="tabs/terminal.jinja2",
_div="term",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.MONITOR_TERMINAL)",
),
),
timelapse=(
gettext("Timelapse"),
dict(
template="tabs/timelapse.jinja2",
_div="timelapse",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.TIMELAPSE_LIST)",
),
),
)
# settings dialog
templates["settings"]["entries"] = dict(
section_printer=(gettext("Printer"), None),
serial=(
gettext("Serial Connection"),
dict(
template="dialogs/settings/serialconnection.jinja2",
_div="settings_serialConnection",
custom_bindings=False,
),
),
printerprofiles=(
gettext("Printer Profiles"),
dict(
template="dialogs/settings/printerprofiles.jinja2",
_div="settings_printerProfiles",
custom_bindings=False,
),
),
temperatures=(
gettext("Temperatures"),
dict(
template="dialogs/settings/temperatures.jinja2",
_div="settings_temperature",
custom_bindings=False,
),
),
terminalfilters=(
gettext("Terminal Filters"),
dict(
template="dialogs/settings/terminalfilters.jinja2",
_div="settings_terminalFilters",
custom_bindings=False,
),
),
gcodescripts=(
gettext("GCODE Scripts"),
dict(
template="dialogs/settings/gcodescripts.jinja2",
_div="settings_gcodeScripts",
custom_bindings=False,
),
),
section_features=(gettext("Features"), None),
features=(
gettext("Features"),
dict(
template="dialogs/settings/features.jinja2",
_div="settings_features",
custom_bindings=False,
),
),
webcam=(
gettext("Webcam & Timelapse"),
dict(
template="dialogs/settings/webcam.jinja2",
_div="settings_webcam",
custom_bindings=False,
),
),
gcodevisualizer=(
gettext("GCODE Visualizer"),
dict(
template="dialogs/settings/gcodevisualizer.jinja2",
_div="settings_gcodegcodevisualizer",
custom_bindings=False,
),
),
api=(
gettext("API"),
dict(
template="dialogs/settings/api.jinja2",
_div="settings_api",
custom_bindings=False,
),
),
section_octoprint=(gettext("OctoPrint"), None),
accesscontrol=(
gettext("Access Control"),
dict(
template="dialogs/settings/accesscontrol.jinja2",
_div="settings_users",
custom_bindings=False,
),
),
folders=(
gettext("Folders"),
dict(
template="dialogs/settings/folders.jinja2",
_div="settings_folders",
custom_bindings=False,
),
),
appearance=(
gettext("Appearance"),
dict(
template="dialogs/settings/appearance.jinja2",
_div="settings_appearance",
custom_bindings=False,
),
),
server=(
gettext("Server"),
dict(
template="dialogs/settings/server.jinja2",
_div="settings_server",
custom_bindings=False,
),
),
)
# user settings dialog
templates["usersettings"]["entries"] = dict(
access=(
gettext("Access"),
dict(
template="dialogs/usersettings/access.jinja2",
_div="usersettings_access",
custom_bindings=False,
),
),
interface=(
gettext("Interface"),
dict(
template="dialogs/usersettings/interface.jinja2",
_div="usersettings_interface",
custom_bindings=False,
),
),
)
# wizard
if first_run:
def custom_insert_order(existing, missing):
if "firstrunstart" in missing:
missing.remove("firstrunstart")
if "firstrunend" in missing:
missing.remove("firstrunend")
return ["firstrunstart"] + existing + missing + ["firstrunend"]
template_sorting["wizard"].update(
dict(
add="custom_insert",
custom_insert_entries=lambda missing: dict(),
custom_insert_order=custom_insert_order,
)
)
templates["wizard"]["entries"] = dict(
firstrunstart=(
gettext("Start"),
dict(
template="dialogs/wizard/firstrun_start.jinja2",
_div="wizard_firstrun_start",
),
),
firstrunend=(
gettext("Finish"),
dict(
template="dialogs/wizard/firstrun_end.jinja2",
_div="wizard_firstrun_end",
),
),
)
# about dialog
templates["about"]["entries"] = dict(
about=(
"About OctoPrint",
dict(
template="dialogs/about/about.jinja2",
_div="about_about",
custom_bindings=False,
),
),
license=(
"OctoPrint License",
dict(
template="dialogs/about/license.jinja2",
_div="about_license",
custom_bindings=False,
),
),
thirdparty=(
"Third Party Licenses",
dict(
template="dialogs/about/thirdparty.jinja2",
_div="about_thirdparty",
custom_bindings=False,
),
),
authors=(
"Authors",
dict(
template="dialogs/about/authors.jinja2",
_div="about_authors",
custom_bindings=False,
),
),
changelog=(
"Changelog",
dict(
template="dialogs/about/changelog.jinja2",
_div="about_changelog",
custom_bindings=False,
),
),
supporters=(
"Supporters",
dict(
template="dialogs/about/supporters.jinja2",
_div="about_sponsors",
custom_bindings=False,
),
),
)
# extract data from template plugins
template_plugins = pluginManager.get_implementations(
octoprint.plugin.TemplatePlugin
)
plugin_vars = dict()
plugin_names = set()
seen_wizards = (
settings().get(["server", "seenWizards"]) if not first_run else dict()
)
for implementation in template_plugins:
name = implementation._identifier
plugin_names.add(name)
wizard_required = False
wizard_ignored = False
try:
vars = implementation.get_template_vars()
configs = implementation.get_template_configs()
if isinstance(implementation, octoprint.plugin.WizardPlugin):
wizard_required = implementation.is_wizard_required()
wizard_ignored = octoprint.plugin.WizardPlugin.is_wizard_ignored(
seen_wizards, implementation
)
except Exception:
_logger.exception(
"Error while retrieving template data for plugin {}, ignoring it".format(
name
),
extra=dict(plugin=name),
)
continue
if not isinstance(vars, dict):
vars = dict()
if not isinstance(configs, (list, tuple)):
configs = []
for var_name, var_value in vars.items():
plugin_vars["plugin_" + name + "_" + var_name] = var_value
includes = _process_template_configs(
name, implementation, configs, template_rules
)
if not wizard_required or wizard_ignored:
includes["wizard"] = list()
for t in template_types:
for include in includes[t]:
if t == "navbar" or t == "generic":
data = include
else:
data = include[1]
key = data["_key"]
if "replaces" in data:
key = data["replaces"]
templates[t]["entries"][key] = include
# ~~ order internal templates and plugins
# make sure that
# 1) we only have keys in our ordered list that we have entries for and
# 2) we have all entries located somewhere within the order
for t in template_types:
default_order = (
settings().get(
["appearance", "components", "order", t], merged=True, config=dict()
)
or []
)
configured_order = (
settings().get(["appearance", "components", "order", t], merged=True) or []
)
configured_disabled = (
settings().get(["appearance", "components", "disabled", t]) or []
)
# first create the ordered list of all component ids according to the configured order
templates[t]["order"] = [
x
for x in configured_order
if x in templates[t]["entries"] and not x in configured_disabled
]
# now append the entries from the default order that are not already in there
templates[t]["order"] += [
x
for x in default_order
if not x in templates[t]["order"]
and x in templates[t]["entries"]
and not x in configured_disabled
]
all_ordered = set(templates[t]["order"])
all_disabled = set(configured_disabled)
# check if anything is missing, if not we are done here
missing_in_order = (
set(templates[t]["entries"].keys())
.difference(all_ordered)
.difference(all_disabled)
)
if len(missing_in_order) == 0:
continue
# works with entries that are dicts and entries that are 2-tuples with the
# entry data at index 1
def config_extractor(item, key, default_value=None):
if isinstance(item, dict) and key in item:
return item[key] if key in item else default_value
elif (
isinstance(item, tuple)
and len(item) > 1
and isinstance(item[1], dict)
and key in item[1]
):
return item[1][key] if key in item[1] else default_value
return default_value
# finally add anything that's not included in our order yet
if template_sorting[t]["key"] is not None:
# we'll use our config extractor as default key extractor
extractor = config_extractor
# if template type provides custom extractor, make sure its exceptions are handled
if "key_extractor" in template_sorting[t] and callable(
template_sorting[t]["key_extractor"]
):
def create_safe_extractor(extractor):
def f(x, k):
try:
return extractor(x, k)
except Exception:
_logger.exception(
"Error while extracting sorting keys for template {}".format(
t
)
)
return None
return f
extractor = create_safe_extractor(template_sorting[t]["key_extractor"])
sort_key = template_sorting[t]["key"]
def key_func(x):
config = templates[t]["entries"][x]
entry_order = config_extractor(config, "order", default_value=None)
return (
entry_order is None,
sv(entry_order),
sv(extractor(config, sort_key)),
)
sorted_missing = sorted(missing_in_order, key=key_func)
else:
def key_func(x):
config = templates[t]["entries"][x]
entry_order = config_extractor(config, "order", default_value=None)
return entry_order is None, sv(entry_order)
sorted_missing = sorted(missing_in_order, key=key_func)
if template_sorting[t]["add"] == "prepend":
templates[t]["order"] = sorted_missing + templates[t]["order"]
elif template_sorting[t]["add"] == "append":
templates[t]["order"] += sorted_missing
elif (
template_sorting[t]["add"] == "custom_prepend"
and "custom_add_entries" in template_sorting[t]
and "custom_add_order" in template_sorting[t]
):
templates[t]["entries"].update(
template_sorting[t]["custom_add_entries"](sorted_missing)
)
templates[t]["order"] = (
template_sorting[t]["custom_add_order"](sorted_missing)
+ templates[t]["order"]
)
elif (
template_sorting[t]["add"] == "custom_append"
and "custom_add_entries" in template_sorting[t]
and "custom_add_order" in template_sorting[t]
):
templates[t]["entries"].update(
template_sorting[t]["custom_add_entries"](sorted_missing)
)
templates[t]["order"] += template_sorting[t]["custom_add_order"](
sorted_missing
)
elif (
template_sorting[t]["add"] == "custom_insert"
and "custom_insert_entries" in template_sorting[t]
and "custom_insert_order" in template_sorting[t]
):
templates[t]["entries"].update(
template_sorting[t]["custom_insert_entries"](sorted_missing)
)
templates[t]["order"] = template_sorting[t]["custom_insert_order"](
templates[t]["order"], sorted_missing
)
_templates[locale] = templates
_plugin_names = plugin_names
_plugin_vars = plugin_vars
return templates, plugin_names, plugin_vars
|
def fetch_template_data(refresh=False):
global _templates, _plugin_names, _plugin_vars
locale = g.locale.language if g.locale else "en"
if (
not refresh
and _templates.get(locale) is not None
and _plugin_names is not None
and _plugin_vars is not None
):
return _templates[locale], _plugin_names, _plugin_vars
first_run = settings().getBoolean(["server", "firstRun"])
##~~ prepare templates
templates = defaultdict(lambda: dict(order=[], entries=dict()))
# rules for transforming template configs to template entries
template_rules = dict(
navbar=dict(
div=lambda x: "navbar_plugin_" + x,
template=lambda x: x + "_navbar.jinja2",
to_entry=lambda data: data,
),
sidebar=dict(
div=lambda x: "sidebar_plugin_" + x,
template=lambda x: x + "_sidebar.jinja2",
to_entry=lambda data: (data["name"], data),
),
tab=dict(
div=lambda x: "tab_plugin_" + x,
template=lambda x: x + "_tab.jinja2",
to_entry=lambda data: (data["name"], data),
),
settings=dict(
div=lambda x: "settings_plugin_" + x,
template=lambda x: x + "_settings.jinja2",
to_entry=lambda data: (data["name"], data),
),
usersettings=dict(
div=lambda x: "usersettings_plugin_" + x,
template=lambda x: x + "_usersettings.jinja2",
to_entry=lambda data: (data["name"], data),
),
wizard=dict(
div=lambda x: "wizard_plugin_" + x,
template=lambda x: x + "_wizard.jinja2",
to_entry=lambda data: (data["name"], data),
),
about=dict(
div=lambda x: "about_plugin_" + x,
template=lambda x: x + "_about.jinja2",
to_entry=lambda data: (data["name"], data),
),
generic=dict(template=lambda x: x + ".jinja2", to_entry=lambda data: data),
)
# sorting orders
def wizard_key_extractor(d, k):
if d[1].get("_key", None) == "plugin_corewizard_acl":
# Ultra special case - we MUST always have the ACL wizard first since otherwise any steps that follow and
# that require to access APIs to function will run into errors since those APIs won't work before ACL
# has been configured. See also #2140
return "0:{}".format(to_unicode(d[0]))
elif d[1].get("mandatory", False):
# Other mandatory steps come before the optional ones
return "1:{}".format(to_unicode(d[0]))
else:
# Finally everything else
return "2:{}".format(to_unicode(d[0]))
template_sorting = dict(
navbar=dict(add="prepend", key=None),
sidebar=dict(add="append", key="name"),
tab=dict(add="append", key="name"),
settings=dict(
add="custom_append",
key="name",
custom_add_entries=lambda missing: dict(
section_plugins=(gettext("Plugins"), None)
),
custom_add_order=lambda missing: ["section_plugins"] + missing,
),
usersettings=dict(add="append", key="name"),
wizard=dict(add="append", key="name", key_extractor=wizard_key_extractor),
about=dict(add="append", key="name"),
generic=dict(add="append", key=None),
)
hooks = pluginManager.get_hooks("octoprint.ui.web.templatetypes")
for name, hook in hooks.items():
try:
result = hook(dict(template_sorting), dict(template_rules))
except Exception:
_logger.exception(
"Error while retrieving custom template type "
"definitions from plugin {name}".format(**locals()),
extra=dict(plugin=name),
)
else:
if not isinstance(result, list):
continue
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
key, order, rule = entry
# order defaults
if "add" not in order:
order["add"] = "prepend"
if "key" not in order:
order["key"] = "name"
# rule defaults
if "div" not in rule:
# default div name: <hook plugin>_<template_key>_plugin_<plugin>
div = "{name}_{key}_plugin_".format(**locals())
rule["div"] = lambda x: div + x
if "template" not in rule:
# default template name: <plugin>_plugin_<hook plugin>_<template key>.jinja2
template = "_plugin_{name}_{key}.jinja2".format(**locals())
rule["template"] = lambda x: x + template
if "to_entry" not in rule:
# default to_entry assumes existing "name" property to be used as label for 2-tuple entry data structure (<name>, <properties>)
rule["to_entry"] = lambda data: (data["name"], data)
template_rules["plugin_" + name + "_" + key] = rule
template_sorting["plugin_" + name + "_" + key] = order
template_types = list(template_rules.keys())
# navbar
templates["navbar"]["entries"] = dict(
settings=dict(
template="navbar/settings.jinja2",
_div="navbar_settings",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.SETTINGS)",
),
systemmenu=dict(
template="navbar/systemmenu.jinja2",
_div="navbar_systemmenu",
classes=["dropdown"],
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.SYSTEM)",
custom_bindings=False,
),
login=dict(
template="navbar/login.jinja2",
_div="navbar_login",
classes=["dropdown"],
custom_bindings=False,
),
)
# sidebar
templates["sidebar"]["entries"] = dict(
connection=(
gettext("Connection"),
dict(
template="sidebar/connection.jinja2",
_div="connection",
icon="signal",
styles_wrapper=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.CONNECTION)",
template_header="sidebar/connection_header.jinja2",
),
),
state=(
gettext("State"),
dict(
template="sidebar/state.jinja2",
_div="state",
icon="info-circle",
styles_wrapper=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.STATUS)",
),
),
files=(
gettext("Files"),
dict(
template="sidebar/files.jinja2",
_div="files",
icon="list",
classes_content=["overflow_visible"],
template_header="sidebar/files_header.jinja2",
styles_wrapper=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.FILES_LIST)",
),
),
)
# tabs
templates["tab"]["entries"] = dict(
temperature=(
gettext("Temperature"),
dict(
template="tabs/temperature.jinja2",
_div="temp",
styles=["display: none;"],
data_bind="visible: loginState.hasAnyPermissionKo(access.permissions.STATUS, access.permissions.CONTROL) && visible()",
),
),
control=(
gettext("Control"),
dict(
template="tabs/control.jinja2",
_div="control",
styles=["display: none;"],
data_bind="visible: loginState.hasAnyPermissionKo(access.permissions.WEBCAM, access.permissions.CONTROL)",
),
),
gcodeviewer=(
gettext("GCode Viewer"),
dict(
template="tabs/gcodeviewer.jinja2",
_div="gcode",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.GCODE_VIEWER)",
),
),
terminal=(
gettext("Terminal"),
dict(
template="tabs/terminal.jinja2",
_div="term",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.MONITOR_TERMINAL)",
),
),
timelapse=(
gettext("Timelapse"),
dict(
template="tabs/timelapse.jinja2",
_div="timelapse",
styles=["display: none;"],
data_bind="visible: loginState.hasPermissionKo(access.permissions.TIMELAPSE_LIST)",
),
),
)
# settings dialog
templates["settings"]["entries"] = dict(
section_printer=(gettext("Printer"), None),
serial=(
gettext("Serial Connection"),
dict(
template="dialogs/settings/serialconnection.jinja2",
_div="settings_serialConnection",
custom_bindings=False,
),
),
printerprofiles=(
gettext("Printer Profiles"),
dict(
template="dialogs/settings/printerprofiles.jinja2",
_div="settings_printerProfiles",
custom_bindings=False,
),
),
temperatures=(
gettext("Temperatures"),
dict(
template="dialogs/settings/temperatures.jinja2",
_div="settings_temperature",
custom_bindings=False,
),
),
terminalfilters=(
gettext("Terminal Filters"),
dict(
template="dialogs/settings/terminalfilters.jinja2",
_div="settings_terminalFilters",
custom_bindings=False,
),
),
gcodescripts=(
gettext("GCODE Scripts"),
dict(
template="dialogs/settings/gcodescripts.jinja2",
_div="settings_gcodeScripts",
custom_bindings=False,
),
),
section_features=(gettext("Features"), None),
features=(
gettext("Features"),
dict(
template="dialogs/settings/features.jinja2",
_div="settings_features",
custom_bindings=False,
),
),
webcam=(
gettext("Webcam & Timelapse"),
dict(
template="dialogs/settings/webcam.jinja2",
_div="settings_webcam",
custom_bindings=False,
),
),
gcodevisualizer=(
gettext("GCODE Visualizer"),
dict(
template="dialogs/settings/gcodevisualizer.jinja2",
_div="settings_gcodegcodevisualizer",
custom_bindings=False,
),
),
api=(
gettext("API"),
dict(
template="dialogs/settings/api.jinja2",
_div="settings_api",
custom_bindings=False,
),
),
section_octoprint=(gettext("OctoPrint"), None),
accesscontrol=(
gettext("Access Control"),
dict(
template="dialogs/settings/accesscontrol.jinja2",
_div="settings_users",
custom_bindings=False,
),
),
folders=(
gettext("Folders"),
dict(
template="dialogs/settings/folders.jinja2",
_div="settings_folders",
custom_bindings=False,
),
),
appearance=(
gettext("Appearance"),
dict(
template="dialogs/settings/appearance.jinja2",
_div="settings_appearance",
custom_bindings=False,
),
),
server=(
gettext("Server"),
dict(
template="dialogs/settings/server.jinja2",
_div="settings_server",
custom_bindings=False,
),
),
)
# user settings dialog
templates["usersettings"]["entries"] = dict(
access=(
gettext("Access"),
dict(
template="dialogs/usersettings/access.jinja2",
_div="usersettings_access",
custom_bindings=False,
),
),
interface=(
gettext("Interface"),
dict(
template="dialogs/usersettings/interface.jinja2",
_div="usersettings_interface",
custom_bindings=False,
),
),
)
# wizard
if first_run:
def custom_insert_order(existing, missing):
if "firstrunstart" in missing:
missing.remove("firstrunstart")
if "firstrunend" in missing:
missing.remove("firstrunend")
return ["firstrunstart"] + existing + missing + ["firstrunend"]
template_sorting["wizard"].update(
dict(
add="custom_insert",
custom_insert_entries=lambda missing: dict(),
custom_insert_order=custom_insert_order,
)
)
templates["wizard"]["entries"] = dict(
firstrunstart=(
gettext("Start"),
dict(
template="dialogs/wizard/firstrun_start.jinja2",
_div="wizard_firstrun_start",
),
),
firstrunend=(
gettext("Finish"),
dict(
template="dialogs/wizard/firstrun_end.jinja2",
_div="wizard_firstrun_end",
),
),
)
# about dialog
templates["about"]["entries"] = dict(
about=(
"About OctoPrint",
dict(
template="dialogs/about/about.jinja2",
_div="about_about",
custom_bindings=False,
),
),
license=(
"OctoPrint License",
dict(
template="dialogs/about/license.jinja2",
_div="about_license",
custom_bindings=False,
),
),
thirdparty=(
"Third Party Licenses",
dict(
template="dialogs/about/thirdparty.jinja2",
_div="about_thirdparty",
custom_bindings=False,
),
),
authors=(
"Authors",
dict(
template="dialogs/about/authors.jinja2",
_div="about_authors",
custom_bindings=False,
),
),
changelog=(
"Changelog",
dict(
template="dialogs/about/changelog.jinja2",
_div="about_changelog",
custom_bindings=False,
),
),
supporters=(
"Supporters",
dict(
template="dialogs/about/supporters.jinja2",
_div="about_sponsors",
custom_bindings=False,
),
),
)
# extract data from template plugins
template_plugins = pluginManager.get_implementations(
octoprint.plugin.TemplatePlugin
)
plugin_vars = dict()
plugin_names = set()
seen_wizards = (
settings().get(["server", "seenWizards"]) if not first_run else dict()
)
for implementation in template_plugins:
name = implementation._identifier
plugin_names.add(name)
wizard_required = False
wizard_ignored = False
try:
vars = implementation.get_template_vars()
configs = implementation.get_template_configs()
if isinstance(implementation, octoprint.plugin.WizardPlugin):
wizard_required = implementation.is_wizard_required()
wizard_ignored = octoprint.plugin.WizardPlugin.is_wizard_ignored(
seen_wizards, implementation
)
except Exception:
_logger.exception(
"Error while retrieving template data for plugin {}, ignoring it".format(
name
),
extra=dict(plugin=name),
)
continue
if not isinstance(vars, dict):
vars = dict()
if not isinstance(configs, (list, tuple)):
configs = []
for var_name, var_value in vars.items():
plugin_vars["plugin_" + name + "_" + var_name] = var_value
includes = _process_template_configs(
name, implementation, configs, template_rules
)
if not wizard_required or wizard_ignored:
includes["wizard"] = list()
for t in template_types:
for include in includes[t]:
if t == "navbar" or t == "generic":
data = include
else:
data = include[1]
key = data["_key"]
if "replaces" in data:
key = data["replaces"]
templates[t]["entries"][key] = include
# ~~ order internal templates and plugins
# make sure that
# 1) we only have keys in our ordered list that we have entries for and
# 2) we have all entries located somewhere within the order
for t in template_types:
default_order = (
settings().get(
["appearance", "components", "order", t], merged=True, config=dict()
)
or []
)
configured_order = (
settings().get(["appearance", "components", "order", t], merged=True) or []
)
configured_disabled = (
settings().get(["appearance", "components", "disabled", t]) or []
)
# first create the ordered list of all component ids according to the configured order
templates[t]["order"] = [
x
for x in configured_order
if x in templates[t]["entries"] and not x in configured_disabled
]
# now append the entries from the default order that are not already in there
templates[t]["order"] += [
x
for x in default_order
if not x in templates[t]["order"]
and x in templates[t]["entries"]
and not x in configured_disabled
]
all_ordered = set(templates[t]["order"])
all_disabled = set(configured_disabled)
# check if anything is missing, if not we are done here
missing_in_order = (
set(templates[t]["entries"].keys())
.difference(all_ordered)
.difference(all_disabled)
)
if len(missing_in_order) == 0:
continue
# works with entries that are dicts and entries that are 2-tuples with the
# entry data at index 1
def config_extractor(item, key, default_value=None):
if isinstance(item, dict) and key in item:
return item[key] if key in item else default_value
elif (
isinstance(item, tuple)
and len(item) > 1
and isinstance(item[1], dict)
and key in item[1]
):
return item[1][key] if key in item[1] else default_value
return default_value
# finally add anything that's not included in our order yet
if template_sorting[t]["key"] is not None:
# we'll use our config extractor as default key extractor
extractor = config_extractor
# if template type provides custom extractor, make sure its exceptions are handled
if "key_extractor" in template_sorting[t] and callable(
template_sorting[t]["key_extractor"]
):
def create_safe_extractor(extractor):
def f(x, k):
try:
return extractor(x, k)
except Exception:
_logger.exception(
"Error while extracting sorting keys for template {}".format(
t
)
)
return None
return f
extractor = create_safe_extractor(template_sorting[t]["key_extractor"])
sort_key = template_sorting[t]["key"]
def key_func(x):
config = templates[t]["entries"][x]
entry_order = config_extractor(config, "order", default_value=None)
return entry_order is None, entry_order, extractor(config, sort_key)
sorted_missing = sorted(missing_in_order, key=key_func)
else:
def key_func(x):
config = templates[t]["entries"][x]
entry_order = config_extractor(config, "order", default_value=None)
return entry_order is None, entry_order
sorted_missing = sorted(missing_in_order, key=key_func)
if template_sorting[t]["add"] == "prepend":
templates[t]["order"] = sorted_missing + templates[t]["order"]
elif template_sorting[t]["add"] == "append":
templates[t]["order"] += sorted_missing
elif (
template_sorting[t]["add"] == "custom_prepend"
and "custom_add_entries" in template_sorting[t]
and "custom_add_order" in template_sorting[t]
):
templates[t]["entries"].update(
template_sorting[t]["custom_add_entries"](sorted_missing)
)
templates[t]["order"] = (
template_sorting[t]["custom_add_order"](sorted_missing)
+ templates[t]["order"]
)
elif (
template_sorting[t]["add"] == "custom_append"
and "custom_add_entries" in template_sorting[t]
and "custom_add_order" in template_sorting[t]
):
templates[t]["entries"].update(
template_sorting[t]["custom_add_entries"](sorted_missing)
)
templates[t]["order"] += template_sorting[t]["custom_add_order"](
sorted_missing
)
elif (
template_sorting[t]["add"] == "custom_insert"
and "custom_insert_entries" in template_sorting[t]
and "custom_insert_order" in template_sorting[t]
):
templates[t]["entries"].update(
template_sorting[t]["custom_insert_entries"](sorted_missing)
)
templates[t]["order"] = template_sorting[t]["custom_insert_order"](
templates[t]["order"], sorted_missing
)
_templates[locale] = templates
_plugin_names = plugin_names
_plugin_vars = plugin_vars
return templates, plugin_names, plugin_vars
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def key_func(x):
config = templates[t]["entries"][x]
entry_order = config_extractor(config, "order", default_value=None)
return entry_order is None, sv(entry_order)
|
def key_func(x):
config = templates[t]["entries"][x]
entry_order = config_extractor(config, "order", default_value=None)
return entry_order is None, entry_order
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def get_unrendered_timelapses():
global _job_lock
global current
delete_old_unrendered_timelapses()
basedir = settings().getBaseFolder("timelapse_tmp", check_writable=False)
jobs = collections.defaultdict(
lambda: dict(count=0, size=None, bytes=0, date=None, timestamp=None)
)
for entry in scandir(basedir):
if not fnmatch.fnmatch(entry.name, "*.jpg"):
continue
prefix = _extract_prefix(entry.name)
if prefix is None:
continue
jobs[prefix]["count"] += 1
jobs[prefix]["bytes"] += entry.stat().st_size
if (
jobs[prefix]["timestamp"] is None
or entry.stat().st_mtime < jobs[prefix]["timestamp"]
):
jobs[prefix]["timestamp"] = entry.stat().st_mtime
with _job_lock:
global current_render_job
def finalize_fields(prefix, job):
currently_recording = current is not None and current.prefix == prefix
currently_rendering = (
current_render_job is not None
and current_render_job["prefix"] == prefix
)
job["size"] = util.get_formatted_size(job["bytes"])
job["date"] = util.get_formatted_datetime(
datetime.datetime.fromtimestamp(job["timestamp"])
)
job["recording"] = currently_recording
job["rendering"] = currently_rendering
job["processing"] = currently_recording or currently_rendering
del job["timestamp"]
return job
return sorted(
[
util.dict_merge(dict(name=key), finalize_fields(key, value))
for key, value in jobs.items()
],
key=lambda x: sv(x["name"]),
)
|
def get_unrendered_timelapses():
global _job_lock
global current
delete_old_unrendered_timelapses()
basedir = settings().getBaseFolder("timelapse_tmp", check_writable=False)
jobs = collections.defaultdict(
lambda: dict(count=0, size=None, bytes=0, date=None, timestamp=None)
)
for entry in scandir(basedir):
if not fnmatch.fnmatch(entry.name, "*.jpg"):
continue
prefix = _extract_prefix(entry.name)
if prefix is None:
continue
jobs[prefix]["count"] += 1
jobs[prefix]["bytes"] += entry.stat().st_size
if (
jobs[prefix]["timestamp"] is None
or entry.stat().st_mtime < jobs[prefix]["timestamp"]
):
jobs[prefix]["timestamp"] = entry.stat().st_mtime
with _job_lock:
global current_render_job
def finalize_fields(prefix, job):
currently_recording = current is not None and current.prefix == prefix
currently_rendering = (
current_render_job is not None
and current_render_job["prefix"] == prefix
)
job["size"] = util.get_formatted_size(job["bytes"])
job["date"] = util.get_formatted_datetime(
datetime.datetime.fromtimestamp(job["timestamp"])
)
job["recording"] = currently_recording
job["rendering"] = currently_rendering
job["processing"] = currently_recording or currently_rendering
del job["timestamp"]
return job
return sorted(
[
util.dict_merge(dict(name=key), finalize_fields(key, value))
for key, value in jobs.items()
],
key=lambda x: x["name"],
)
|
https://github.com/OctoPrint/OctoPrint/issues/3300
|
2019-10-08 14:14:51,399 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'base_url': 'http://192.168.0.113:5000/', 'path': '/', 'query_string': 'l10n=en'}
[2019-10-08 14:14:51,556] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,743] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
[2019-10-08 14:14:51,884] ERROR in app: Exception on / [GET]
Traceback (most recent call last):
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1982, in wsgi_app
response = self.full_dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1614, in full_dispatch_request
rv = self.handle_user_exception(e)
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1517, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "c:\octoprint\venv\lib\site-packages\flask\_compat.py", line 33, in reraise
raise value
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1612, in full_dispatch_request
rv = self.dispatch_request()
File "c:\octoprint\venv\lib\site-packages\flask\app.py", line 1598, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 181, in index
fetch_template_data(refresh=force_refresh)
File "c:\octoprint\venv\lib\site-packages\octoprint\server\views.py", line 755, in fetch_template_data
sorted_missing = sorted(missing_in_order, key=key_func)
TypeError: '<' not supported between instances of 'str' and 'NoneType'
|
TypeError
|
def _user_for_api_key(self, api_key):
with self._keys_lock:
for user_id, data in self._keys.items():
if filter(lambda x: x.api_key == api_key, data):
if self._user_manager.enabled:
return self._user_manager.findUser(userid=user_id)
elif user_id == "dummy":
return DummyUser()
return None
|
def _user_for_api_key(self, api_key):
with self._keys_lock:
for user_id, data in self._keys.items():
if filter(lambda x: x.api_key == api_key, data):
return self._user_manager.findUser(userid=user_id)
return None
|
https://github.com/OctoPrint/OctoPrint/issues/3071
|
2019-03-04 18:46:30,551 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:46:30,552 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:46:30,552 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:46:30,572 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:46:30,691 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:46:31,013 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:46:31,017 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:46:31,038 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:46:31,052 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:46:31,052 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:46:31,056 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:46:31,070 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:46:31,070 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-03-04 18:46:31,113 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:46:31,114 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:46:31,417 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:46:31,691 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:46:31,691 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:46:31,692 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:46:31,693 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s)
2019-03-04 18:46:31,705 - octoprint.plugin.core - INFO - 14 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:46:31,775 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:46:31,777 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:46:31,777 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:46:31,833 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:46:32,058 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:46:32,059 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:46:32,060 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-03-04 18:46:32,061 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:46:32,063 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:46:32,064 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:46:32,066 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:46:32,067 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:46:32,352 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:46:32,353 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:46:32,353 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:46:32,524 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.44s
2019-03-04 18:46:32,660 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-03-04 18:46:32,863 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:46:33,050 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.47s
2019-03-04 18:46:33,091 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:46:33,195 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-03-04 18:46:33,416 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:46:33,416 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:46:33,422 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-03-04 18:46:33,548 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.48s
2019-03-04 18:46:34,001 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.44s
2019-03-04 18:46:34,457 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.44s
2019-03-04 18:46:35,819 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:46:35,992 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=en', 'path': u'/', '_count': 1, '_timestamp': 1551725195.992309, 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:46:38,529 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:46:38,942 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:46:47,720 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:46:48,224 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:47:13,479 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:14,332 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:47:14,720 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:14,738 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:20,832 - octoprint.server - INFO - Shutting down...
2019-03-04 18:47:21,175 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:47:21,175 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:47:21,176 - octoprint.server - INFO - Goodbye!
2019-03-04 18:47:23,564 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:47:23,565 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:47:23,565 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:47:23,585 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:47:24,012 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:47:24,021 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:47:24,075 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:47:24,315 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:47:24,319 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:47:24,339 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:47:24,345 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:47:24,345 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:47:24,349 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:47:24,361 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:47:24,369 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:47:24,369 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:47:24,371 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:47:24,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:47:24,652 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:47:24,927 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:47:24,928 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:47:24,929 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:47:24,930 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s)
2019-03-04 18:47:24,932 - octoprint.plugin.core - INFO - 14 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:47:25,002 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:47:25,005 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:47:25,011 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:47:25,058 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:47:25,346 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:47:25,347 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:47:25,348 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:47:25,348 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:47:25,351 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:47:25,355 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:47:25,392 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:47:25,407 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:47:25,422 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:47:25,476 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:47:25,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:47:25,658 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:47:25,813 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:47:25,813 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:47:25,814 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:47:25,838 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:47:26,285 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:47:27,653 - octoprint.server.preemptive_cache - INFO - ... done in 1.82s
2019-03-04 18:47:32,385 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:32,734 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:32,748 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:35,104 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:35,129 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:47:35,139 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:35,154 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:35,876 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:35,893 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:53,083 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:47:53,084 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:47:54,087 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:47:54,089 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:47:54,091 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:47:54,093 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:47:54,524 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': u'/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:48:02,400 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/mmone/OctoPrintKlipper/archive/master.zip
2019-03-04 18:48:02,410 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:04,505 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:04,576 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:48:04,579 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:04,596 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:48:04,598 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| !OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:48:04,598 - octoprint.plugins.pluginmanager - INFO - The plugin was installed successfully: OctoKlipper, version 0.2.5
2019-03-04 18:48:05,027 - octoprint.plugins.tracking - INFO - Sent tracking event install_plugin, payload: {'plugin_version': '0.2.5', 'plugin': 'klipper'}
2019-03-04 18:48:11,167 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port
Traceback (most recent call last):
File "/opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/util/comm.py", line 2605, in _readline
ret = self._serial.readline()
File "/opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/util/comm.py", line 4681, in readline
c = self.read(1)
File "/opt/octoprint/venv/lib/python2.7/site-packages/pyserial-3.4-py2.7.egg/serial/serialposix.py", line 501, in read
'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)
2019-03-04 18:48:11,169 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2019-03-04 18:48:11,169 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline (Error: SerialException: 'device reports readiness to read but returned no data (device disconnected or multiple access on port?)' @ comm.py:_readline:2605)"
2019-03-04 18:48:11,172 - octoprint.server - INFO - Shutting down...
2019-03-04 18:48:11,369 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:48:11,371 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:48:11,372 - octoprint.server - INFO - Goodbye!
2019-03-04 18:48:13,768 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:48:13,768 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:48:13,769 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:48:13,790 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:48:13,791 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:48:13,799 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:48:13,857 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:14,101 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:48:14,105 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:48:14,125 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:48:14,131 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:48:14,131 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:48:14,134 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:14,148 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:48:14,157 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:48:14,157 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:48:14,159 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:48:14,166 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:48:14,442 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:48:14,717 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:48:14,718 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:48:14,718 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:48:14,720 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-03-04 18:48:14,741 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:48:14,812 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:48:14,816 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:48:14,822 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:48:14,868 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:48:15,132 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:48:15,133 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:48:15,134 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:48:15,134 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:48:15,146 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:48:15,149 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:48:15,237 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:48:15,338 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:48:15,339 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:48:15,341 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:48:15,343 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:48:15,344 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:48:15,408 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:48:15,516 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:48:15,658 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:48:15,659 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:48:15,660 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:48:15,914 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:48:16,342 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:48:16,344 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:48:16,347 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:48:16,348 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:48:16,439 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:48:16,439 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:48:16,446 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-03-04 18:48:16,451 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:48:16,850 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': '/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:48:17,355 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:48:18,472 - octoprint.server.preemptive_cache - INFO - ... done in 2.02s
2019-03-04 18:48:22,103 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:48:22,123 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:22,139 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:22,157 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:24,055 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:48:24,073 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:24,087 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:24,106 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:48,057 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:48,096 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:48:48,578 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:48:48,597 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:48,659 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,793 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,812 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,842 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,862 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:16,854 - octoprint.server.api.system - INFO - Performing command for core:restart: pkill octoprint
2019-03-04 18:49:16,864 - octoprint.server - INFO - Shutting down...
2019-03-04 18:49:17,389 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:49:17,390 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:49:17,393 - octoprint.server - INFO - Goodbye!
2019-03-04 18:50:55,493 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:50:55,494 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:50:55,494 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:50:55,516 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:50:55,518 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:50:55,527 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:50:55,594 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:50:55,859 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:50:55,863 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:50:55,884 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:50:55,891 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:50:55,891 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:50:55,894 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:50:55,908 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:50:55,917 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:50:55,918 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:50:55,920 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:50:55,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:50:56,222 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:50:56,515 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:50:56,515 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:50:56,516 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:50:56,517 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-03-04 18:50:56,519 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:50:56,588 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:50:56,591 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:50:56,599 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:50:56,649 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:50:56,895 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:50:56,896 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:50:56,896 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:50:56,899 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:50:56,906 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:50:56,923 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:50:57,016 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:50:57,083 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:50:57,085 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:50:57,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:50:57,088 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:50:57,089 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:50:57,109 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:50:57,259 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:50:57,398 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:50:57,398 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:50:57,399 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:50:57,424 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:50:57,883 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:50:58,108 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:50:58,111 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:50:58,116 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:50:58,132 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:50:58,654 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': '/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:50:59,454 - octoprint.server.preemptive_cache - INFO - ... done in 2.03s
2019-03-04 18:51:02,349 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:51:02,367 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:02,382 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:02,401 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:03,090 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:03,135 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:51:03,591 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:51:03,610 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:03,681 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:10,171 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:51:10,189 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:10,205 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:13,375 - octoprint.server.api.system - INFO - Performing command for core:restart: pkill octoprint
2019-03-04 18:51:13,386 - octoprint.server - INFO - Shutting down...
2019-03-04 18:51:14,089 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:51:14,090 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:51:14,092 - octoprint.server - INFO - Goodbye!
2019-03-04 18:52:21,751 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:52:21,752 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:52:21,752 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:52:21,773 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:52:21,775 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:52:21,785 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:52:21,850 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:52:22,116 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:52:22,120 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:52:22,142 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:52:22,152 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:52:22,153 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:52:22,156 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:52:22,174 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:52:22,186 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:52:22,187 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:52:22,190 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:52:22,201 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:52:22,504 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:52:22,790 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:52:22,790 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:52:22,791 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:52:22,792 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-03-04 18:52:22,795 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:52:22,862 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:52:22,865 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:52:22,872 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:52:22,921 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:52:23,217 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:52:23,218 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:52:23,219 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:52:23,220 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:52:23,221 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:52:23,234 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:52:23,352 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:52:23,395 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:52:23,397 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:52:23,415 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:52:23,417 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:52:23,417 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:52:23,434 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:52:23,591 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:52:23,729 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:52:23,730 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:52:23,730 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:52:23,756 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:52:24,210 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:52:24,416 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:52:24,428 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:52:24,457 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:52:24,483 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:52:24,987 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': '/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:52:25,776 - octoprint.server.preemptive_cache - INFO - ... done in 2.02s
2019-03-04 18:52:33,356 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:52:33,801 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:52:33,820 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:52:33,888 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:53:08,102 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:53:08,121 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:53:08,136 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:53:10,451 - tornado.access - WARNING - 400 POST /api/plugin/klipper (192.168.1.1) 2.92ms
2019-03-04 18:55:10,250 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:55:10,276 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:55:10,705 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:55:10,723 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:55:10,778 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:55:23,520 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:57:00,382 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 19:07:22,146 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:07:24,201 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 19:22:22,146 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:22:24,194 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 19:37:22,147 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:37:24,188 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 19:52:22,148 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:52:24,174 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:07:22,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:07:24,177 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:22:22,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:22:24,195 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:37:22,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:37:24,184 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:52:22,150 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:52:24,263 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:07:22,151 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:07:24,275 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:22:22,151 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:22:24,204 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:37:22,152 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:37:24,210 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:52:22,153 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:52:24,201 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:07:22,153 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:07:24,198 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:08:28,454 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:28,465 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=en', 'path': u'/', '_count': 1, '_timestamp': 1551737308.465703, 'base_url': 'http://pluto.lan:5000/'}
2019-03-04 22:08:29,880 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:08:29,902 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:29,975 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:08:29,996 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:08:34,718 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:08:34,740 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:34,799 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:08:38,210 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.26ms
2019-03-04 22:08:53,541 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:08:53,571 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:53,632 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:04,382 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 5.12ms
2019-03-04 22:09:08,247 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.26ms
2019-03-04 22:09:17,489 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:09:17,513 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:09:17,599 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,313 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,333 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,368 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,388 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,399 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,417 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,426 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,445 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:12:07,316 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:12:07,535 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:12:08,540 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:22:22,154 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:22:24,218 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:22:45,168 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:22:45,194 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:22:45,258 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:22:47,685 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.70ms
2019-03-04 22:23:11,798 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.58ms
2019-03-04 22:23:13,227 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.45ms
2019-03-04 22:23:57,314 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:23:57,353 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:23:57,609 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:23:57,636 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:23:57,691 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:24:24,597 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:24:25,753 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:24:25,779 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:24:25,848 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:24:27,935 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:24:29,066 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:24:29,484 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:24:29,508 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:24:29,558 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:27:07,193 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:27:12,897 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.36ms
2019-03-04 22:27:14,382 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.58ms
2019-03-04 22:32:42,703 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.58ms
2019-03-04 22:32:57,828 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.18ms
2019-03-04 22:33:00,891 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.81ms
2019-03-04 22:34:47,070 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:47,089 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:47,135 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:47,153 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:57,389 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.86ms
2019-03-04 22:35:09,365 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:35:09,382 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:35:09,406 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:35:09,433 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:37:22,154 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:37:24,178 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:44:02,178 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.27ms
2019-03-04 22:44:04,413 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.47ms
2019-03-04 22:44:06,261 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.75ms
2019-03-04 22:44:55,353 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.32ms
2019-03-04 22:46:09,783 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.96ms
2019-03-04 22:50:50,832 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.88ms
2019-03-04 22:52:22,155 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:52:24,199 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:56:55,710 - tornado.access - WARNING - 404 GET /api/usesr (192.168.1.215) 3.31ms
2019-03-04 22:56:58,634 - tornado.access - WARNING - 403 GET /api/users (192.168.1.215) 3.89ms
2019-03-04 22:57:50,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 23:04:14,559 - tornado.access - WARNING - 403 GET /api/users (192.168.1.215) 3.87ms
2019-03-04 23:07:22,155 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 23:07:24,217 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
|
SerialException
|
def loginUserFromApiKey():
apikey = get_api_key(_flask.request)
if not apikey:
return False
if octoprint.server.appSessionManager.validate(apikey):
return False
user = get_user_for_apikey(apikey)
if user is None:
return False
if not loginUser(user):
return False
return True
|
def loginUserFromApiKey():
apikey = get_api_key(_flask.request)
if not apikey:
return False
if octoprint.server.appSessionManager.validate(apikey):
return False
user = get_user_for_apikey(apikey)
if not loginUser(user):
raise InvalidApiKeyException()
else:
return True
|
https://github.com/OctoPrint/OctoPrint/issues/3071
|
2019-03-04 18:46:30,551 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:46:30,552 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:46:30,552 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:46:30,572 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:46:30,691 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:46:31,013 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:46:31,017 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:46:31,038 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:46:31,052 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:46:31,052 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:46:31,056 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:46:31,070 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:46:31,070 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-03-04 18:46:31,113 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:46:31,114 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:46:31,417 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:46:31,691 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:46:31,691 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:46:31,692 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:46:31,693 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s)
2019-03-04 18:46:31,705 - octoprint.plugin.core - INFO - 14 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:46:31,775 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:46:31,777 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:46:31,777 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:46:31,833 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:46:32,058 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:46:32,059 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:46:32,060 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-03-04 18:46:32,061 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:46:32,063 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:46:32,064 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:46:32,066 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:46:32,067 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:46:32,352 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:46:32,353 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:46:32,353 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:46:32,524 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.44s
2019-03-04 18:46:32,660 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-03-04 18:46:32,863 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:46:33,050 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.47s
2019-03-04 18:46:33,091 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:46:33,195 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-03-04 18:46:33,416 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:46:33,416 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:46:33,422 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-03-04 18:46:33,548 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.48s
2019-03-04 18:46:34,001 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.44s
2019-03-04 18:46:34,457 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.44s
2019-03-04 18:46:35,819 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:46:35,992 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=en', 'path': u'/', '_count': 1, '_timestamp': 1551725195.992309, 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:46:38,529 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:46:38,942 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:46:47,720 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:46:48,224 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:47:13,479 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:14,332 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:47:14,720 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:14,738 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:20,832 - octoprint.server - INFO - Shutting down...
2019-03-04 18:47:21,175 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:47:21,175 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:47:21,176 - octoprint.server - INFO - Goodbye!
2019-03-04 18:47:23,564 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:47:23,565 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:47:23,565 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:47:23,585 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:47:24,012 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:47:24,021 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:47:24,075 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:47:24,315 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:47:24,319 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:47:24,339 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:47:24,345 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:47:24,345 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:47:24,349 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:47:24,361 - octoprint.plugin.core - INFO - Found 14 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:47:24,369 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:47:24,369 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:47:24,371 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:47:24,377 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:47:24,652 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:47:24,927 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:47:24,928 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:47:24,929 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:47:24,930 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s)
2019-03-04 18:47:24,932 - octoprint.plugin.core - INFO - 14 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:47:25,002 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:47:25,005 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:47:25,011 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:47:25,058 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:47:25,346 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:47:25,347 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:47:25,348 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:47:25,348 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:47:25,351 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:47:25,355 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:47:25,392 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:47:25,407 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:47:25,422 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:47:25,476 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:47:25,483 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:47:25,658 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:47:25,813 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:47:25,813 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:47:25,814 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:47:25,838 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:47:26,285 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:47:27,653 - octoprint.server.preemptive_cache - INFO - ... done in 1.82s
2019-03-04 18:47:32,385 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:32,734 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:32,748 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:35,104 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:35,129 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:47:35,139 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:35,154 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:35,876 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:47:35,893 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:47:53,083 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:47:53,084 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:47:54,087 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:47:54,089 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:47:54,091 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:47:54,093 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:47:54,524 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': u'/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:48:02,400 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/mmone/OctoPrintKlipper/archive/master.zip
2019-03-04 18:48:02,410 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:04,505 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:04,576 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:48:04,579 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:04,596 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 14 mixin implementations, 17 hook handlers
2019-03-04 18:48:04,598 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| !OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:48:04,598 - octoprint.plugins.pluginmanager - INFO - The plugin was installed successfully: OctoKlipper, version 0.2.5
2019-03-04 18:48:05,027 - octoprint.plugins.tracking - INFO - Sent tracking event install_plugin, payload: {'plugin_version': '0.2.5', 'plugin': 'klipper'}
2019-03-04 18:48:11,167 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port
Traceback (most recent call last):
File "/opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/util/comm.py", line 2605, in _readline
ret = self._serial.readline()
File "/opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/util/comm.py", line 4681, in readline
c = self.read(1)
File "/opt/octoprint/venv/lib/python2.7/site-packages/pyserial-3.4-py2.7.egg/serial/serialposix.py", line 501, in read
'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)
2019-03-04 18:48:11,169 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2019-03-04 18:48:11,169 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline (Error: SerialException: 'device reports readiness to read but returned no data (device disconnected or multiple access on port?)' @ comm.py:_readline:2605)"
2019-03-04 18:48:11,172 - octoprint.server - INFO - Shutting down...
2019-03-04 18:48:11,369 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:48:11,371 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:48:11,372 - octoprint.server - INFO - Goodbye!
2019-03-04 18:48:13,768 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:48:13,768 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:48:13,769 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:48:13,790 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:48:13,791 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:48:13,799 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:48:13,857 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:14,101 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:48:14,105 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:48:14,125 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:48:14,131 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:48:14,131 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:48:14,134 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:48:14,148 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:48:14,157 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:48:14,157 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:48:14,159 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:48:14,166 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:48:14,442 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:48:14,717 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:48:14,718 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:48:14,718 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:48:14,720 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-03-04 18:48:14,741 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:48:14,812 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:48:14,816 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:48:14,822 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:48:14,868 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:48:15,132 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:48:15,133 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:48:15,134 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:48:15,134 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:48:15,146 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:48:15,149 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:48:15,237 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:48:15,338 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:48:15,339 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:48:15,341 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:48:15,343 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:48:15,344 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:48:15,408 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:48:15,516 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:48:15,658 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:48:15,659 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:48:15,660 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:48:15,914 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:48:16,342 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:48:16,344 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:48:16,347 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:48:16,348 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:48:16,439 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:48:16,439 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:48:16,446 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-03-04 18:48:16,451 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:48:16,850 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': '/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:48:17,355 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:48:18,472 - octoprint.server.preemptive_cache - INFO - ... done in 2.02s
2019-03-04 18:48:22,103 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:48:22,123 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:22,139 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:22,157 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:24,055 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:48:24,073 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:24,087 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:24,106 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:48:48,057 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:48,096 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:48:48,578 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:48:48,597 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:48:48,659 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,793 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,812 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,842 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:06,862 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:49:16,854 - octoprint.server.api.system - INFO - Performing command for core:restart: pkill octoprint
2019-03-04 18:49:16,864 - octoprint.server - INFO - Shutting down...
2019-03-04 18:49:17,389 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:49:17,390 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:49:17,393 - octoprint.server - INFO - Goodbye!
2019-03-04 18:50:55,493 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:50:55,494 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:50:55,494 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:50:55,516 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:50:55,518 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:50:55,527 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:50:55,594 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:50:55,859 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:50:55,863 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:50:55,884 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:50:55,891 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:50:55,891 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:50:55,894 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:50:55,908 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:50:55,917 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:50:55,918 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:50:55,920 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:50:55,929 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:50:56,222 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:50:56,515 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:50:56,515 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:50:56,516 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:50:56,517 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-03-04 18:50:56,519 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:50:56,588 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:50:56,591 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:50:56,599 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:50:56,649 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:50:56,895 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:50:56,896 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:50:56,896 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:50:56,899 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:50:56,906 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:50:56,923 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:50:57,016 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:50:57,083 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:50:57,085 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:50:57,086 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:50:57,088 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:50:57,089 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:50:57,109 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:50:57,259 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:50:57,398 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:50:57,398 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:50:57,399 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:50:57,424 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:50:57,883 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:50:58,108 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:50:58,111 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:50:58,116 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:50:58,132 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:50:58,654 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': '/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:50:59,454 - octoprint.server.preemptive_cache - INFO - ... done in 2.03s
2019-03-04 18:51:02,349 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:51:02,367 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:02,382 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:02,401 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:03,090 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:03,135 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:51:03,591 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:51:03,610 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:03,681 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:10,171 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:51:10,189 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:51:10,205 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:51:13,375 - octoprint.server.api.system - INFO - Performing command for core:restart: pkill octoprint
2019-03-04 18:51:13,386 - octoprint.server - INFO - Shutting down...
2019-03-04 18:51:14,089 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-03-04 18:51:14,090 - octoprint.events - INFO - Event loop shut down
2019-03-04 18:51:14,092 - octoprint.server - INFO - Goodbye!
2019-03-04 18:52:21,751 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:52:21,752 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-03-04 18:52:21,752 - octoprint.startup - INFO - ******************************************************************************
2019-03-04 18:52:21,773 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-03-04 18:52:21,775 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-03-04 18:52:21,785 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:52:21,850 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:52:22,116 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-03-04 18:52:22,120 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:52:22,142 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-03-04 18:52:22,152 - octoprint.server - INFO - Intermediary server started
2019-03-04 18:52:22,153 - octoprint.plugin.core - INFO - Loading plugins from /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /basedir/plugins and installed plugin packages...
2019-03-04 18:52:22,156 - octoprint.plugin.core - INFO - Plugin Pi Support Plugin did not pass check, not loading.
2019-03-04 18:52:22,174 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 19 hook handlers
2019-03-04 18:52:22,186 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /basedir/uploads...
2019-03-04 18:52:22,187 - octoprint.filemanager.storage - INFO - ... file metadata for /basedir/uploads initialized successfully.
2019-03-04 18:52:22,190 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-03-04 18:52:22,201 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-03-04 18:52:22,504 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:52:22,790 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-03-04 18:52:22,790 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:52:22,791 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:52:22,792 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-03-04 18:52:22,795 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| OctoKlipper (0.2.5) = /opt/octoprint/venv/lib/python2.7/site-packages/octoprint_klipper
| Plugin Manager (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /opt/octoprint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-03-04 18:52:22,862 - octoprint.environment - INFO - Detected environment is Python 2.7.15 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 3400.0
| ram: 33701773312
| os:
| id: linux
| platform: linux2
| python:
| pip: 19.0.3
| version: 2.7.15
| virtualenv: /opt/octoprint/venv
2019-03-04 18:52:22,865 - octoprint.server - INFO - Reset webasset folder /basedir/generated/webassets...
2019-03-04 18:52:22,872 - octoprint.server - INFO - Reset webasset folder /basedir/generated/.webassets-cache...
2019-03-04 18:52:22,921 - octoprint.server - INFO - Shutting down intermediary server...
2019-03-04 18:52:23,217 - octoprint.server - INFO - Intermediary server shut down
2019-03-04 18:52:23,218 - octoprint.events - INFO - Processing startup event, this is our first event
2019-03-04 18:52:23,219 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-03-04 18:52:23,220 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-03-04 18:52:23,221 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-03-04 18:52:23,234 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:52:23,352 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:52:23,395 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-03-04 18:52:23,397 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2019-03-04 18:52:23,415 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2019-03-04 18:52:23,417 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on 7b867301e78d for SSDP
2019-03-04 18:52:23,417 - octoprint.server - INFO - Listening on http://[::]:5000
2019-03-04 18:52:23,434 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-03-04 18:52:23,591 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-03-04 18:52:23,729 - octoprint.util.pip - INFO - Using "/opt/octoprint/venv/bin/python -m pip" as command to invoke pip
2019-03-04 18:52:23,730 - octoprint.util.pip - INFO - pip installs to /opt/octoprint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-03-04 18:52:23,730 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-03-04 18:52:23,756 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://octoprint.meade.craigyounkins.com/'}
2019-03-04 18:52:24,210 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.15', 'ram': 33701773312, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 3400.0, 'os': 'linux'}
2019-03-04 18:52:24,416 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:52:24,428 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2019-03-04 18:52:24,457 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-03-04 18:52:24,483 - octoprint.util.comm - INFO - Printer reports firmware name "Klipper"
2019-03-04 18:52:24,987 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 0, u'printer_port': '/tmp/printer', 'firmware_name': 'Klipper'}
2019-03-04 18:52:25,776 - octoprint.server.preemptive_cache - INFO - ... done in 2.02s
2019-03-04 18:52:33,356 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:52:33,801 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:52:33,820 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:52:33,888 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:53:08,102 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:53:08,121 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:53:08,136 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:53:10,451 - tornado.access - WARNING - 400 POST /api/plugin/klipper (192.168.1.1) 2.92ms
2019-03-04 18:55:10,250 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:55:10,276 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:55:10,705 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.1
2019-03-04 18:55:10,723 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.1
2019-03-04 18:55:10,778 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 18:55:23,520 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 18:57:00,382 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.1
2019-03-04 19:07:22,146 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:07:24,201 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 19:22:22,146 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:22:24,194 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 19:37:22,147 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:37:24,188 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 19:52:22,148 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 19:52:24,174 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:07:22,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:07:24,177 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:22:22,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:22:24,195 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:37:22,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:37:24,184 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 20:52:22,150 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 20:52:24,263 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:07:22,151 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:07:24,275 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:22:22,151 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:22:24,204 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:37:22,152 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:37:24,210 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 21:52:22,153 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 21:52:24,201 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:07:22,153 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:07:24,198 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:08:28,454 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:28,465 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=en', 'path': u'/', '_count': 1, '_timestamp': 1551737308.465703, 'base_url': 'http://pluto.lan:5000/'}
2019-03-04 22:08:29,880 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:08:29,902 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:29,975 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:08:29,996 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:08:34,718 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:08:34,740 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:34,799 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:08:38,210 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.26ms
2019-03-04 22:08:53,541 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:08:53,571 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:08:53,632 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:04,382 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 5.12ms
2019-03-04 22:09:08,247 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.26ms
2019-03-04 22:09:17,489 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:09:17,513 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:09:17,599 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,313 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,333 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,368 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,388 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,399 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,417 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,426 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:09:45,445 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:12:07,316 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:12:07,535 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:12:08,540 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:22:22,154 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:22:24,218 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:22:45,168 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:22:45,194 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:22:45,258 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:22:47,685 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.70ms
2019-03-04 22:23:11,798 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.58ms
2019-03-04 22:23:13,227 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.45ms
2019-03-04 22:23:57,314 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:23:57,353 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:23:57,609 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:23:57,636 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:23:57,691 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:24:24,597 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:24:25,753 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:24:25,779 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:24:25,848 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:24:27,935 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:24:29,066 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 22:24:29,484 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.215
2019-03-04 22:24:29,508 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:24:29,558 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:27:07,193 - octoprint.server.util.flask - INFO - Passively logging in user dummy from 192.168.1.215
2019-03-04 22:27:12,897 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.36ms
2019-03-04 22:27:14,382 - tornado.access - WARNING - 403 GET /api/settings (192.168.1.215) 4.58ms
2019-03-04 22:32:42,703 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.58ms
2019-03-04 22:32:57,828 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.18ms
2019-03-04 22:33:00,891 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.81ms
2019-03-04 22:34:47,070 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:47,089 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:47,135 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:47,153 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:34:57,389 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.86ms
2019-03-04 22:35:09,365 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:35:09,382 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:35:09,406 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:35:09,433 - octoprint.plugins.klipper - ERROR - Error: Klipper config file not found at: /root/printer.cfg
2019-03-04 22:37:22,154 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:37:24,178 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:44:02,178 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.27ms
2019-03-04 22:44:04,413 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.47ms
2019-03-04 22:44:06,261 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.75ms
2019-03-04 22:44:55,353 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 4.32ms
2019-03-04 22:46:09,783 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.96ms
2019-03-04 22:50:50,832 - tornado.access - WARNING - 403 GET /api/connection (192.168.1.215) 3.88ms
2019-03-04 22:52:22,155 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 22:52:24,199 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-03-04 22:56:55,710 - tornado.access - WARNING - 404 GET /api/usesr (192.168.1.215) 3.31ms
2019-03-04 22:56:58,634 - tornado.access - WARNING - 403 GET /api/users (192.168.1.215) 3.89ms
2019-03-04 22:57:50,302 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.215
2019-03-04 23:04:14,559 - tornado.access - WARNING - 403 GET /api/users (192.168.1.215) 3.87ms
2019-03-04 23:07:22,155 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-03-04 23:07:24,217 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
|
SerialException
|
def _create_backup(
cls,
name,
exclude=None,
settings=None,
plugin_manager=None,
datafolder=None,
on_backup_start=None,
on_backup_done=None,
on_backup_error=None,
):
exclude_by_default = (
"generated",
"logs",
"watched",
)
try:
if exclude is None:
exclude = []
configfile = settings._configfile
basedir = settings._basedir
temporary_path = os.path.join(datafolder, ".{}".format(name))
final_path = os.path.join(datafolder, name)
own_folder = datafolder
defaults = [
os.path.join(basedir, "config.yaml"),
] + [
os.path.join(basedir, folder)
for folder in default_settings["folder"].keys()
]
# check how much many bytes we are about to backup
size = os.stat(configfile).st_size
for folder in default_settings["folder"].keys():
if folder in exclude or folder in exclude_by_default:
continue
size += cls._get_disk_size(
settings.global_get_basefolder(folder),
ignored=[
own_folder,
],
)
size += cls._get_disk_size(
basedir,
ignored=defaults
+ [
own_folder,
],
)
# since we can't know the compression ratio beforehand, we assume we need the same amount of space
if not cls._free_space(os.path.dirname(temporary_path), size):
raise InsufficientSpace()
compression = zipfile.ZIP_DEFLATED if zlib else zipfile.ZIP_STORED
if callable(on_backup_start):
on_backup_start(name, temporary_path, exclude)
with zipfile.ZipFile(
temporary_path, mode="w", compression=compression, allowZip64=True
) as zip:
def add_to_zip(source, target, ignored=None):
if ignored is None:
ignored = []
if source in ignored:
return
if os.path.isdir(source):
for entry in scandir(source):
add_to_zip(
entry.path,
os.path.join(target, entry.name),
ignored=ignored,
)
elif os.path.isfile(source):
zip.write(source, arcname=target)
# add metadata
metadata = dict(version=get_octoprint_version_string(), excludes=exclude)
zip.writestr("metadata.json", json.dumps(metadata))
# backup current config file
add_to_zip(
configfile,
"basedir/config.yaml",
ignored=[
own_folder,
],
)
# backup configured folder paths
for folder in default_settings["folder"].keys():
if folder in exclude or folder in exclude_by_default:
continue
add_to_zip(
settings.global_get_basefolder(folder),
"basedir/" + folder.replace("_", "/"),
ignored=[
own_folder,
],
)
# backup anything else that might be lying around in our basedir
add_to_zip(
basedir,
"basedir",
ignored=defaults
+ [
own_folder,
],
)
# add list of installed plugins
plugins = []
plugin_folder = settings.global_get_basefolder("plugins")
for key, plugin in plugin_manager.plugins.items():
if plugin.bundled or (
isinstance(plugin.origin, FolderOrigin)
and plugin.origin.folder == plugin_folder
):
# ignore anything bundled or from the plugins folder we already include in the backup
continue
plugins.append(dict(key=plugin.key, name=plugin.name, url=plugin.url))
if len(plugins):
zip.writestr("plugin_list.json", json.dumps(plugins))
shutil.move(temporary_path, final_path)
if callable(on_backup_done):
on_backup_done(name, final_path, exclude)
except:
if callable(on_backup_error):
exc_info = sys.exc_info()
try:
on_backup_error(name, exc_info)
finally:
del exc_info
raise
|
def _create_backup(
cls,
name,
exclude=None,
settings=None,
plugin_manager=None,
datafolder=None,
on_backup_start=None,
on_backup_done=None,
on_backup_error=None,
):
exclude_by_default = (
"generated",
"logs",
"watched",
)
try:
if exclude is None:
exclude = []
configfile = settings._configfile
basedir = settings._basedir
temporary_path = os.path.join(datafolder, ".{}".format(name))
final_path = os.path.join(datafolder, name)
own_folder = datafolder
defaults = [
os.path.join(basedir, "config.yaml"),
] + [
os.path.join(basedir, folder)
for folder in default_settings["folder"].keys()
]
# check how much many bytes we are about to backup
size = os.stat(configfile).st_size
for folder in default_settings["folder"].keys():
if folder in exclude or folder in exclude_by_default:
continue
size += cls._get_disk_size(
settings.global_get_basefolder(folder),
ignored=[
own_folder,
],
)
size += cls._get_disk_size(
basedir,
ignored=defaults
+ [
own_folder,
],
)
# since we can't know the compression ratio beforehand, we assume we need the same amount of space
if not cls._free_space(os.path.dirname(temporary_path), size):
raise InsufficientSpace()
compression = zipfile.ZIP_DEFLATED if zlib else zipfile.ZIP_STORED
if callable(on_backup_start):
on_backup_start(name, temporary_path, exclude)
with zipfile.ZipFile(
temporary_path, mode="w", compression=compression, allowZip64=True
) as zip:
def add_to_zip(source, target, ignored=None):
if ignored is None:
ignored = []
if source in ignored:
return
if os.path.isdir(source):
for entry in scandir(source):
add_to_zip(
entry.path,
os.path.join(target, entry.name),
ignored=ignored,
)
elif os.path.isfile(source):
zip.write(source, arcname=target)
# add metadata
metadata = dict(version=get_octoprint_version_string(), excludes=exclude)
zip.writestr("metadata.json", json.dumps(metadata))
# backup current config file
add_to_zip(
configfile,
"basedir/config.yaml",
ignored=[
own_folder,
],
)
# backup configured folder paths
for folder in default_settings["folder"].keys():
if folder in exclude or folder in exclude_by_default:
continue
add_to_zip(
settings.global_get_basefolder(folder),
"basedir/" + folder.replace("_", "/"),
ignored=[
own_folder,
],
)
# backup anything else that might be lying around in our basedir
add_to_zip(
basedir,
"basedir",
ignored=defaults
+ [
own_folder,
],
)
# add list of installed plugins
plugins = []
plugin_folder = settings.global_get_basefolder("plugins")
for key, plugin in plugin_manager.plugins.items():
if plugin.bundled or (
isinstance(plugin.origin, FolderOrigin)
and plugin.origin.folder == plugin_folder
):
# ignore anything bundled or from the plugins folder we already include in the backup
continue
plugins.append(dict(key=plugin.key, name=plugin.name, url=plugin.url))
if len(plugins):
zip.writestr("plugin_list.json", json.dumps(plugins))
os.rename(temporary_path, final_path)
if callable(on_backup_done):
on_backup_done(name, final_path, exclude)
except:
if callable(on_backup_error):
exc_info = sys.exc_info()
try:
on_backup_error(name, exc_info)
finally:
del exc_info
raise
|
https://github.com/OctoPrint/OctoPrint/issues/2992
|
Uploading backup, this can take a while. Please wait...
Stelle Sicherung wieder her...
Unpacking backup to /tmp/tmpYhY_SP...
Unpacked
Renaming /data/octorpint-data to /data/octorpint-data.bck...
Moving /tmp/tmpYhY_SP/basedir to /data/octorpint-data...
Error while restoring config data
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup/__init__.py", line 828, in _restore_backup
os.rename(basedir_extracted, basedir)
OSError: [Errno 18] Invalid cross-device link
Rolling back old config data
Wiederherstellung fehlgeschlagen! Prüfe die obige Ausgabe sowie octoprint.log für mögliche Gründe dafür.
Removing temporary unpacked folder
Removing temporary zip
|
OSError
|
def _restore_backup(
cls,
path,
settings=None,
plugin_manager=None,
datafolder=None,
on_install_plugins=None,
on_report_unknown_plugins=None,
on_invalid_backup=None,
on_log_progress=None,
on_log_error=None,
on_restore_start=None,
on_restore_done=None,
on_restore_failed=None,
):
if not is_os_compatible(["!windows"]):
if callable(on_log_error):
on_log_error("Restore is not supported on this operating system")
if callable(on_restore_failed):
on_restore_failed(path)
return False
restart_command = settings.global_get(
["server", "commands", "serverRestartCommand"]
)
basedir = settings._basedir
cls._clean_dir_backup(basedir, on_log_progress=on_log_progress)
plugin_repo = dict()
repo_url = settings.global_get(["plugins", "pluginmanager", "repository"])
if repo_url:
plugin_repo = cls._get_plugin_repository_data(repo_url)
if callable(on_restore_start):
on_restore_start(path)
try:
with zipfile.ZipFile(path, "r") as zip:
# read metadata
try:
metadata_zipinfo = zip.getinfo("metadata.json")
except KeyError:
if callable(on_invalid_backup):
on_invalid_backup("Not an OctoPrint backup, lacks metadata.json")
if callable(on_restore_failed):
on_restore_failed(path)
return False
metadata_bytes = zip.read(metadata_zipinfo)
metadata = json.loads(metadata_bytes)
backup_version = get_comparable_version(metadata["version"], base=True)
if backup_version > get_octoprint_version(base=True):
if callable(on_invalid_backup):
on_invalid_backup(
"Backup is from a newer version of OctoPrint and cannot be applied"
)
if callable(on_restore_failed):
on_restore_failed(path)
return False
# unzip to temporary folder
temp = tempfile.mkdtemp()
try:
if callable(on_log_progress):
on_log_progress("Unpacking backup to {}...".format(temp))
abstemp = os.path.abspath(temp)
for member in zip.infolist():
abspath = os.path.abspath(os.path.join(temp, member.filename))
if abspath.startswith(abstemp):
zip.extract(member, temp)
# sanity check
configfile = os.path.join(temp, "basedir", "config.yaml")
if not os.path.exists(configfile):
if callable(on_invalid_backup):
on_invalid_backup("Backup lacks config.yaml")
if callable(on_restore_failed):
on_restore_failed(path)
return False
import yaml
with codecs.open(configfile) as f:
configdata = yaml.safe_load(f)
if configdata.get("accessControl", dict()).get("enabled", True):
userfile = os.path.join(temp, "basedir", "users.yaml")
if not os.path.exists(userfile):
if callable(on_invalid_backup):
on_invalid_backup("Backup lacks users.yaml")
if callable(on_restore_failed):
on_restore_failed(path)
return False
if callable(on_log_progress):
on_log_progress("Unpacked")
# install available plugins
with codecs.open(os.path.join(temp, "plugin_list.json"), "r") as f:
plugins = json.load(f)
known_plugins = []
unknown_plugins = []
if plugins:
if plugin_repo:
for plugin in plugins:
if plugin["key"] in plugin_manager.plugins:
# already installed
continue
if plugin["key"] in plugin_repo:
# not installed, can be installed from repository url
known_plugins.append(plugin_repo[plugin["key"]])
else:
# not installed, not installable
unknown_plugins.append(plugin)
else:
# no repo, all plugins are not installable
unknown_plugins = plugins
if callable(on_log_progress):
if known_plugins:
on_log_progress(
"Known and installable plugins: {}".format(
", ".join(map(lambda x: x["id"], known_plugins))
)
)
if unknown_plugins:
on_log_progress(
"Unknown plugins: {}".format(
", ".join(map(lambda x: x["key"], unknown_plugins))
)
)
if callable(on_install_plugins):
on_install_plugins(known_plugins)
if callable(on_report_unknown_plugins):
on_report_unknown_plugins(unknown_plugins)
# move config data
basedir_backup = basedir + ".bck"
basedir_extracted = os.path.join(temp, "basedir")
if callable(on_log_progress):
on_log_progress(
"Renaming {} to {}...".format(basedir, basedir_backup)
)
shutil.move(basedir, basedir_backup)
try:
if callable(on_log_progress):
on_log_progress(
"Moving {} to {}...".format(basedir_extracted, basedir)
)
shutil.move(basedir_extracted, basedir)
except:
if callable(on_log_error):
on_log_error(
"Error while restoring config data", exc_info=sys.exc_info()
)
on_log_error("Rolling back old config data")
shutil.move(basedir_backup, basedir)
if callable(on_restore_failed):
on_restore_failed(path)
return False
if unknown_plugins:
if callable(on_log_progress):
on_log_progress("Writing info file about unknown plugins")
if not os.path.isdir(datafolder):
os.makedirs(datafolder)
unknown_plugins_path = os.path.join(
datafolder, UNKNOWN_PLUGINS_FILE
)
try:
with codecs.open(
unknown_plugins_path, mode="w", encoding="utf-8"
) as f:
json.dump(unknown_plugins, f)
except:
if callable(on_log_error):
on_log_error(
"Could not persist list of unknown plugins to {}".format(
unknown_plugins_path
),
exc_info=sys.exc_info(),
)
finally:
if callable(on_log_progress):
on_log_progress("Removing temporary unpacked folder")
shutil.rmtree(temp)
except:
exc_info = sys.exc_info()
try:
if callable(on_log_error):
on_log_error("Error while running restore", exc_info=exc_info)
if callable(on_restore_failed):
on_restore_failed(path)
finally:
del exc_info
return False
finally:
# remove zip
if callable(on_log_progress):
on_log_progress("Removing temporary zip")
os.remove(path)
# restart server
if restart_command:
import sarge
if callable(on_log_progress):
on_log_progress("Restarting...")
if callable(on_restore_done):
on_restore_done(path)
try:
sarge.run(restart_command, async_=True)
except:
if callable(on_log_error):
on_log_error(
"Error while restarting via command {}".format(restart_command),
exc_info=sys.exc_info(),
)
on_log_error("Please restart OctoPrint manually")
return False
else:
if callable(on_restore_done):
on_restore_done(path)
return True
|
def _restore_backup(
cls,
path,
settings=None,
plugin_manager=None,
datafolder=None,
on_install_plugins=None,
on_report_unknown_plugins=None,
on_invalid_backup=None,
on_log_progress=None,
on_log_error=None,
on_restore_start=None,
on_restore_done=None,
on_restore_failed=None,
):
if not is_os_compatible(["!windows"]):
if callable(on_log_error):
on_log_error("Restore is not supported on this operating system")
if callable(on_restore_failed):
on_restore_failed(path)
return False
restart_command = settings.global_get(
["server", "commands", "serverRestartCommand"]
)
basedir = settings._basedir
cls._clean_dir_backup(basedir, on_log_progress=on_log_progress)
plugin_repo = dict()
repo_url = settings.global_get(["plugins", "pluginmanager", "repository"])
if repo_url:
plugin_repo = cls._get_plugin_repository_data(repo_url)
if callable(on_restore_start):
on_restore_start(path)
try:
with zipfile.ZipFile(path, "r") as zip:
# read metadata
try:
metadata_zipinfo = zip.getinfo("metadata.json")
except KeyError:
if callable(on_invalid_backup):
on_invalid_backup("Not an OctoPrint backup, lacks metadata.json")
if callable(on_restore_failed):
on_restore_failed(path)
return False
metadata_bytes = zip.read(metadata_zipinfo)
metadata = json.loads(metadata_bytes)
backup_version = get_comparable_version(metadata["version"], base=True)
if backup_version > get_octoprint_version(base=True):
if callable(on_invalid_backup):
on_invalid_backup(
"Backup is from a newer version of OctoPrint and cannot be applied"
)
if callable(on_restore_failed):
on_restore_failed(path)
return False
# unzip to temporary folder
temp = tempfile.mkdtemp()
try:
if callable(on_log_progress):
on_log_progress("Unpacking backup to {}...".format(temp))
abstemp = os.path.abspath(temp)
for member in zip.infolist():
abspath = os.path.abspath(os.path.join(temp, member.filename))
if abspath.startswith(abstemp):
zip.extract(member, temp)
# sanity check
configfile = os.path.join(temp, "basedir", "config.yaml")
if not os.path.exists(configfile):
if callable(on_invalid_backup):
on_invalid_backup("Backup lacks config.yaml")
if callable(on_restore_failed):
on_restore_failed(path)
return False
import yaml
with codecs.open(configfile) as f:
configdata = yaml.safe_load(f)
if configdata.get("accessControl", dict()).get("enabled", True):
userfile = os.path.join(temp, "basedir", "users.yaml")
if not os.path.exists(userfile):
if callable(on_invalid_backup):
on_invalid_backup("Backup lacks users.yaml")
if callable(on_restore_failed):
on_restore_failed(path)
return False
if callable(on_log_progress):
on_log_progress("Unpacked")
# install available plugins
with codecs.open(os.path.join(temp, "plugin_list.json"), "r") as f:
plugins = json.load(f)
known_plugins = []
unknown_plugins = []
if plugins:
if plugin_repo:
for plugin in plugins:
if plugin["key"] in plugin_manager.plugins:
# already installed
continue
if plugin["key"] in plugin_repo:
# not installed, can be installed from repository url
known_plugins.append(plugin_repo[plugin["key"]])
else:
# not installed, not installable
unknown_plugins.append(plugin)
else:
# no repo, all plugins are not installable
unknown_plugins = plugins
if callable(on_log_progress):
if known_plugins:
on_log_progress(
"Known and installable plugins: {}".format(
", ".join(map(lambda x: x["id"], known_plugins))
)
)
if unknown_plugins:
on_log_progress(
"Unknown plugins: {}".format(
", ".join(map(lambda x: x["key"], unknown_plugins))
)
)
if callable(on_install_plugins):
on_install_plugins(known_plugins)
if callable(on_report_unknown_plugins):
on_report_unknown_plugins(unknown_plugins)
# move config data
basedir_backup = basedir + ".bck"
basedir_extracted = os.path.join(temp, "basedir")
if callable(on_log_progress):
on_log_progress(
"Renaming {} to {}...".format(basedir, basedir_backup)
)
os.rename(basedir, basedir_backup)
try:
if callable(on_log_progress):
on_log_progress(
"Moving {} to {}...".format(basedir_extracted, basedir)
)
os.rename(basedir_extracted, basedir)
except:
if callable(on_log_error):
on_log_error(
"Error while restoring config data", exc_info=sys.exc_info()
)
on_log_error("Rolling back old config data")
os.rename(basedir_backup, basedir)
if callable(on_restore_failed):
on_restore_failed(path)
return False
if unknown_plugins:
if callable(on_log_progress):
on_log_progress("Writing info file about unknown plugins")
if not os.path.isdir(datafolder):
os.makedirs(datafolder)
unknown_plugins_path = os.path.join(
datafolder, UNKNOWN_PLUGINS_FILE
)
try:
with codecs.open(
unknown_plugins_path, mode="w", encoding="utf-8"
) as f:
json.dump(unknown_plugins, f)
except:
if callable(on_log_error):
on_log_error(
"Could not persist list of unknown plugins to {}".format(
unknown_plugins_path
),
exc_info=sys.exc_info(),
)
finally:
if callable(on_log_progress):
on_log_progress("Removing temporary unpacked folder")
shutil.rmtree(temp)
except:
exc_info = sys.exc_info()
try:
if callable(on_log_error):
on_log_error("Error while running restore", exc_info=exc_info)
if callable(on_restore_failed):
on_restore_failed(path)
finally:
del exc_info
return False
finally:
# remove zip
if callable(on_log_progress):
on_log_progress("Removing temporary zip")
os.remove(path)
# restart server
if restart_command:
import sarge
if callable(on_log_progress):
on_log_progress("Restarting...")
if callable(on_restore_done):
on_restore_done(path)
try:
sarge.run(restart_command, async_=True)
except:
if callable(on_log_error):
on_log_error(
"Error while restarting via command {}".format(restart_command),
exc_info=sys.exc_info(),
)
on_log_error("Please restart OctoPrint manually")
return False
else:
if callable(on_restore_done):
on_restore_done(path)
return True
|
https://github.com/OctoPrint/OctoPrint/issues/2992
|
Uploading backup, this can take a while. Please wait...
Stelle Sicherung wieder her...
Unpacking backup to /tmp/tmpYhY_SP...
Unpacked
Renaming /data/octorpint-data to /data/octorpint-data.bck...
Moving /tmp/tmpYhY_SP/basedir to /data/octorpint-data...
Error while restoring config data
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup/__init__.py", line 828, in _restore_backup
os.rename(basedir_extracted, basedir)
OSError: [Errno 18] Invalid cross-device link
Rolling back old config data
Wiederherstellung fehlgeschlagen! Prüfe die obige Ausgabe sowie octoprint.log für mögliche Gründe dafür.
Removing temporary unpacked folder
Removing temporary zip
|
OSError
|
def _create_backup(
cls,
name,
exclude=None,
settings=None,
plugin_manager=None,
datafolder=None,
on_backup_start=None,
on_backup_done=None,
on_backup_error=None,
):
try:
if exclude is None:
exclude = []
configfile = settings._configfile
basedir = settings._basedir
temporary_path = os.path.join(datafolder, ".{}".format(name))
final_path = os.path.join(datafolder, name)
size = cls._get_disk_size(basedir)
if not cls._free_space(os.path.dirname(temporary_path), size):
raise InsufficientSpace()
own_folder = datafolder
defaults = [
os.path.join(basedir, "config.yaml"),
] + [
os.path.join(basedir, folder)
for folder in default_settings["folder"].keys()
]
compression = zipfile.ZIP_DEFLATED if zlib else zipfile.ZIP_STORED
if callable(on_backup_start):
on_backup_start(name, temporary_path, exclude)
with zipfile.ZipFile(
temporary_path, mode="w", compression=compression, allowZip64=True
) as zip:
def add_to_zip(source, target, ignored=None):
if ignored is None:
ignored = []
if source in ignored:
return
if os.path.isdir(source):
for entry in scandir(source):
add_to_zip(
entry.path,
os.path.join(target, entry.name),
ignored=ignored,
)
elif os.path.isfile(source):
zip.write(source, arcname=target)
# add metadata
metadata = dict(version=get_octoprint_version_string(), excludes=exclude)
zip.writestr("metadata.json", json.dumps(metadata))
# backup current config file
add_to_zip(
configfile,
"basedir/config.yaml",
ignored=[
own_folder,
],
)
# backup configured folder paths
for folder in default_settings["folder"].keys():
if folder in exclude:
continue
if folder in (
"generated",
"logs",
"watched",
):
continue
add_to_zip(
settings.global_get_basefolder(folder),
"basedir/" + folder.replace("_", "/"),
ignored=[
own_folder,
],
)
# backup anything else that might be lying around in our basedir
add_to_zip(
basedir,
"basedir",
ignored=defaults
+ [
own_folder,
],
)
# add list of installed plugins
plugins = []
plugin_folder = settings.global_get_basefolder("plugins")
for key, plugin in plugin_manager.plugins.items():
if plugin.bundled or (
isinstance(plugin.origin, FolderOrigin)
and plugin.origin.folder == plugin_folder
):
# ignore anything bundled or from the plugins folder we already include in the backup
continue
plugins.append(dict(key=plugin.key, name=plugin.name, url=plugin.url))
if len(plugins):
zip.writestr("plugin_list.json", json.dumps(plugins))
shutil.move(temporary_path, final_path)
if callable(on_backup_done):
on_backup_done(name, final_path, exclude)
except:
if callable(on_backup_error):
exc_info = sys.exc_info()
try:
on_backup_error(name, exc_info)
finally:
del exc_info
raise
|
def _create_backup(
cls,
name,
exclude=None,
settings=None,
plugin_manager=None,
datafolder=None,
on_backup_start=None,
on_backup_done=None,
on_backup_error=None,
):
try:
if exclude is None:
exclude = []
configfile = settings._configfile
basedir = settings._basedir
temporary_path = os.path.join(datafolder, ".{}".format(name))
final_path = os.path.join(datafolder, name)
size = cls._get_disk_size(basedir)
if not cls._free_space(os.path.dirname(temporary_path), size):
raise InsufficientSpace()
own_folder = datafolder
defaults = [
os.path.join(basedir, "config.yaml"),
] + [
os.path.join(basedir, folder)
for folder in default_settings["folder"].keys()
]
compression = zipfile.ZIP_DEFLATED if zlib else zipfile.ZIP_STORED
if callable(on_backup_start):
on_backup_start(name, temporary_path, exclude)
with zipfile.ZipFile(
temporary_path, mode="w", compression=compression, allowZip64=True
) as zip:
def add_to_zip(source, target, ignored=None):
if ignored is None:
ignored = []
if source in ignored:
return
if os.path.isdir(source):
for entry in scandir(source):
add_to_zip(
entry.path,
os.path.join(target, entry.name),
ignored=ignored,
)
elif os.path.isfile(source):
zip.write(source, arcname=target)
# add metadata
metadata = dict(version=get_octoprint_version_string(), excludes=exclude)
zip.writestr("metadata.json", json.dumps(metadata))
# backup current config file
add_to_zip(
configfile,
"basedir/config.yaml",
ignored=[
own_folder,
],
)
# backup configured folder paths
for folder in default_settings["folder"].keys():
if folder in exclude:
continue
if folder in (
"generated",
"logs",
"watched",
):
continue
add_to_zip(
settings.global_get_basefolder(folder),
"basedir/" + folder.replace("_", "/"),
ignored=[
own_folder,
],
)
# backup anything else that might be lying around in our basedir
add_to_zip(
basedir,
"basedir",
ignored=defaults
+ [
own_folder,
],
)
# add list of installed plugins
plugins = []
plugin_folder = settings.global_get_basefolder("plugins")
for key, plugin in plugin_manager.plugins.items():
if plugin.bundled or (
isinstance(plugin.origin, FolderOrigin)
and plugin.origin.folder == plugin_folder
):
# ignore anything bundled or from the plugins folder we already include in the backup
continue
plugins.append(dict(key=plugin.key, name=plugin.name, url=plugin.url))
if len(plugins):
zip.writestr("plugin_list.json", json.dumps(plugins))
os.rename(temporary_path, final_path)
if callable(on_backup_done):
on_backup_done(name, final_path, exclude)
except:
if callable(on_backup_error):
exc_info = sys.exc_info()
try:
on_backup_error(name, exc_info)
finally:
del exc_info
raise
|
https://github.com/OctoPrint/OctoPrint/issues/2992
|
Uploading backup, this can take a while. Please wait...
Stelle Sicherung wieder her...
Unpacking backup to /tmp/tmpYhY_SP...
Unpacked
Renaming /data/octorpint-data to /data/octorpint-data.bck...
Moving /tmp/tmpYhY_SP/basedir to /data/octorpint-data...
Error while restoring config data
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup/__init__.py", line 828, in _restore_backup
os.rename(basedir_extracted, basedir)
OSError: [Errno 18] Invalid cross-device link
Rolling back old config data
Wiederherstellung fehlgeschlagen! Prüfe die obige Ausgabe sowie octoprint.log für mögliche Gründe dafür.
Removing temporary unpacked folder
Removing temporary zip
|
OSError
|
def average_total_rolling(self):
if not self._count or self._count < self._rolling_window or not len(self._totals):
return None
else:
return sum(self._totals) / len(self._totals)
|
def average_total_rolling(self):
if not self._count or self._count < self._rolling_window:
return None
else:
return sum(self._totals) / len(self._totals)
|
https://github.com/OctoPrint/OctoPrint/issues/3116
|
2019-04-08 17:22:53,104 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
|
ZeroDivisionError
|
def average_distance(self):
if (
not self._count
or self._count < self._rolling_window + 1
or not len(self._distances)
):
return None
else:
return sum(self._distances) / len(self._distances)
|
def average_distance(self):
if not self._count or self._count < self._rolling_window + 1:
return None
else:
return sum(self._distances) / len(self._distances)
|
https://github.com/OctoPrint/OctoPrint/issues/3116
|
2019-04-08 17:22:53,104 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
|
ZeroDivisionError
|
def __init__(self, job_type):
self.stats_weighing_until = settings().getFloat(
["estimation", "printTime", "statsWeighingUntil"]
)
self.validity_range = settings().getFloat(
["estimation", "printTime", "validityRange"]
)
self.force_dumb_from_percent = settings().getFloat(
["estimation", "printTime", "forceDumbFromPercent"]
)
self.force_dumb_after_min = settings().getFloat(
["estimation", "printTime", "forceDumbAfterMin"]
)
threshold = None
rolling_window = None
countdown = None
if job_type == "local" or job_type == "sdcard":
# we are happy if the average of the estimates stays within 60s of the prior one
threshold = settings().getFloat(["estimation", "printTime", "stableThreshold"])
if job_type == "sdcard":
# we are interesting in a rolling window of roughly the last 15s, so the number of entries has to be derived
# by that divided by the sd status polling interval
interval = settings().getFloat(["serial", "timeout", "sdStatus"])
if interval <= 0:
interval = 1.0
rolling_window = 15 / interval
if rolling_window < 1:
rolling_window = 1
# we are happy when one rolling window has been stable
countdown = rolling_window
self._data = TimeEstimationHelper(
rolling_window=rolling_window, countdown=countdown, threshold=threshold
)
|
def __init__(self, job_type):
self.stats_weighing_until = settings().getFloat(
["estimation", "printTime", "statsWeighingUntil"]
)
self.validity_range = settings().getFloat(
["estimation", "printTime", "validityRange"]
)
self.force_dumb_from_percent = settings().getFloat(
["estimation", "printTime", "forceDumbFromPercent"]
)
self.force_dumb_after_min = settings().getFloat(
["estimation", "printTime", "forceDumbAfterMin"]
)
threshold = None
rolling_window = None
countdown = None
if job_type == "local" or job_type == "sdcard":
# we are happy if the average of the estimates stays within 60s of the prior one
threshold = settings().getFloat(["estimation", "printTime", "stableThreshold"])
if job_type == "sdcard":
# we are interesting in a rolling window of roughly the last 15s, so the number of entries has to be derived
# by that divided by the sd status polling interval
interval = settings().getFloat(["serial", "timeout", "sdStatus"])
if interval <= 0:
interval = 1.0
rolling_window = 15 / interval
# we are happy when one rolling window has been stable
countdown = rolling_window
self._data = TimeEstimationHelper(
rolling_window=rolling_window, countdown=countdown, threshold=threshold
)
|
https://github.com/OctoPrint/OctoPrint/issues/3116
|
2019-04-08 17:22:53,104 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
|
ZeroDivisionError
|
def _readline(self):
if self._serial is None:
return None
try:
ret = self._serial.readline()
except Exception as ex:
if not self._connection_closing:
self._logger.exception("Unexpected error while reading from serial port")
self._log(
"Unexpected error while reading serial port, please consult octoprint.log for details: %s"
% (get_exception_string())
)
if isinstance(ex, serial.SerialException):
self._dual_log(
"Please see https://faq.octoprint.org/serialerror for possible reasons of this.",
level=logging.ERROR,
)
self._errorValue = get_exception_string()
self.close(is_error=True)
return None
try:
ret = ret.decode("utf-8").rstrip()
except UnicodeDecodeError:
ret = ret.decode("latin1").rstrip()
self._log("Recv: {}".format(ret))
for name, hook in self._received_message_hooks.items():
try:
ret = hook(self, ret)
except Exception:
self._logger.exception(
"Error while processing hook {name}:".format(**locals()),
extra=dict(plugin=name),
)
else:
if ret is None:
return ""
return ret
|
def _readline(self):
if self._serial is None:
return None
try:
ret = self._serial.readline()
except Exception as ex:
if not self._connection_closing:
self._logger.exception("Unexpected error while reading from serial port")
self._log(
"Unexpected error while reading serial port, please consult octoprint.log for details: %s"
% (get_exception_string())
)
if isinstance(ex, serial.SerialException):
self._dual_log(
"Please see https://faq.octoprint.org/serialerror for possible reasons of this.",
level=logging.ERROR,
)
self._errorValue = get_exception_string()
self.close(is_error=True)
return None
try:
ret = ret.decode("utf-8")
except UnicodeDecodeError:
ret = ret.decode("latin1")
self._log("Recv: {}".format(ret))
for name, hook in self._received_message_hooks.items():
try:
ret = hook(self, ret)
except Exception:
self._logger.exception(
"Error while processing hook {name}:".format(**locals()),
extra=dict(plugin=name),
)
else:
if ret is None:
return ""
return ret
|
https://github.com/OctoPrint/OctoPrint/issues/3115
|
2019-04-08 22:38:29,687 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 22:38:31,951 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 22:38:32,097 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 22:38:32,170 - octoprint.server - INFO - Intermediary server started
2019-04-08 22:38:32,171 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 22:38:32,696 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 22:38:32,698 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-04-08 22:38:32,827 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 22:38:32,829 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 22:38:34,568 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 22:38:35,956 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 22:38:35,958 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 22:38:35,958 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 22:38:35,963 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-04-08 22:38:36,065 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 22:38:36,083 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 22:38:36,091 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 22:38:36,092 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 22:38:36,436 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 22:38:36,696 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 22:38:36,699 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 22:38:36,700 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 22:38:36,702 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 22:38:36,707 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 22:38:36,722 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 22:38:36,733 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 22:38:36,743 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 22:38:36,784 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 22:38:37,543 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.69s
2019-04-08 22:38:37,833 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-04-08 22:38:38,323 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 22:38:38,324 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 22:38:38,325 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 22:38:38,549 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.73s
2019-04-08 22:38:38,923 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-04-08 22:38:39,204 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s
2019-04-08 22:38:39,860 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.58s
2019-04-08 22:38:40,416 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 22:38:40,560 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.57s
2019-04-08 22:38:46,825 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 22:38:46,825 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 22:38:46,842 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-04-08 16:47:47,977 - octoprint.server - INFO - Shutting down...
2019-04-08 16:47:48,907 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 16:47:48,907 - octoprint.events - INFO - Event loop shut down
2019-04-08 16:47:48,917 - octoprint.server - INFO - Goodbye!
2019-04-08 16:47:53,794 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:47:53,796 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 16:47:53,798 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:47:54,950 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:47:57,297 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 16:47:57,415 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 16:47:57,461 - octoprint.server - INFO - Intermediary server started
2019-04-08 16:47:57,462 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:47:58,033 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 16:47:58,071 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 16:47:58,072 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 16:47:58,116 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 16:48:00,024 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:48:01,399 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 16:48:01,400 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:48:01,401 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:48:01,405 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-04-08 16:48:01,414 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 16:48:01,432 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 16:48:01,441 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 16:48:01,443 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 16:48:01,804 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 16:48:01,976 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 16:48:01,978 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 16:48:01,979 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 16:48:01,980 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 16:48:01,987 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 16:48:02,001 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 16:48:02,011 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 16:48:02,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 16:48:02,037 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 16:48:02,100 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 16:48:02,439 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 16:48:03,666 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:48:03,668 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:48:03,669 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:48:12,223 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=en', 'path': u'/', '_count': 1, '_timestamp': 1554760092.223473, 'base_url': 'https://172.16.12.81/'}
2019-04-08 16:48:31,088 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 16:48:40,067 - octoprint.server.api - INFO - Actively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:48:41,672 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 16:48:43,831 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 16:48:45,093 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 16:49:57,649 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 16:49:57,653 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 16:49:57,657 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:49:58,772 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:50:00,384 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 16:50:00,393 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 16:50:00,404 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:50:00,444 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 16:50:01,060 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 16:52:26,638 - octoprint.plugins.tracking - INFO - Sent tracking event disable_plugin, payload: {'plugin_version': None, 'plugin': 'cura'}
2019-04-08 16:52:35,501 - octoprint.plugins.tracking - INFO - Sent tracking event disable_plugin, payload: {'plugin_version': None, 'plugin': 'virtual_printer'}
2019-04-08 16:52:41,302 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-04-08 16:52:41,492 - octoprint.server - INFO - Shutting down...
2019-04-08 16:52:42,217 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 16:52:42,224 - octoprint.events - INFO - Event loop shut down
2019-04-08 16:52:42,244 - octoprint.server - INFO - Goodbye!
2019-04-08 16:52:44,409 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:52:44,411 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 16:52:44,412 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:52:45,381 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 16:52:46,003 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-04-08 16:52:46,039 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:52:46,784 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 16:52:47,039 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 16:52:47,808 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 16:52:47,904 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 16:52:47,929 - octoprint.server - INFO - Intermediary server started
2019-04-08 16:52:47,929 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:52:48,445 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 16:52:48,486 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 16:52:48,488 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 16:52:48,504 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 16:52:48,533 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 16:52:49,908 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:52:51,279 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 16:52:51,281 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:52:51,281 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:52:51,286 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 16:52:51,294 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 16:52:51,312 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 16:52:51,321 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 16:52:51,337 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 16:52:51,646 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 16:52:52,122 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 16:52:52,127 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 16:52:52,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-04-08 16:52:52,152 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 16:52:52,204 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 16:52:52,257 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 16:52:52,298 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 16:52:52,385 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 16:52:52,563 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 16:52:52,686 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 16:52:52,686 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 16:52:52,817 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 16:52:53,458 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 16:52:54,103 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 16:52:54,173 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:52:54,185 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 16:52:54,302 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:52:54,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:52:54,304 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:52:54,416 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 16:52:55,047 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 16:53:04,072 - octoprint.server.preemptive_cache - INFO - ... done in 9.66s
2019-04-08 16:55:17,176 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:55:17,286 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 16:55:18,129 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 16:55:18,197 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:55:19,892 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 16:55:59,715 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 16:55:59,719 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 16:55:59,736 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:57:00,909 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2019-04-08 16:58:07,633 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 16:58:07,645 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 16:58:07,655 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:58:08,762 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:58:10,409 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 16:58:10,423 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 16:58:10,433 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:58:10,480 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 16:58:11,431 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 16:59:22,123 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2019-04-08 16:59:22,779 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17'}
2019-04-08 16:59:24,505 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-04-08 16:59:39,275 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:06:14,593 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:06:14,600 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-04-08 17:06:15,056 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:07:47,905 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-04-08 17:07:48,954 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:07:49,084 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:07:49,924 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:07:50,011 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:07:51,836 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:07:51,838 - octoprint.printer.standard - ERROR - Error while trying to send initial state update
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 919, in _sendInitialStateUpdate
data = self._stateMonitor.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:07:54,970 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-04-08 17:12:40,089 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-04-08 17:12:40,745 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17', 'elapsed': 797}
2019-04-08 17:12:40,801 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-04-08 17:15:09,280 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2019-04-08 17:15:09,456 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:15:09,702 - octoprint.server - INFO - Shutting down...
2019-04-08 17:15:09,773 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:15:09,774 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:15:09,801 - octoprint.server - INFO - Goodbye!
2019-04-08 17:15:15,137 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:15:15,139 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 17:15:15,141 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:15:16,265 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-04-08 17:15:16,337 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:15:17,571 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:15:17,932 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 17:15:18,770 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:15:18,892 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:15:18,940 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:15:18,941 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:15:19,511 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:15:19,557 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:15:19,559 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:15:19,576 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 17:15:19,608 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 17:15:21,964 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:15:23,428 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:15:23,430 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:15:23,430 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:15:23,435 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 17:15:23,443 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:15:23,462 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:15:23,471 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:15:23,487 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:15:23,912 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:15:23,981 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:15:23,984 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:15:23,985 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 17:15:23,986 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:15:23,990 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:15:24,003 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:15:24,014 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:15:24,025 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:15:24,040 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:15:24,148 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:15:24,578 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:15:25,534 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:15:25,588 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:15:25,598 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:15:25,598 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:15:25,624 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:15:25,635 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:15:25,639 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:15:25,745 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:15:26,417 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:15:26,497 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:15:26,607 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:15:36,756 - octoprint.server.preemptive_cache - INFO - ... done in 10.34s
2019-04-08 17:15:53,089 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:15:53,194 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:15:54,051 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:15:54,175 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:15:55,912 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:15:59,593 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart
2019-04-08 17:15:59,934 - octoprint.server - INFO - Shutting down...
2019-04-08 17:15:59,972 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:15:59,975 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:15:59,990 - octoprint.server - INFO - Goodbye!
2019-04-08 17:16:02,106 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:16:02,108 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 17:16:02,109 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2019-04-08 17:16:02,110 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:16:03,086 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:16:03,710 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-04-08 17:16:03,773 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:16:04,471 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:16:04,726 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 17:16:05,495 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:16:05,591 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:16:05,616 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:16:05,616 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:16:06,135 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:16:06,176 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:16:06,178 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:16:06,194 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 17:16:06,223 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 17:16:07,606 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:16:08,979 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:16:08,981 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:16:08,981 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:16:08,990 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 17:16:08,999 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:16:09,016 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:16:09,026 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:16:09,039 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:16:09,344 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:16:09,371 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:16:09,373 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:16:09,373 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-04-08 17:16:09,376 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:16:09,403 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:16:09,704 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:16:09,708 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:16:09,719 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:16:09,837 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:16:09,852 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:16:09,923 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:16:09,934 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2019-04-08 17:16:10,306 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:16:10,703 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:16:11,744 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:16:11,746 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:16:11,747 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:16:11,817 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:16:11,998 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:16:12,080 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:16:12,092 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:16:12,468 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:16:21,770 - octoprint.server.preemptive_cache - INFO - ... done in 9.95s
2019-04-08 17:16:48,496 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 17:16:48,502 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 17:16:48,515 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:16:49,629 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:16:51,134 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 17:16:51,153 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 17:16:51,164 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:16:51,213 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 17:16:51,836 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 17:17:04,248 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-04-08 17:17:04,255 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-04-08 17:17:39,078 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:21:41,068 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:22:21,258 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2019-04-08 17:22:21,933 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17'}
2019-04-08 17:22:31,313 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:22:42,676 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:22:53,104 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:23:21,881 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:23:41,883 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:27:31,459 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:28:07,088 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-04-08 17:28:07,751 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17', 'elapsed': 345}
2019-04-08 17:28:20,605 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-04-08 17:30:17,932 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2019-04-08 17:30:18,067 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:30:18,352 - octoprint.server - INFO - Shutting down...
2019-04-08 17:30:19,039 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:30:19,040 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:30:19,227 - octoprint.server - INFO - Goodbye!
2019-04-08 17:30:24,920 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:30:24,924 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 17:30:24,925 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:30:26,282 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-04-08 17:30:26,351 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:30:27,504 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:30:27,858 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 17:30:28,702 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:30:28,823 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:30:28,910 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:30:28,911 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:30:29,457 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:30:29,499 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:30:29,501 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:30:29,518 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 17:30:29,550 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 17:30:31,704 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:30:33,132 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:30:33,133 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:30:33,133 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:30:33,139 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 17:30:33,147 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:30:33,165 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:30:33,175 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:30:33,191 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:30:33,555 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:30:33,576 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:30:33,578 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:30:33,579 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 17:30:33,581 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:30:33,587 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:30:33,598 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:30:33,609 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:30:33,620 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:30:33,643 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:30:33,701 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:30:34,532 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:30:34,538 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:30:34,614 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:30:34,632 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:30:35,189 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:30:35,190 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:30:35,192 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:30:35,232 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:30:35,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:30:35,602 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:30:36,171 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:30:36,532 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:30:46,950 - octoprint.server.preemptive_cache - INFO - ... done in 10.78s
2019-04-08 17:34:41,879 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:34:43,369 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 412, in index
response = default_view()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 384, in default_view
return preemptively_cached()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 913, in decorated_function
for e in entries:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 967, in decorated_function
if not self._validate_entry(entry):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 700, in decorated_function
with self._mutex:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 669, in f_with_duration
def calculate_timeout(self, timeout=None):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 922, in decorated_function
cache_data = self.get_all_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 938, in decorated_function
import copy
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 371, in make_default_ui
r = make_response(render_template("index.jinja2", **render_kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 128, in render_template
context, ctx.app)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 110, in _render
rv = template.render(context)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/index.jinja2", line 16, in top-level template code
{% include 'initscript.jinja2' %}
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/initscript.jinja2", line 33, in top-level template code
var SUPPORTED_FILETYPES = {{ supportedFiletypes|tojson }};
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 243, in tojson_filter
return Markup(htmlsafe_dumps(obj, **kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 186, in htmlsafe_dumps
rv = dumps(obj, **kwargs) \
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 126, in dumps
rv = _json.dumps(obj, **kwargs)
File "/usr/lib/python2.7/json/__init__.py", line 251, in dumps
sort_keys=sort_keys, **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 209, in encode
chunks = list(chunks)
File "/usr/lib/python2.7/json/encoder.py", line 442, in _iterencode
o = _default(o)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1492, in default
"js/app/client/browser.js",
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 83, in default
return _json.JSONEncoder.default(self, o)
File "/usr/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: Undefined is not JSON serializable
2019-04-08 17:34:43,372 - tornado.access - ERROR - 500 GET / (::ffff:172.16.12.20) 1512.00ms
2019-04-08 17:34:43,381 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:34:43,683 - tornado.access - WARNING - 404 GET /favicon.ico (::ffff:172.16.12.20) 9.95ms
2019-04-08 17:34:53,847 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:34:54,624 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 412, in index
response = default_view()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 384, in default_view
return preemptively_cached()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 913, in decorated_function
for e in entries:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 967, in decorated_function
if not self._validate_entry(entry):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 700, in decorated_function
with self._mutex:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 669, in f_with_duration
def calculate_timeout(self, timeout=None):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 922, in decorated_function
cache_data = self.get_all_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 938, in decorated_function
import copy
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 371, in make_default_ui
r = make_response(render_template("index.jinja2", **render_kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 128, in render_template
context, ctx.app)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 110, in _render
rv = template.render(context)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/index.jinja2", line 16, in top-level template code
{% include 'initscript.jinja2' %}
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/initscript.jinja2", line 33, in top-level template code
var SUPPORTED_FILETYPES = {{ supportedFiletypes|tojson }};
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 243, in tojson_filter
return Markup(htmlsafe_dumps(obj, **kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 186, in htmlsafe_dumps
rv = dumps(obj, **kwargs) \
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 126, in dumps
rv = _json.dumps(obj, **kwargs)
File "/usr/lib/python2.7/json/__init__.py", line 251, in dumps
sort_keys=sort_keys, **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 209, in encode
chunks = list(chunks)
File "/usr/lib/python2.7/json/encoder.py", line 442, in _iterencode
o = _default(o)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1492, in default
"js/app/client/browser.js",
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 83, in default
return _json.JSONEncoder.default(self, o)
File "/usr/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: Undefined is not JSON serializable
2019-04-08 17:34:54,626 - tornado.access - ERROR - 500 GET / (::ffff:172.16.12.20) 797.01ms
2019-04-08 17:35:06,879 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:35:07,708 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 412, in index
response = default_view()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 384, in default_view
return preemptively_cached()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 913, in decorated_function
for e in entries:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 967, in decorated_function
if not self._validate_entry(entry):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 700, in decorated_function
with self._mutex:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 669, in f_with_duration
def calculate_timeout(self, timeout=None):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 922, in decorated_function
cache_data = self.get_all_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 938, in decorated_function
import copy
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 371, in make_default_ui
r = make_response(render_template("index.jinja2", **render_kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 128, in render_template
context, ctx.app)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 110, in _render
rv = template.render(context)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/index.jinja2", line 16, in top-level template code
{% include 'initscript.jinja2' %}
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/initscript.jinja2", line 33, in top-level template code
var SUPPORTED_FILETYPES = {{ supportedFiletypes|tojson }};
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 243, in tojson_filter
return Markup(htmlsafe_dumps(obj, **kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 186, in htmlsafe_dumps
rv = dumps(obj, **kwargs) \
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 126, in dumps
rv = _json.dumps(obj, **kwargs)
File "/usr/lib/python2.7/json/__init__.py", line 251, in dumps
sort_keys=sort_keys, **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 209, in encode
chunks = list(chunks)
File "/usr/lib/python2.7/json/encoder.py", line 442, in _iterencode
o = _default(o)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1492, in default
"js/app/client/browser.js",
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 83, in default
return _json.JSONEncoder.default(self, o)
File "/usr/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: Undefined is not JSON serializable
2019-04-08 17:35:07,711 - tornado.access - ERROR - 500 GET / (::ffff:172.16.12.20) 850.00ms
2019-04-08 17:35:13,668 - octoprint.server - INFO - Shutting down...
2019-04-08 17:35:13,932 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:35:13,934 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:35:14,168 - octoprint.server - INFO - Goodbye!
2019-04-08 17:35:20,205 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:35:20,207 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc1
2019-04-08 17:35:20,209 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:35:21,441 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-04-08 17:35:21,508 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:35:22,766 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:35:24,150 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 14 mixin implementations, 22 hook handlers
2019-04-08 17:35:24,404 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:35:24,448 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:35:24,450 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:35:25,116 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 14 mixin implementations, 22 hook handlers
2019-04-08 17:35:25,208 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:35:25,210 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:35:25,298 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2019-04-08 17:35:27,260 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:35:28,699 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:35:28,701 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:35:28,702 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:35:28,706 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s)
2019-04-08 17:35:28,717 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:35:28,735 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:35:28,746 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:35:28,761 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:35:29,218 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:35:29,454 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:35:29,457 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:35:29,457 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 17:35:29,460 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:35:29,464 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-04-08 17:35:29,465 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:35:29,468 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-04-08 17:35:29,480 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:35:29,491 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:35:29,503 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:35:29,518 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:35:29,599 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:35:29,983 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:35:31,118 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:35:31,120 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:35:31,121 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:35:31,160 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:35:31,192 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:35:31,676 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:35:33,398 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:35:37,544 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:35:37,544 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:35:37,584 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-04-08 17:35:37,764 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:35:38,161 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.11rc1', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:35:38,998 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 14}
2019-04-08 17:35:39,401 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:36:06,068 - octoprint.server.preemptive_cache - INFO - ... done in 20.58s
2019-04-08 17:36:06,923 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:36:07,038 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:36:08,713 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:36:54,795 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 17:36:54,802 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 17:36:54,820 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:36:55,929 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:36:57,554 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 17:36:57,567 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 17:36:57,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:36:57,630 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 17:36:58,252 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 17:37:09,962 - octoprint.plugin.errortracking - INFO - Initialized error tracking
2019-04-08 17:37:42,281 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:37:42,388 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:37:43,259 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:37:43,375 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:37:44,855 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:38:42,729 - octoprint.printer.standard.job - INFO - Print job selected - origin: sdcard, path: TEST_P~1.GCO, owner: None, user: None
2019-04-08 17:38:43,881 - octoprint.printer.standard.job - INFO - Print job selected - origin: sdcard, path: test_p~1.gco, owner: None, user: None
2019-04-08 17:38:46,060 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-04-08 17:38:46,068 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-04-08 17:38:56,091 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:44:08,784 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:45:00,035 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2019-04-08 17:45:29,200 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting print from SD"
2019-04-08 17:45:29,214 - octoprint.printer.standard.job - INFO - Print job started - origin: sdcard, path: test_p~1.gco, owner: None, user: None
2019-04-08 17:45:29,267 - octoprint.util.comm - INFO - Changing monitoring state from "Starting print from SD" to "Printing from SD"
2019-04-08 17:45:30,225 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17'}
2019-04-08 17:45:58,924 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1469, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1479, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1405, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 860, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:50:24,406 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-04-08 17:50:34,926 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-04-08 17:50:34,936 - octoprint.printer.standard.job - INFO - Print job done - origin: sdcard, path: test_p~1.gco, owner: None
2019-04-08 17:50:35,857 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17', 'elapsed': 305}
2019-04-08 17:50:38,216 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 906}
2019-04-08 17:50:48,445 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
|
ZeroDivisionError
|
def _readline(self):
if self._serial is None:
return None
try:
ret = self._serial.readline()
except Exception as ex:
if not self._connection_closing:
self._logger.exception("Unexpected error while reading from serial port")
self._log(
"Unexpected error while reading serial port, please consult octoprint.log for details: %s"
% (get_exception_string())
)
if isinstance(ex, serial.SerialException):
self._dual_log(
"Please see https://faq.octoprint.org/serialerror for possible reasons of this.",
level=logging.ERROR,
)
self._errorValue = get_exception_string()
self.close(is_error=True)
return None
try:
ret = ret.decode("utf-8").rstrip()
except UnicodeDecodeError:
ret = ret.decode("latin1").rstrip()
if ret != "":
self._log("Recv: {}".format(ret))
for name, hook in self._received_message_hooks.items():
try:
ret = hook(self, ret)
except Exception:
self._logger.exception(
"Error while processing hook {name}:".format(**locals()),
extra=dict(plugin=name),
)
else:
if ret is None:
return ""
return ret
|
def _readline(self):
if self._serial is None:
return None
try:
ret = self._serial.readline()
except Exception as ex:
if not self._connection_closing:
self._logger.exception("Unexpected error while reading from serial port")
self._log(
"Unexpected error while reading serial port, please consult octoprint.log for details: %s"
% (get_exception_string())
)
if isinstance(ex, serial.SerialException):
self._dual_log(
"Please see https://faq.octoprint.org/serialerror for possible reasons of this.",
level=logging.ERROR,
)
self._errorValue = get_exception_string()
self.close(is_error=True)
return None
try:
ret = ret.decode("utf-8").rstrip()
except UnicodeDecodeError:
ret = ret.decode("latin1").rstrip()
self._log("Recv: {}".format(ret))
for name, hook in self._received_message_hooks.items():
try:
ret = hook(self, ret)
except Exception:
self._logger.exception(
"Error while processing hook {name}:".format(**locals()),
extra=dict(plugin=name),
)
else:
if ret is None:
return ""
return ret
|
https://github.com/OctoPrint/OctoPrint/issues/3115
|
2019-04-08 22:38:29,687 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 22:38:31,951 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 22:38:32,097 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 22:38:32,170 - octoprint.server - INFO - Intermediary server started
2019-04-08 22:38:32,171 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 22:38:32,696 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 22:38:32,698 - octoprint.printer.profile - ERROR - Profile _default does not exist, creating _default again and setting it as default
2019-04-08 22:38:32,827 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 22:38:32,829 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 22:38:34,568 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 22:38:35,956 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 22:38:35,958 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 22:38:35,958 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 22:38:35,963 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-04-08 22:38:36,065 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 22:38:36,083 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 22:38:36,091 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 22:38:36,092 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 22:38:36,436 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 22:38:36,696 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 22:38:36,699 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 22:38:36,700 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 22:38:36,702 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 22:38:36,707 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 22:38:36,722 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 22:38:36,733 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 22:38:36,743 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 22:38:36,784 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 22:38:37,543 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.69s
2019-04-08 22:38:37,833 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2019-04-08 22:38:38,323 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 22:38:38,324 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 22:38:38,325 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 22:38:38,549 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.73s
2019-04-08 22:38:38,923 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2019-04-08 22:38:39,204 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s
2019-04-08 22:38:39,860 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.58s
2019-04-08 22:38:40,416 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 22:38:40,560 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.57s
2019-04-08 22:38:46,825 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 22:38:46,825 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 22:38:46,842 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-04-08 16:47:47,977 - octoprint.server - INFO - Shutting down...
2019-04-08 16:47:48,907 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 16:47:48,907 - octoprint.events - INFO - Event loop shut down
2019-04-08 16:47:48,917 - octoprint.server - INFO - Goodbye!
2019-04-08 16:47:53,794 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:47:53,796 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 16:47:53,798 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:47:54,950 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:47:57,297 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 16:47:57,415 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 16:47:57,461 - octoprint.server - INFO - Intermediary server started
2019-04-08 16:47:57,462 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:47:58,033 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 15 mixin implementations, 17 hook handlers
2019-04-08 16:47:58,071 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 16:47:58,072 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 16:47:58,116 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 16:48:00,024 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:48:01,399 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 16:48:01,400 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:48:01,401 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:48:01,405 - octoprint.plugin.core - INFO - Initialized 15 plugin implementation(s)
2019-04-08 16:48:01,414 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 16:48:01,432 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 16:48:01,441 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 16:48:01,443 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 16:48:01,804 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 16:48:01,976 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 16:48:01,978 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 16:48:01,979 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 16:48:01,980 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 16:48:01,987 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 16:48:02,001 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 16:48:02,011 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 16:48:02,022 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 16:48:02,037 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 16:48:02,100 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 16:48:02,439 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 16:48:03,666 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:48:03,668 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:48:03,669 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:48:12,223 - octoprint.server.util.flask.PreemptiveCache - INFO - Adding entry for / and {'query_string': 'l10n=en', 'path': u'/', '_count': 1, '_timestamp': 1554760092.223473, 'base_url': 'https://172.16.12.81/'}
2019-04-08 16:48:31,088 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 16:48:40,067 - octoprint.server.api - INFO - Actively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:48:41,672 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 16:48:43,831 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 16:48:45,093 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 16:49:57,649 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 16:49:57,653 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 16:49:57,657 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:49:58,772 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:50:00,384 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 16:50:00,393 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 16:50:00,404 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:50:00,444 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 16:50:01,060 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 16:52:26,638 - octoprint.plugins.tracking - INFO - Sent tracking event disable_plugin, payload: {'plugin_version': None, 'plugin': 'cura'}
2019-04-08 16:52:35,501 - octoprint.plugins.tracking - INFO - Sent tracking event disable_plugin, payload: {'plugin_version': None, 'plugin': 'virtual_printer'}
2019-04-08 16:52:41,302 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2019-04-08 16:52:41,492 - octoprint.server - INFO - Shutting down...
2019-04-08 16:52:42,217 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 16:52:42,224 - octoprint.events - INFO - Event loop shut down
2019-04-08 16:52:42,244 - octoprint.server - INFO - Goodbye!
2019-04-08 16:52:44,409 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:52:44,411 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 16:52:44,412 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 16:52:45,381 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 16:52:46,003 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-04-08 16:52:46,039 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:52:46,784 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 16:52:47,039 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 16:52:47,808 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 16:52:47,904 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 16:52:47,929 - octoprint.server - INFO - Intermediary server started
2019-04-08 16:52:47,929 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 16:52:48,445 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 16:52:48,486 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 16:52:48,488 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 16:52:48,504 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 16:52:48,533 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 16:52:49,908 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:52:51,279 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 16:52:51,281 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:52:51,281 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:52:51,286 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 16:52:51,294 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 16:52:51,312 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 16:52:51,321 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 16:52:51,337 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 16:52:51,646 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 16:52:52,122 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 16:52:52,127 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 16:52:52,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-04-08 16:52:52,152 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 16:52:52,204 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 16:52:52,257 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 16:52:52,298 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 16:52:52,385 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 16:52:52,563 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 16:52:52,686 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 16:52:52,686 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 16:52:52,817 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 16:52:53,458 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 16:52:54,103 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 16:52:54,173 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:52:54,185 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 16:52:54,302 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 16:52:54,303 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 16:52:54,304 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 16:52:54,416 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 16:52:55,047 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 16:53:04,072 - octoprint.server.preemptive_cache - INFO - ... done in 9.66s
2019-04-08 16:55:17,176 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:55:17,286 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 16:55:18,129 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 16:55:18,197 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 16:55:19,892 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 16:55:59,715 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 16:55:59,719 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 16:55:59,736 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:57:00,909 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2019-04-08 16:58:07,633 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 16:58:07,645 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 16:58:07,655 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:58:08,762 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:58:10,409 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 16:58:10,423 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 16:58:10,433 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 16:58:10,480 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 16:58:11,431 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 16:59:22,123 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2019-04-08 16:59:22,779 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17'}
2019-04-08 16:59:24,505 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-04-08 16:59:39,275 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:06:14,593 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:06:14,600 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-04-08 17:06:15,056 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:07:47,905 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-04-08 17:07:48,954 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:07:49,084 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:07:49,924 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:07:50,011 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:07:51,836 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:07:51,838 - octoprint.printer.standard - ERROR - Error while trying to send initial state update
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 919, in _sendInitialStateUpdate
data = self._stateMonitor.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:07:54,970 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-04-08 17:12:40,089 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-04-08 17:12:40,745 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17', 'elapsed': 797}
2019-04-08 17:12:40,801 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-04-08 17:15:09,280 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2019-04-08 17:15:09,456 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:15:09,702 - octoprint.server - INFO - Shutting down...
2019-04-08 17:15:09,773 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:15:09,774 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:15:09,801 - octoprint.server - INFO - Goodbye!
2019-04-08 17:15:15,137 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:15:15,139 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 17:15:15,141 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:15:16,265 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-04-08 17:15:16,337 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:15:17,571 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:15:17,932 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 17:15:18,770 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:15:18,892 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:15:18,940 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:15:18,941 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:15:19,511 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:15:19,557 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:15:19,559 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:15:19,576 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 17:15:19,608 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 17:15:21,964 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:15:23,428 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:15:23,430 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:15:23,430 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:15:23,435 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 17:15:23,443 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:15:23,462 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:15:23,471 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:15:23,487 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:15:23,912 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:15:23,981 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:15:23,984 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:15:23,985 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 17:15:23,986 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:15:23,990 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:15:24,003 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:15:24,014 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:15:24,025 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:15:24,040 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:15:24,148 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:15:24,578 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:15:25,534 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:15:25,588 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:15:25,598 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:15:25,598 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:15:25,624 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:15:25,635 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:15:25,639 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:15:25,745 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:15:26,417 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:15:26,497 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:15:26,607 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:15:36,756 - octoprint.server.preemptive_cache - INFO - ... done in 10.34s
2019-04-08 17:15:53,089 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:15:53,194 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:15:54,051 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:15:54,175 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:15:55,912 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:15:59,593 - octoprint.server.api.system - INFO - Performing command for core:restart_safe: sudo service octoprint restart
2019-04-08 17:15:59,934 - octoprint.server - INFO - Shutting down...
2019-04-08 17:15:59,972 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:15:59,975 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:15:59,990 - octoprint.server - INFO - Goodbye!
2019-04-08 17:16:02,106 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:16:02,108 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 17:16:02,109 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2019-04-08 17:16:02,110 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:16:03,086 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:16:03,710 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-04-08 17:16:03,773 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:16:04,471 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:16:04,726 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 17:16:05,495 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:16:05,591 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:16:05,616 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:16:05,616 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:16:06,135 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:16:06,176 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:16:06,178 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:16:06,194 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 17:16:06,223 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 17:16:07,606 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:16:08,979 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:16:08,981 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:16:08,981 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:16:08,990 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 17:16:08,999 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:16:09,016 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:16:09,026 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:16:09,039 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:16:09,344 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:16:09,371 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:16:09,373 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:16:09,373 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-04-08 17:16:09,376 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:16:09,403 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:16:09,704 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:16:09,708 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:16:09,719 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:16:09,837 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:16:09,852 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:16:09,923 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:16:09,934 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2019-04-08 17:16:10,306 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:16:10,703 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:16:11,744 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:16:11,746 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:16:11,747 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:16:11,817 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:16:11,998 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:16:12,080 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:16:12,092 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:16:12,468 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:16:21,770 - octoprint.server.preemptive_cache - INFO - ... done in 9.95s
2019-04-08 17:16:48,496 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 17:16:48,502 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 17:16:48,515 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:16:49,629 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:16:51,134 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 17:16:51,153 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 17:16:51,164 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:16:51,213 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 17:16:51,836 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 17:17:04,248 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-04-08 17:17:04,255 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-04-08 17:17:39,078 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:21:41,068 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:22:21,258 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2019-04-08 17:22:21,933 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17'}
2019-04-08 17:22:31,313 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:22:42,676 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:22:53,104 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1346, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1356, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1282, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 793, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:23:21,881 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:23:41,883 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:27:31,459 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2019-04-08 17:28:07,088 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-04-08 17:28:07,751 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17', 'elapsed': 345}
2019-04-08 17:28:20,605 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
2019-04-08 17:30:17,932 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2019-04-08 17:30:18,067 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:30:18,352 - octoprint.server - INFO - Shutting down...
2019-04-08 17:30:19,039 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:30:19,040 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:30:19,227 - octoprint.server - INFO - Goodbye!
2019-04-08 17:30:24,920 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:30:24,924 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-04-08 17:30:24,925 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:30:26,282 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-04-08 17:30:26,351 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:30:27,504 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:30:27,858 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2019-04-08 17:30:28,702 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:30:28,823 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:30:28,910 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:30:28,911 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:30:29,457 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 13 mixin implementations, 16 hook handlers
2019-04-08 17:30:29,499 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:30:29,501 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:30:29,518 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-04-08 17:30:29,550 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-04-08 17:30:31,704 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:30:33,132 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:30:33,133 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:30:33,133 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:30:33,139 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2019-04-08 17:30:33,147 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:30:33,165 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:30:33,175 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:30:33,191 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:30:33,555 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:30:33,576 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:30:33,578 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:30:33,579 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 17:30:33,581 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:30:33,587 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:30:33,598 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:30:33,609 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:30:33,620 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:30:33,643 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:30:33,701 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:30:34,532 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:30:34,538 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:30:34,614 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:30:34,632 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:30:35,189 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:30:35,190 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:30:35,192 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:30:35,232 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:30:35,257 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:30:35,602 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:30:36,171 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:30:36,532 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.10', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:30:46,950 - octoprint.server.preemptive_cache - INFO - ... done in 10.78s
2019-04-08 17:34:41,879 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:34:43,369 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 412, in index
response = default_view()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 384, in default_view
return preemptively_cached()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 913, in decorated_function
for e in entries:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 967, in decorated_function
if not self._validate_entry(entry):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 700, in decorated_function
with self._mutex:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 669, in f_with_duration
def calculate_timeout(self, timeout=None):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 922, in decorated_function
cache_data = self.get_all_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 938, in decorated_function
import copy
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 371, in make_default_ui
r = make_response(render_template("index.jinja2", **render_kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 128, in render_template
context, ctx.app)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 110, in _render
rv = template.render(context)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/index.jinja2", line 16, in top-level template code
{% include 'initscript.jinja2' %}
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/initscript.jinja2", line 33, in top-level template code
var SUPPORTED_FILETYPES = {{ supportedFiletypes|tojson }};
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 243, in tojson_filter
return Markup(htmlsafe_dumps(obj, **kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 186, in htmlsafe_dumps
rv = dumps(obj, **kwargs) \
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 126, in dumps
rv = _json.dumps(obj, **kwargs)
File "/usr/lib/python2.7/json/__init__.py", line 251, in dumps
sort_keys=sort_keys, **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 209, in encode
chunks = list(chunks)
File "/usr/lib/python2.7/json/encoder.py", line 442, in _iterencode
o = _default(o)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1492, in default
"js/app/client/browser.js",
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 83, in default
return _json.JSONEncoder.default(self, o)
File "/usr/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: Undefined is not JSON serializable
2019-04-08 17:34:43,372 - tornado.access - ERROR - 500 GET / (::ffff:172.16.12.20) 1512.00ms
2019-04-08 17:34:43,381 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:34:43,683 - tornado.access - WARNING - 404 GET /favicon.ico (::ffff:172.16.12.20) 9.95ms
2019-04-08 17:34:53,847 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:34:54,624 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 412, in index
response = default_view()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 384, in default_view
return preemptively_cached()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 913, in decorated_function
for e in entries:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 967, in decorated_function
if not self._validate_entry(entry):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 700, in decorated_function
with self._mutex:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 669, in f_with_duration
def calculate_timeout(self, timeout=None):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 922, in decorated_function
cache_data = self.get_all_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 938, in decorated_function
import copy
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 371, in make_default_ui
r = make_response(render_template("index.jinja2", **render_kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 128, in render_template
context, ctx.app)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 110, in _render
rv = template.render(context)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/index.jinja2", line 16, in top-level template code
{% include 'initscript.jinja2' %}
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/initscript.jinja2", line 33, in top-level template code
var SUPPORTED_FILETYPES = {{ supportedFiletypes|tojson }};
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 243, in tojson_filter
return Markup(htmlsafe_dumps(obj, **kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 186, in htmlsafe_dumps
rv = dumps(obj, **kwargs) \
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 126, in dumps
rv = _json.dumps(obj, **kwargs)
File "/usr/lib/python2.7/json/__init__.py", line 251, in dumps
sort_keys=sort_keys, **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 209, in encode
chunks = list(chunks)
File "/usr/lib/python2.7/json/encoder.py", line 442, in _iterencode
o = _default(o)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1492, in default
"js/app/client/browser.js",
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 83, in default
return _json.JSONEncoder.default(self, o)
File "/usr/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: Undefined is not JSON serializable
2019-04-08 17:34:54,626 - tornado.access - ERROR - 500 GET / (::ffff:172.16.12.20) 797.01ms
2019-04-08 17:35:06,879 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:35:07,708 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 412, in index
response = default_view()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 384, in default_view
return preemptively_cached()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 913, in decorated_function
for e in entries:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 967, in decorated_function
if not self._validate_entry(entry):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 700, in decorated_function
with self._mutex:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 669, in f_with_duration
def calculate_timeout(self, timeout=None):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 922, in decorated_function
cache_data = self.get_all_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 938, in decorated_function
import copy
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 371, in make_default_ui
r = make_response(render_template("index.jinja2", **render_kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 128, in render_template
context, ctx.app)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/templating.py", line 110, in _render
rv = template.render(context)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 989, in render
return self.environment.handle_exception(exc_info, True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/jinja2/environment.py", line 754, in handle_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/index.jinja2", line 16, in top-level template code
{% include 'initscript.jinja2' %}
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/templates/initscript.jinja2", line 33, in top-level template code
var SUPPORTED_FILETYPES = {{ supportedFiletypes|tojson }};
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 243, in tojson_filter
return Markup(htmlsafe_dumps(obj, **kwargs))
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 186, in htmlsafe_dumps
rv = dumps(obj, **kwargs) \
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 126, in dumps
rv = _json.dumps(obj, **kwargs)
File "/usr/lib/python2.7/json/__init__.py", line 251, in dumps
sort_keys=sort_keys, **kw).encode(obj)
File "/usr/lib/python2.7/json/encoder.py", line 209, in encode
chunks = list(chunks)
File "/usr/lib/python2.7/json/encoder.py", line 442, in _iterencode
o = _default(o)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1492, in default
"js/app/client/browser.js",
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/json.py", line 83, in default
return _json.JSONEncoder.default(self, o)
File "/usr/lib/python2.7/json/encoder.py", line 184, in default
raise TypeError(repr(o) + " is not JSON serializable")
TypeError: Undefined is not JSON serializable
2019-04-08 17:35:07,711 - tornado.access - ERROR - 500 GET / (::ffff:172.16.12.20) 850.00ms
2019-04-08 17:35:13,668 - octoprint.server - INFO - Shutting down...
2019-04-08 17:35:13,932 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2019-04-08 17:35:13,934 - octoprint.events - INFO - Event loop shut down
2019-04-08 17:35:14,168 - octoprint.server - INFO - Goodbye!
2019-04-08 17:35:20,205 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:35:20,207 - octoprint.startup - INFO - Starting OctoPrint 1.3.11rc1
2019-04-08 17:35:20,209 - octoprint.startup - INFO - ******************************************************************************
2019-04-08 17:35:21,441 - octoprint.startup - INFO - We don't appear to be online, not fetching plugin blacklist
2019-04-08 17:35:21,508 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:35:22,766 - octoprint.plugin.core - INFO - Plugin Virtual Printer is disabled.
2019-04-08 17:35:24,150 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 14 mixin implementations, 22 hook handlers
2019-04-08 17:35:24,404 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-04-08 17:35:24,448 - octoprint.server - INFO - Intermediary server started
2019-04-08 17:35:24,450 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2019-04-08 17:35:25,116 - octoprint.plugin.core - INFO - Found 15 plugin(s) providing 14 mixin implementations, 22 hook handlers
2019-04-08 17:35:25,208 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2019-04-08 17:35:25,210 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2019-04-08 17:35:25,298 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2019-04-08 17:35:27,260 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:35:28,699 - octoprint.util.pip - INFO - Version of pip is 19.0.1
2019-04-08 17:35:28,701 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:35:28,702 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:35:28,706 - octoprint.plugin.core - INFO - Initialized 14 plugin implementation(s)
2019-04-08 17:35:28,717 - octoprint.plugin.core - INFO - 15 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Error Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/errortracking
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| !Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2019-04-08 17:35:28,735 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 918188032
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| octopi_version: 0.16.0
| python:
| pip: 19.0.1
| version: 2.7.13
| virtualenv: /home/pi/oprint
2019-04-08 17:35:28,746 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2019-04-08 17:35:28,761 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2019-04-08 17:35:29,218 - octoprint.server - INFO - Shutting down intermediary server...
2019-04-08 17:35:29,454 - octoprint.server - INFO - Intermediary server shut down
2019-04-08 17:35:29,457 - octoprint.events - INFO - Processing startup event, this is our first event
2019-04-08 17:35:29,457 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2019-04-08 17:35:29,460 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-04-08 17:35:29,464 - octoprint.server.util.watchdog - INFO - Running initial scan on watched folder...
2019-04-08 17:35:29,465 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-04-08 17:35:29,468 - octoprint.server.util.watchdog - INFO - ... initial scan done.
2019-04-08 17:35:29,480 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2019-04-08 17:35:29,491 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2019-04-08 17:35:29,503 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2019-04-08 17:35:29,518 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2019-04-08 17:35:29,599 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:35:29,983 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:35:31,118 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:35:31,120 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:35:31,121 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:35:31,160 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-04-08 17:35:31,192 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-04-08 17:35:31,676 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-04-08 17:35:33,398 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2019-04-08 17:35:37,544 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-04-08 17:35:37,544 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-04-08 17:35:37,584 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2019-04-08 17:35:37,764 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://172.16.12.81/'}
2019-04-08 17:35:38,161 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 918188032, 'octopi_version': '0.16.0', 'version': u'1.3.11rc1', 'pip': '19.0.1', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-04-08 17:35:38,998 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 14}
2019-04-08 17:35:39,401 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:36:06,068 - octoprint.server.preemptive_cache - INFO - ... done in 20.58s
2019-04-08 17:36:06,923 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:36:07,038 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:36:08,713 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:36:54,795 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-04-08 17:36:54,802 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-04-08 17:36:54,820 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:36:55,929 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:36:57,554 - octoprint.util.comm - INFO - Got a resend request for line 1 which is also our current line. It looks like we just handled a reset and this is a left over of this
2019-04-08 17:36:57,567 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-04-08 17:36:57,579 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-04-08 17:36:57,630 - octoprint.util.comm - INFO - Printer reports firmware name "Prusa-Firmware 3.7.0 based on Marlin"
2019-04-08 17:36:58,252 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 115200, u'printer_port': u'/dev/ttyACM0', 'firmware_name': 'Prusa-Firmware 3.7.0 based on Marlin'}
2019-04-08 17:37:09,962 - octoprint.plugin.errortracking - INFO - Initialized error tracking
2019-04-08 17:37:42,281 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:37:42,388 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:172.16.12.20
2019-04-08 17:37:43,259 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:172.16.12.20
2019-04-08 17:37:43,375 - octoprint.server.util.flask - INFO - Passively logging in user admin from ::ffff:172.16.12.20
2019-04-08 17:37:44,855 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client ::ffff:172.16.12.20
2019-04-08 17:38:42,729 - octoprint.printer.standard.job - INFO - Print job selected - origin: sdcard, path: TEST_P~1.GCO, owner: None, user: None
2019-04-08 17:38:43,881 - octoprint.printer.standard.job - INFO - Print job selected - origin: sdcard, path: test_p~1.gco, owner: None, user: None
2019-04-08 17:38:46,060 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-04-08 17:38:46,068 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 9s
2019-04-08 17:38:56,091 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:44:08,784 - octoprint.util.comm - INFO - Externally triggered heatup detected
2019-04-08 17:45:00,035 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2019-04-08 17:45:29,200 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Starting print from SD"
2019-04-08 17:45:29,214 - octoprint.printer.standard.job - INFO - Print job started - origin: sdcard, path: test_p~1.gco, owner: None, user: None
2019-04-08 17:45:29,267 - octoprint.util.comm - INFO - Changing monitoring state from "Starting print from SD" to "Printing from SD"
2019-04-08 17:45:30,225 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17'}
2019-04-08 17:45:58,924 - octoprint.printer.standard - ERROR - Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1469, in _work
data = self.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1479, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1405, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 860, in _updateProgressDataCallback
statisticalTotalPrintTimeType)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 106, in estimate
estimatedTotalPrintTime = self.estimate_total(progress, cleanedPrintTime)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 166, in estimate_total
return self._data.update(printTime / progress)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 207, in update
if -1.0 * self._threshold < self.average_distance < self._threshold:
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/estimation.py", line 239, in average_distance
return sum(self._distances) / len(self._distances)
ZeroDivisionError: division by zero
2019-04-08 17:50:24,406 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-04-08 17:50:34,926 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-04-08 17:50:34,936 - octoprint.printer.standard.job - INFO - Print job done - origin: sdcard, path: test_p~1.gco, owner: None
2019-04-08 17:50:35,857 - octoprint.plugins.tracking - INFO - Sent tracking event print_done, payload: {'origin': 'sdcard', 'file': '61b53313e9fb83b1d2bd8320047c14d3068cfd17', 'elapsed': 305}
2019-04-08 17:50:38,216 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {'octoprint_uptime': 906}
2019-04-08 17:50:48,445 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Operational"
|
ZeroDivisionError
|
def index():
global _templates, _plugin_names, _plugin_vars
preemptive_cache_enabled = settings().getBoolean(["devel", "cache", "preemptive"])
locale = g.locale.language if g.locale else "en"
# helper to check if wizards are active
def wizard_active(templates):
return templates is not None and bool(templates["wizard"]["order"])
# we force a refresh if the client forces one or if we have wizards cached
force_refresh = (
util.flask.cache_check_headers()
or "_refresh" in request.values
or wizard_active(_templates.get(locale))
)
# if we need to refresh our template cache or it's not yet set, process it
fetch_template_data(refresh=force_refresh)
now = datetime.datetime.utcnow()
enable_accesscontrol = userManager.enabled
enable_gcodeviewer = settings().getBoolean(["gcodeViewer", "enabled"])
enable_timelapse = settings().getBoolean(["webcam", "timelapseEnabled"])
def default_template_filter(template_type, template_key):
if template_type == "navbar":
return template_key != "login" or enable_accesscontrol
elif template_type == "tab":
return (template_key != "gcodeviewer" or enable_gcodeviewer) and (
template_key != "timelapse" or enable_timelapse
)
elif template_type == "settings":
return template_key != "accesscontrol" or enable_accesscontrol
elif template_type == "usersettings":
return enable_accesscontrol
else:
return True
default_additional_etag = [
enable_accesscontrol,
enable_gcodeviewer,
enable_timelapse,
] + sorted(
[
"{}:{}".format(to_bytes(k, errors="replace"), to_bytes(v, errors="replace"))
for k, v in _plugin_vars.items()
]
)
def get_preemptively_cached_view(
key, view, data=None, additional_request_data=None, additional_unless=None
):
if (data is None and additional_request_data is None) or g.locale is None:
return view
d = _preemptive_data(
key, data=data, additional_request_data=additional_request_data
)
def unless():
return _preemptive_unless(
base_url=request.url_root, additional_unless=additional_unless
)
# finally decorate our view
return util.flask.preemptively_cached(
cache=preemptiveCache, data=d, unless=unless
)(view)
def get_cached_view(
key,
view,
additional_key_data=None,
additional_files=None,
additional_etag=None,
custom_files=None,
custom_etag=None,
custom_lastmodified=None,
):
if additional_etag is None:
additional_etag = []
def cache_key():
return _cache_key(key, additional_key_data=additional_key_data)
def check_etag_and_lastmodified():
files = collect_files()
lastmodified = compute_lastmodified(files)
lastmodified_ok = util.flask.check_lastmodified(lastmodified)
etag_ok = util.flask.check_etag(
compute_etag(
files=files,
lastmodified=lastmodified,
additional=[cache_key()] + additional_etag,
)
)
return lastmodified_ok and etag_ok
def validate_cache(cached):
etag_different = (
compute_etag(additional=[cache_key()] + additional_etag)
!= cached.get_etag()[0]
)
return force_refresh or etag_different
def collect_files():
if callable(custom_files):
try:
files = custom_files()
if files:
return files
except:
_logger.exception(
"Error while trying to retrieve tracked files for plugin {}".format(
key
)
)
templates = _get_all_templates()
assets = _get_all_assets()
translations = _get_all_translationfiles(
g.locale.language if g.locale else "en", "messages"
)
files = templates + assets + translations
if callable(additional_files):
try:
af = additional_files()
if af:
files += af
except:
_logger.exception(
"Error while trying to retrieve additional tracked files for plugin {}".format(
key
)
)
return sorted(set(files))
def compute_lastmodified(files=None):
if callable(custom_lastmodified):
try:
lastmodified = custom_lastmodified()
if lastmodified:
return lastmodified
except:
_logger.exception(
"Error while trying to retrieve custom LastModified value for plugin {}".format(
key
)
)
if files is None:
files = collect_files()
return _compute_date(files)
def compute_etag(files=None, lastmodified=None, additional=None):
if callable(custom_etag):
try:
etag = custom_etag()
if etag:
return etag
except:
_logger.exception(
"Error while trying to retrieve custom ETag value for plugin {}".format(
key
)
)
if files is None:
files = collect_files()
if lastmodified is None:
lastmodified = compute_lastmodified(files)
if lastmodified and not isinstance(lastmodified, basestring):
from werkzeug.http import http_date
lastmodified = http_date(lastmodified)
if additional is None:
additional = []
import hashlib
hash = hashlib.sha1()
hash.update(octoprint.__version__)
hash.update(",".join(sorted(files)))
if lastmodified:
hash.update(lastmodified)
for add in additional:
hash.update(str(add))
return hash.hexdigest()
decorated_view = view
decorated_view = util.flask.lastmodified(lambda _: compute_lastmodified())(
decorated_view
)
decorated_view = util.flask.etagged(
lambda _: compute_etag(additional=[cache_key()] + additional_etag)
)(decorated_view)
decorated_view = util.flask.cached(
timeout=-1,
refreshif=validate_cache,
key=cache_key,
unless_response=lambda response: util.flask.cache_check_response_headers(
response
)
or util.flask.cache_check_status_code(response, _valid_status_for_cache),
)(decorated_view)
decorated_view = util.flask.with_client_revalidation(decorated_view)
decorated_view = util.flask.conditional(
check_etag_and_lastmodified, NOT_MODIFIED
)(decorated_view)
return decorated_view
def plugin_view(p):
cached = get_cached_view(
p._identifier,
p.on_ui_render,
additional_key_data=p.get_ui_additional_key_data_for_cache,
additional_files=p.get_ui_additional_tracked_files,
custom_files=p.get_ui_custom_tracked_files,
custom_etag=p.get_ui_custom_etag,
custom_lastmodified=p.get_ui_custom_lastmodified,
additional_etag=p.get_ui_additional_etag(default_additional_etag),
)
if preemptive_cache_enabled and p.get_ui_preemptive_caching_enabled():
view = get_preemptively_cached_view(
p._identifier,
cached,
p.get_ui_data_for_preemptive_caching,
p.get_ui_additional_request_data_for_preemptive_caching,
p.get_ui_preemptive_caching_additional_unless,
)
else:
view = cached
template_filter = p.get_ui_custom_template_filter(default_template_filter)
if template_filter is not None and callable(template_filter):
filtered_templates = _filter_templates(_templates[locale], template_filter)
else:
filtered_templates = _templates[locale]
render_kwargs = _get_render_kwargs(
filtered_templates, _plugin_names, _plugin_vars, now
)
return view(now, request, render_kwargs)
def default_view():
filtered_templates = _filter_templates(
_templates[locale], default_template_filter
)
wizard = wizard_active(filtered_templates)
accesscontrol_active = enable_accesscontrol and userManager.hasBeenCustomized()
render_kwargs = _get_render_kwargs(
filtered_templates, _plugin_names, _plugin_vars, now
)
render_kwargs.update(
dict(
enableWebcam=settings().getBoolean(["webcam", "webcamEnabled"])
and bool(settings().get(["webcam", "stream"])),
enableTemperatureGraph=settings().get(["feature", "temperatureGraph"]),
enableAccessControl=enable_accesscontrol,
accessControlActive=accesscontrol_active,
enableSdSupport=settings().get(["feature", "sdSupport"]),
gcodeMobileThreshold=settings().get(
["gcodeViewer", "mobileSizeThreshold"]
),
gcodeThreshold=settings().get(["gcodeViewer", "sizeThreshold"]),
wizard=wizard,
now=now,
)
)
# no plugin took an interest, we'll use the default UI
def make_default_ui():
r = make_response(render_template("index.jinja2", **render_kwargs))
if wizard:
# if we have active wizard dialogs, set non caching headers
r = util.flask.add_non_caching_response_headers(r)
return r
cached = get_cached_view(
"_default", make_default_ui, additional_etag=default_additional_etag
)
preemptively_cached = get_preemptively_cached_view(
"_default", cached, dict(), dict()
)
return preemptively_cached()
response = None
forced_view = request.headers.get("X-Force-View", None)
if forced_view:
# we have view forced by the preemptive cache
_logger.debug("Forcing rendering of view {}".format(forced_view))
if forced_view != "_default":
plugin = pluginManager.get_plugin_info(forced_view, require_enabled=True)
if plugin is not None and isinstance(
plugin.implementation, octoprint.plugin.UiPlugin
):
response = plugin_view(plugin.implementation)
else:
response = default_view()
else:
# select view from plugins and fall back on default view if no plugin will handle it
ui_plugins = pluginManager.get_implementations(
octoprint.plugin.UiPlugin, sorting_context="UiPlugin.on_ui_render"
)
for plugin in ui_plugins:
if plugin.will_handle_ui(request):
# plugin claims responsibility, let it render the UI
response = plugin_view(plugin)
if response is not None:
break
else:
_logger.warn(
"UiPlugin {} returned an empty response".format(
plugin._identifier
)
)
else:
response = default_view()
if response is None:
return abort(404)
return response
|
def index():
global _templates, _plugin_names, _plugin_vars
preemptive_cache_enabled = settings().getBoolean(["devel", "cache", "preemptive"])
locale = g.locale.language if g.locale else "en"
# helper to check if wizards are active
def wizard_active(templates):
return templates is not None and bool(templates["wizard"]["order"])
# we force a refresh if the client forces one or if we have wizards cached
force_refresh = (
util.flask.cache_check_headers()
or "_refresh" in request.values
or wizard_active(_templates.get(locale))
)
# if we need to refresh our template cache or it's not yet set, process it
fetch_template_data(refresh=force_refresh)
now = datetime.datetime.utcnow()
enable_accesscontrol = userManager.enabled
enable_gcodeviewer = settings().getBoolean(["gcodeViewer", "enabled"])
enable_timelapse = settings().getBoolean(["webcam", "timelapseEnabled"])
def default_template_filter(template_type, template_key):
if template_type == "navbar":
return template_key != "login" or enable_accesscontrol
elif template_type == "tab":
return (template_key != "gcodeviewer" or enable_gcodeviewer) and (
template_key != "timelapse" or enable_timelapse
)
elif template_type == "settings":
return template_key != "accesscontrol" or enable_accesscontrol
elif template_type == "usersettings":
return enable_accesscontrol
else:
return True
default_additional_etag = [
enable_accesscontrol,
enable_gcodeviewer,
enable_timelapse,
] + sorted(["{}:{}".format(k, v) for k, v in _plugin_vars.items()])
def get_preemptively_cached_view(
key, view, data=None, additional_request_data=None, additional_unless=None
):
if (data is None and additional_request_data is None) or g.locale is None:
return view
d = _preemptive_data(
key, data=data, additional_request_data=additional_request_data
)
def unless():
return _preemptive_unless(
base_url=request.url_root, additional_unless=additional_unless
)
# finally decorate our view
return util.flask.preemptively_cached(
cache=preemptiveCache, data=d, unless=unless
)(view)
def get_cached_view(
key,
view,
additional_key_data=None,
additional_files=None,
additional_etag=None,
custom_files=None,
custom_etag=None,
custom_lastmodified=None,
):
if additional_etag is None:
additional_etag = []
def cache_key():
return _cache_key(key, additional_key_data=additional_key_data)
def check_etag_and_lastmodified():
files = collect_files()
lastmodified = compute_lastmodified(files)
lastmodified_ok = util.flask.check_lastmodified(lastmodified)
etag_ok = util.flask.check_etag(
compute_etag(
files=files,
lastmodified=lastmodified,
additional=[cache_key()] + additional_etag,
)
)
return lastmodified_ok and etag_ok
def validate_cache(cached):
etag_different = (
compute_etag(additional=[cache_key()] + additional_etag)
!= cached.get_etag()[0]
)
return force_refresh or etag_different
def collect_files():
if callable(custom_files):
try:
files = custom_files()
if files:
return files
except:
_logger.exception(
"Error while trying to retrieve tracked files for plugin {}".format(
key
)
)
templates = _get_all_templates()
assets = _get_all_assets()
translations = _get_all_translationfiles(
g.locale.language if g.locale else "en", "messages"
)
files = templates + assets + translations
if callable(additional_files):
try:
af = additional_files()
if af:
files += af
except:
_logger.exception(
"Error while trying to retrieve additional tracked files for plugin {}".format(
key
)
)
return sorted(set(files))
def compute_lastmodified(files=None):
if callable(custom_lastmodified):
try:
lastmodified = custom_lastmodified()
if lastmodified:
return lastmodified
except:
_logger.exception(
"Error while trying to retrieve custom LastModified value for plugin {}".format(
key
)
)
if files is None:
files = collect_files()
return _compute_date(files)
def compute_etag(files=None, lastmodified=None, additional=None):
if callable(custom_etag):
try:
etag = custom_etag()
if etag:
return etag
except:
_logger.exception(
"Error while trying to retrieve custom ETag value for plugin {}".format(
key
)
)
if files is None:
files = collect_files()
if lastmodified is None:
lastmodified = compute_lastmodified(files)
if lastmodified and not isinstance(lastmodified, basestring):
from werkzeug.http import http_date
lastmodified = http_date(lastmodified)
if additional is None:
additional = []
import hashlib
hash = hashlib.sha1()
hash.update(octoprint.__version__)
hash.update(",".join(sorted(files)))
if lastmodified:
hash.update(lastmodified)
for add in additional:
hash.update(str(add))
return hash.hexdigest()
decorated_view = view
decorated_view = util.flask.lastmodified(lambda _: compute_lastmodified())(
decorated_view
)
decorated_view = util.flask.etagged(
lambda _: compute_etag(additional=[cache_key()] + additional_etag)
)(decorated_view)
decorated_view = util.flask.cached(
timeout=-1,
refreshif=validate_cache,
key=cache_key,
unless_response=lambda response: util.flask.cache_check_response_headers(
response
)
or util.flask.cache_check_status_code(response, _valid_status_for_cache),
)(decorated_view)
decorated_view = util.flask.with_client_revalidation(decorated_view)
decorated_view = util.flask.conditional(
check_etag_and_lastmodified, NOT_MODIFIED
)(decorated_view)
return decorated_view
def plugin_view(p):
cached = get_cached_view(
p._identifier,
p.on_ui_render,
additional_key_data=p.get_ui_additional_key_data_for_cache,
additional_files=p.get_ui_additional_tracked_files,
custom_files=p.get_ui_custom_tracked_files,
custom_etag=p.get_ui_custom_etag,
custom_lastmodified=p.get_ui_custom_lastmodified,
additional_etag=p.get_ui_additional_etag(default_additional_etag),
)
if preemptive_cache_enabled and p.get_ui_preemptive_caching_enabled():
view = get_preemptively_cached_view(
p._identifier,
cached,
p.get_ui_data_for_preemptive_caching,
p.get_ui_additional_request_data_for_preemptive_caching,
p.get_ui_preemptive_caching_additional_unless,
)
else:
view = cached
template_filter = p.get_ui_custom_template_filter(default_template_filter)
if template_filter is not None and callable(template_filter):
filtered_templates = _filter_templates(_templates[locale], template_filter)
else:
filtered_templates = _templates[locale]
render_kwargs = _get_render_kwargs(
filtered_templates, _plugin_names, _plugin_vars, now
)
return view(now, request, render_kwargs)
def default_view():
filtered_templates = _filter_templates(
_templates[locale], default_template_filter
)
wizard = wizard_active(filtered_templates)
accesscontrol_active = enable_accesscontrol and userManager.hasBeenCustomized()
render_kwargs = _get_render_kwargs(
filtered_templates, _plugin_names, _plugin_vars, now
)
render_kwargs.update(
dict(
enableWebcam=settings().getBoolean(["webcam", "webcamEnabled"])
and bool(settings().get(["webcam", "stream"])),
enableTemperatureGraph=settings().get(["feature", "temperatureGraph"]),
enableAccessControl=enable_accesscontrol,
accessControlActive=accesscontrol_active,
enableSdSupport=settings().get(["feature", "sdSupport"]),
gcodeMobileThreshold=settings().get(
["gcodeViewer", "mobileSizeThreshold"]
),
gcodeThreshold=settings().get(["gcodeViewer", "sizeThreshold"]),
wizard=wizard,
now=now,
)
)
# no plugin took an interest, we'll use the default UI
def make_default_ui():
r = make_response(render_template("index.jinja2", **render_kwargs))
if wizard:
# if we have active wizard dialogs, set non caching headers
r = util.flask.add_non_caching_response_headers(r)
return r
cached = get_cached_view(
"_default", make_default_ui, additional_etag=default_additional_etag
)
preemptively_cached = get_preemptively_cached_view(
"_default", cached, dict(), dict()
)
return preemptively_cached()
response = None
forced_view = request.headers.get("X-Force-View", None)
if forced_view:
# we have view forced by the preemptive cache
_logger.debug("Forcing rendering of view {}".format(forced_view))
if forced_view != "_default":
plugin = pluginManager.get_plugin_info(forced_view, require_enabled=True)
if plugin is not None and isinstance(
plugin.implementation, octoprint.plugin.UiPlugin
):
response = plugin_view(plugin.implementation)
else:
response = default_view()
else:
# select view from plugins and fall back on default view if no plugin will handle it
ui_plugins = pluginManager.get_implementations(
octoprint.plugin.UiPlugin, sorting_context="UiPlugin.on_ui_render"
)
for plugin in ui_plugins:
if plugin.will_handle_ui(request):
# plugin claims responsibility, let it render the UI
response = plugin_view(plugin)
if response is not None:
break
else:
_logger.warn(
"UiPlugin {} returned an empty response".format(
plugin._identifier
)
)
else:
response = default_view()
if response is None:
return abort(404)
return response
|
https://github.com/OctoPrint/OctoPrint/issues/3088
|
2019-03-28 11:47:25,543 - octoprint - ERROR - Exception on / [GET]
Traceback (most recent call last):
File "/home/pi/oprint/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/server/views.py", line 199, in index
enable_timelapse] + sorted(["{}:{}".format(k, v) for k, v in _plugin_vars.items()])
UnicodeEncodeError: 'ascii' codec can't encode character u'\u20ac' in position 0: ordinal not in range(128)
|
UnicodeEncodeError
|
def _track_printjob_event(self, event, payload):
if not self._settings.get_boolean(["events", "printjob"]):
return
unique_id = self._settings.get([b"unique_id"])
if not unique_id:
return
sha = hashlib.sha1()
sha.update(payload.get("path"))
sha.update(unique_id)
track_event = None
args = dict(origin=payload.get(b"origin"), file=sha.hexdigest())
if event == Events.PRINT_STARTED:
track_event = "print_started"
elif event == Events.PRINT_DONE:
try:
elapsed = int(payload.get(b"time", 0))
if elapsed:
args[b"elapsed"] = elapsed
except ValueError:
pass
track_event = "print_done"
elif event == Events.PRINT_FAILED:
try:
elapsed = int(payload.get(b"time", 0))
if elapsed:
args[b"elapsed"] = elapsed
except ValueError:
pass
args[b"reason"] = payload.get(b"reason", "unknown")
if b"error" in payload and self._settings.get_boolean(["events", "commerror"]):
args[b"commerror_text"] = payload[b"error"]
track_event = "print_failed"
elif event == Events.PRINT_CANCELLED:
try:
elapsed = int(payload.get(b"time", 0))
if elapsed:
args[b"elapsed"] = elapsed
except ValueError:
pass
track_event = "print_cancelled"
if callable(self._helpers_get_throttle_state):
try:
throttle_state = self._helpers_get_throttle_state(run_now=True)
if throttle_state and (
throttle_state.get(b"current_issue", False)
or throttle_state.get(b"past_issue", False)
):
args[b"throttled_now"] = throttle_state[b"current_issue"]
args[b"throttled_past"] = throttle_state[b"past_issue"]
args[b"throttled_mask"] = throttle_state[b"raw_value"]
except:
# ignored
pass
if track_event is not None:
self._track(track_event, **args)
|
def _track_printjob_event(self, event, payload):
if not self._settings.get_boolean(["events", "printjob"]):
return
unique_id = self._settings.get([b"unique_id"])
if not unique_id:
return
sha = hashlib.sha1()
sha.update(payload.get("path"))
sha.update(unique_id)
track_event = None
args = dict(origin=payload.get(b"origin"), file=sha.hexdigest())
if event == Events.PRINT_STARTED:
track_event = "print_started"
elif event == Events.PRINT_DONE:
try:
elapsed = int(payload.get(b"time"))
args[b"elapsed"] = elapsed
except ValueError:
pass
track_event = "print_done"
elif event == Events.PRINT_FAILED:
try:
elapsed = int(payload.get(b"time"))
args[b"elapsed"] = elapsed
except ValueError:
pass
args[b"reason"] = payload.get(b"reason", "unknown")
if b"error" in payload and self._settings.get_boolean(["events", "commerror"]):
args[b"commerror_text"] = payload[b"error"]
track_event = "print_failed"
elif event == Events.PRINT_CANCELLED:
try:
elapsed = int(payload.get(b"time"))
args[b"elapsed"] = elapsed
except ValueError:
pass
track_event = "print_cancelled"
if callable(self._helpers_get_throttle_state):
try:
throttle_state = self._helpers_get_throttle_state(run_now=True)
if throttle_state and (
throttle_state.get(b"current_issue", False)
or throttle_state.get(b"past_issue", False)
):
args[b"throttled_now"] = throttle_state[b"current_issue"]
args[b"throttled_past"] = throttle_state[b"past_issue"]
args[b"throttled_mask"] = throttle_state[b"raw_value"]
except:
# ignored
pass
if track_event is not None:
self._track(track_event, **args)
|
https://github.com/OctoPrint/OctoPrint/issues/3063
|
2019-02-25 14:42:31,564 - octoprint.startup - INFO - ******************************************************************************
2019-02-25 14:42:31,566 - octoprint.startup - INFO - Starting OctoPrint 1.3.10
2019-02-25 14:42:31,567 - octoprint.startup - INFO - ******************************************************************************
2019-02-25 14:42:31,627 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2019-02-25 14:42:31,808 - octoprint.startup - INFO - Blacklist processing done, adding 1 blacklisted plugin versions: roomtemp (any)
2019-02-25 14:42:31,853 - octoprint.plugin.core - INFO - Loading plugins from /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /home/wf/.octoprint/plugins and installed plugin packages...
2019-02-25 14:42:34,624 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2019-02-25 14:42:34,642 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 23 hook handlers
2019-02-25 14:42:34,645 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2019-02-25 14:42:34,677 - octoprint.server - INFO - Intermediary server started
2019-02-25 14:42:34,678 - octoprint.plugin.core - INFO - Loading plugins from /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins, /home/wf/.octoprint/plugins and installed plugin packages...
2019-02-25 14:42:35,308 - octoprint.plugin.core - INFO - Found 16 plugin(s) providing 16 mixin implementations, 23 hook handlers
2019-02-25 14:42:35,351 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/wf/.octoprint/uploads...
2019-02-25 14:42:36,019 - octoprint.filemanager.storage - INFO - ... file metadata for /home/wf/.octoprint/uploads initialized successfully.
2019-02-25 14:42:36,039 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2019-02-25 14:42:36,099 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2019-02-25 14:42:37,886 - octoprint.util.pip - INFO - Using "/home/wf/source/python/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2019-02-25 14:42:39,670 - octoprint.util.pip - INFO - Version of pip is 19.0.3
2019-02-25 14:42:39,672 - octoprint.util.pip - INFO - pip installs to /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-02-25 14:42:39,675 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-02-25 14:42:39,682 - octoprint.plugin.core - INFO - Initialized 16 plugin implementation(s)
2019-02-25 14:42:39,694 - octoprint.plugin.core - INFO - 16 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/backup
| Core Wizard (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/discovery
| Force Login (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/forcelogin
| Logging (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/logging
| Octolapse (0.3.4) = /home/wf/source/python/OctoPrint/venv/local/lib/python2.7/site-packages/octoprint_octolapse
| Pi Support Plugin (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/virtual_printer
2019-02-25 14:42:39,714 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1400.0
| ram: 972230656
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Plus Rev 1.3
| python:
| pip: 19.0.3
| version: 2.7.13
| virtualenv: /home/wf/source/python/OctoPrint/venv
2019-02-25 14:42:39,726 - octoprint.server - INFO - Reset webasset folder /home/wf/.octoprint/generated/webassets...
2019-02-25 14:42:39,748 - octoprint.server - INFO - Reset webasset folder /home/wf/.octoprint/generated/.webassets-cache...
2019-02-25 14:42:39,759 - octoprint.plugins.octolapse - INFO - Octolapse is loading assets.
2019-02-25 14:42:40,125 - octoprint.server - INFO - Shutting down intermediary server...
2019-02-25 14:42:40,401 - octoprint.server - INFO - Intermediary server shut down
2019-02-25 14:42:40,404 - octoprint.events - INFO - Processing startup event, this is our first event
2019-02-25 14:42:40,405 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2019-02-25 14:42:40,408 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2019-02-25 14:42:40,432 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-02-25 14:42:40,794 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2019-02-25 14:42:41,005 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on pito for SSDP
2019-02-25 14:42:41,007 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-02-25 14:42:41,381 - octoprint.server - INFO - Listening on http://[::]:5000
2019-02-25 14:42:41,385 - octoprint.plugins.octolapse - INFO - Loading existing settings file from: /home/wf/.octoprint/data/octolapse/settings.json.
2019-02-25 14:42:41,503 - octoprint.server.util.sockjs - INFO - New connection from client: 2.0.0.15
2019-02-25 14:42:41,712 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2019-02-25 14:42:42,084 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2019-02-25 14:42:42,144 - octoprint.server.util.flask - INFO - Passively logging in user seppladmin from 2.0.0.15
2019-02-25 14:42:42,640 - octoprint.server.util.sockjs - INFO - User seppladmin logged in on the socket from client 2.0.0.15
2019-02-25 14:42:43,920 - octoprint.util.pip - INFO - Using "/home/wf/source/python/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2019-02-25 14:42:43,922 - octoprint.util.pip - INFO - pip installs to /home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2019-02-25 14:42:43,923 - octoprint.util.pip - INFO - ==> pip ok -> yes
2019-02-25 14:42:43,994 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=de', 'path': '/', 'base_url': 'http://pito:5000/'}
2019-02-25 14:42:44,217 - octoprint.plugins.tracking - INFO - Sent tracking event startup, payload: {'python': '2.7.13', 'ram': 972230656, 'version': u'1.3.10', 'pip': '19.0.3', 'cores': 4, 'freq': 1400.0, 'pi_model': 'Raspberry Pi 3 Model B Plus Rev 1.3', 'os': 'linux'}
2019-02-25 14:42:57,877 - octoprint.server.util.flask - INFO - Passively logging in user seppladmin from 2.0.0.15
2019-02-25 14:43:04,426 - octoprint.server.preemptive_cache - INFO - ... done in 20.43s
2019-02-25 14:43:04,577 - octoprint.server.util.sockjs - INFO - Client connection closed: 2.0.0.15
2019-02-25 14:43:11,044 - octoprint.server.util.sockjs - INFO - New connection from client: 2.0.0.15
2019-02-25 14:43:11,161 - octoprint.server.util.flask - INFO - Passively logging in user seppladmin from 2.0.0.15
2019-02-25 14:43:14,697 - octoprint.server.util.sockjs - INFO - User seppladmin logged in on the socket from client 2.0.0.15
2019-02-25 14:47:12,904 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2019-02-25 14:47:12,919 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2019-02-25 14:47:12,928 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-02-25 14:47:13,820 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-02-25 14:47:16,355 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2019-02-25 14:47:16,369 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2019-02-25 14:47:16,400 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.8 (Github)"
2019-02-25 14:47:16,426 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
2019-02-25 14:47:16,616 - octoprint.plugins.tracking - INFO - Sent tracking event printer_connected, payload: {u'printer_baudrate': 250000, u'printer_port': u'/dev/ttyUSB0', 'firmware_name': 'Marlin 1.1.8 (Github)'}
2019-02-25 14:50:56,243 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, will adjust timeouts and set busy interval accordingly
2019-02-25 14:51:06,284 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2019-02-25 14:51:06,298 - octoprint.util.comm - INFO - Telling the printer to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2019-02-25 14:51:06,602 - octoprint.plugins.tracking - INFO - Sent tracking event print_started, payload: {'origin': 'sdcard', 'file': '25ec113ccb80bcf07f11f3a9025374d1b3f4eed7'}
2019-02-25 14:57:34,648 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2019-02-25 14:57:44,164 - octoprint.plugins.tracking - INFO - Sent tracking event ping, payload: {}
2019-02-25 15:00:33,172 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Finishing"
2019-02-25 15:00:33,206 - octoprint.plugin - ERROR - Error while calling plugin tracking
Traceback (most recent call last):
File "/home/wf/source/python/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugin/__init__.py", line 230, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking/__init__.py", line 119, in on_event
self._track_printjob_event(event, payload)
File "/home/wf/source/python/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.10-py2.7.egg/octoprint/plugins/tracking/__init__.py", line 246, in _track_printjob_event
elapsed = int(payload.get(b"time"))
TypeError: int() argument must be a string or a number, not 'NoneType'
2019-02-25 15:01:02,647 - octoprint.util.comm - INFO - Changing monitoring state from "Finishing" to "Pausing"
2019-02-25 15:07:46,080 - octoprint.server.util.sockjs - INFO - Client connection closed: 2.0.0.15
|
TypeError
|
def zeroconf_register(self, reg_type, name=None, port=None, txt_record=None):
"""
Registers a new service with Zeroconf/Bonjour/Avahi.
:param reg_type: type of service to register, e.g. "_gntp._tcp"
:param name: displayable name of the service, if not given defaults to the OctoPrint instance name
:param port: port to register for the service, if not given defaults to OctoPrint's (public) port
:param txt_record: optional txt record to attach to the service, dictionary of key-value-pairs
"""
if not pybonjour:
return
if not name:
name = self.get_instance_name()
if not port:
port = self.port
params = dict(name=name, regtype=reg_type, port=port)
if txt_record:
params["txtRecord"] = pybonjour.TXTRecord(txt_record)
key = (reg_type, port)
counter = 0
while True:
try:
self._sd_refs[key] = pybonjour.DNSServiceRegister(**params)
self._logger.info("Registered '{name}' for {regtype}".format(**params))
return True
except pybonjour.BonjourError as be:
if be.errorCode == pybonjour.kDNSServiceErr_NameConflict:
# Name already registered by different service, let's try a counter postfix. See #2852
counter += 1
params["name"] = "{} ({})".format(name, counter)
else:
raise
|
def zeroconf_register(self, reg_type, name=None, port=None, txt_record=None):
"""
Registers a new service with Zeroconf/Bonjour/Avahi.
:param reg_type: type of service to register, e.g. "_gntp._tcp"
:param name: displayable name of the service, if not given defaults to the OctoPrint instance name
:param port: port to register for the service, if not given defaults to OctoPrint's (public) port
:param txt_record: optional txt record to attach to the service, dictionary of key-value-pairs
"""
if not pybonjour:
return
if not name:
name = self.get_instance_name()
if not port:
port = self.port
params = dict(name=name, regtype=reg_type, port=port)
if txt_record:
params["txtRecord"] = pybonjour.TXTRecord(txt_record)
key = (reg_type, port)
self._sd_refs[key] = pybonjour.DNSServiceRegister(**params)
self._logger.info("Registered {name} for {reg_type}".format(**locals()))
|
https://github.com/OctoPrint/OctoPrint/issues/2852
|
2018-10-13 18:40:48,117 - octoprint.plugin - ERROR - Error while calling plugin discovery
Traceback (most recent call last):
File "/root/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9-py2.7.egg/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/root/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9-py2.7.egg/octoprint/plugins/discovery/__init__.py", line 143, in on_startup
self.zeroconf_register("_http._tcp", self.get_instance_name(), txt_record=self._create_http_txt_record_dict())
File "/root/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9-py2.7.egg/octoprint/plugins/discovery/__init__.py", line 197, in zeroconf_register
self._sd_refs[key] = pybonjour.DNSServiceRegister(**params)
File "/mnt/local/lib/python2.7/site-packages/pybonjour.py", line 1132, in DNSServiceRegister
None)
File "/mnt/local/lib/python2.7/site-packages/pybonjour.py", line 286, in _errcheck
raise cls(result)
BonjourError: (-65548, 'name conflict')
|
BonjourError
|
def commands(cli_group, pass_octoprint_ctx, *args, **kwargs):
import click
import sys
import requests.exceptions
from octoprint.cli.client import create_client, client_options
@click.command("check")
@click.option("--force", is_flag=True, help="Ignore the cache for the update check")
@click.option(
"--only-new", is_flag=True, help="Only show entries with updates available"
)
@client_options
@click.argument("targets", nargs=-1)
def check_command(
force, only_new, apikey, host, port, httpuser, httppass, https, prefix, targets
):
"""
Check for updates.
If any TARGETs are provided, only those components will be checked.
\b
Examples:
- octoprint plugins softwareupdate:check
This will check all components for available updates,
utilizing cached version information.
- octoprint plugins softwareupdate:check --force
This will check all components for available updates,
ignoring any cached version information even if it's
still valid.
- octoprint plugins softwareupdate:check octoprint
This will only check OctoPrint itself for available
updates.
"""
params = dict(force=force)
if targets:
params["check"] = ",".join(targets)
client = create_client(
settings=cli_group.settings,
apikey=apikey,
host=host,
port=port,
httpuser=httpuser,
httppass=httppass,
https=https,
prefix=prefix,
)
r = client.get("plugin/softwareupdate/check", params=params)
try:
r.raise_for_status()
except requests.exceptions.HTTPError as e:
click.echo("Could not get update information from server, got {}".format(e))
sys.exit(1)
data = r.json()
status = data["status"]
information = data["information"]
lines = []
octoprint_line = None
for key, info in information.items():
status_text = "Up to date"
if info["updateAvailable"]:
if info["updatePossible"]:
status_text = "Update available"
else:
status_text = "Update available (manual)"
elif only_new:
continue
line = "{} (target: {})\n\tInstalled: {}\n\tAvailable: {}\n\t=> {}".format(
info["displayName"],
key,
info["information"]["local"]["name"],
info["information"]["remote"]["name"],
status_text,
)
if key == "octoprint":
octoprint_line = line
else:
lines.append(line)
lines.sort()
if octoprint_line:
lines = [octoprint_line] + lines
for line in lines:
click.echo(line)
click.echo()
if status == "current":
click.echo("Everything is up to date")
else:
click.echo("There are updates available!")
@click.command("update")
@click.option("--force", is_flag=True, help="Update even if already up to date")
@client_options
@click.argument("targets", nargs=-1)
def update_command(
force, apikey, host, port, httpuser, httppass, https, prefix, targets
):
"""
Apply updates.
If any TARGETs are provided, only those components will be updated.
\b
Examples:
- octoprint plugins softwareupdate:update
This will update all components with a pending update
that can be updated.
- octoprint plugins softwareupdate:update --force
This will force an update of all registered components
that can be updated, even if they don't have an updated
pending.
- octoprint plugins softwareupdate:update octoprint
This will only update OctoPrint and leave any further
components with pending updates at their current versions.
"""
data = dict(force=force)
if targets:
data["check"] = targets
client = create_client(
settings=cli_group.settings,
apikey=apikey,
host=host,
port=port,
httpuser=httpuser,
httppass=httppass,
https=https,
prefix=prefix,
)
flags = dict(waiting_for_restart=False, seen_close=False)
def on_message(ws, msg_type, msg):
if msg_type != "plugin" or msg["plugin"] != "softwareupdate":
return
plugin_message = msg["data"]
if not "type" in plugin_message:
return
plugin_message_type = plugin_message["type"]
plugin_message_data = plugin_message["data"]
if plugin_message_type == "updating":
click.echo(
"Updating {} to {}...".format(
plugin_message_data["name"], plugin_message_data["target"]
)
)
elif plugin_message_type == "update_failed":
click.echo("\t... failed :(")
elif (
plugin_message_type == "loglines" and "loglines" in plugin_message_data
):
for entry in plugin_message_data["loglines"]:
prefix = ">>> " if entry["stream"] == "call" else ""
error = entry["stream"] == "stderr"
click.echo(
"\t{}{}".format(prefix, entry["line"].replace("\n", "\n\t")),
err=error,
)
elif (
plugin_message_type == "success"
or plugin_message_type == "restart_manually"
):
results = (
plugin_message_data["results"]
if "results" in plugin_message_data
else dict()
)
if results:
click.echo("The update finished successfully.")
if plugin_message_type == "restart_manually":
click.echo("Please restart the OctoPrint server.")
else:
click.echo("No update necessary")
ws.close()
elif plugin_message_type == "restarting":
flags["waiting_for_restart"] = True
click.echo("Restarting to apply changes...")
elif plugin_message_type == "failure":
click.echo("Error")
ws.close()
def on_open(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(" Reconnected!")
else:
click.echo("Connected to server...")
def on_close(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(".", nl=False)
else:
flags["seen_close"] = True
click.echo("Disconnected from server...")
socket = client.create_socket(
on_message=on_message, on_open=on_open, on_close=on_close
)
r = client.post_json("plugin/softwareupdate/update", data=data)
try:
r.raise_for_status()
except requests.exceptions.HTTPError as e:
click.echo("Could not get update information from server, got {}".format(e))
sys.exit(1)
data = r.json()
to_be_updated = data["order"]
checks = data["checks"]
click.echo("Update in progress, updating:")
for name in to_be_updated:
click.echo("\t{}".format(name if not name in checks else checks[name]))
socket.wait()
if flags["waiting_for_restart"]:
if socket.reconnect(timeout=60):
click.echo("The update finished successfully.")
else:
click.echo(
"The update finished successfully but the server apparently didn't restart as expected."
)
click.echo("Please restart the OctoPrint server.")
return [check_command, update_command]
|
def commands(cli_group, pass_octoprint_ctx, *args, **kwargs):
import click
import sys
import requests.exceptions
from octoprint.cli.client import create_client, client_options
@click.command("check")
@click.option("--force", is_flag=True, help="Ignore the cache for the update check")
@click.option(
"--only-new", is_flag=True, help="Only show entries with updates available"
)
@client_options
@click.argument("targets", nargs=-1)
def check_command(
force, only_new, apikey, host, port, httpuser, httppass, https, prefix, targets
):
"""
Check for updates.
If any TARGETs are provided, only those components will be checked.
\b
Examples:
- octoprint plugins softwareupdate:check
This will check all components for available updates,
utilizing cached version information.
- octoprint plugins softwareupdate:check --force
This will check all components for available updates,
ignoring any cached version information even if it's
still valid.
- octoprint plugins softwareupdate:check octoprint
This will only check OctoPrint itself for available
updates.
"""
params = dict(force=force)
if targets:
params["check"] = ",".join(targets)
client = create_client(
settings=cli_group.settings,
apikey=apikey,
host=host,
port=port,
httpuser=httpuser,
httppass=httppass,
https=https,
prefix=prefix,
)
r = client.get("plugin/softwareupdate/check", params=params)
try:
r.raise_for_status()
except requests.exceptions.HTTPError as e:
click.echo("Could not get update information from server, got {}".format(e))
sys.exit(1)
data = r.json()
status = data["status"]
information = data["information"]
lines = []
octoprint_line = None
for key, info in information.items():
status_text = "Up to date"
if info["updateAvailable"]:
if info["updatePossible"]:
status_text = "Update available"
else:
status_text = "Update available (manual)"
elif only_new:
continue
line = "{} (target: {})\n\tInstalled: {}\n\tAvailable: {}\n\t=> {}".format(
info["displayName"],
key,
info["information"]["local"]["name"],
info["information"]["remote"]["name"],
status_text,
)
if key == "octoprint":
octoprint_line = line
else:
lines.append(line)
lines.sort()
if octoprint_line:
lines = [octoprint_line] + lines
for line in lines:
click.echo(line)
click.echo()
if status == "current":
click.echo("Everything is up to date")
else:
click.echo("There are updates available!")
@click.command("update")
@click.option("--force", is_flag=True, help="Update even if already up to date")
@client_options
@click.argument("targets", nargs=-1)
def update_command(
force, apikey, host, port, httpuser, httppass, https, prefix, targets
):
"""
Apply updates.
If any TARGETs are provided, only those components will be updated.
\b
Examples:
- octoprint plugins softwareupdate:update
This will update all components with a pending update
that can be updated.
- octoprint plugins softwareupdate:update --force
This will force an update of all registered components
that can be updated, even if they don't have an updated
pending.
- octoprint plugins softwareupdate:update octoprint
This will only update OctoPrint and leave any further
components with pending updates at their current versions.
"""
data = dict(force=force)
if targets:
data["check"] = targets
client = create_client(
apikey=apikey,
host=host,
port=port,
httpuser=httpuser,
httppass=httppass,
https=https,
prefix=prefix,
)
flags = dict(waiting_for_restart=False, seen_close=False)
def on_message(ws, msg_type, msg):
if msg_type != "plugin" or msg["plugin"] != "softwareupdate":
return
plugin_message = msg["data"]
if not "type" in plugin_message:
return
plugin_message_type = plugin_message["type"]
plugin_message_data = plugin_message["data"]
if plugin_message_type == "updating":
click.echo(
"Updating {} to {}...".format(
plugin_message_data["name"], plugin_message_data["target"]
)
)
elif plugin_message_type == "update_failed":
click.echo("\t... failed :(")
elif (
plugin_message_type == "loglines" and "loglines" in plugin_message_data
):
for entry in plugin_message_data["loglines"]:
prefix = ">>> " if entry["stream"] == "call" else ""
error = entry["stream"] == "stderr"
click.echo(
"\t{}{}".format(prefix, entry["line"].replace("\n", "\n\t")),
err=error,
)
elif (
plugin_message_type == "success"
or plugin_message_type == "restart_manually"
):
results = (
plugin_message_data["results"]
if "results" in plugin_message_data
else dict()
)
if results:
click.echo("The update finished successfully.")
if plugin_message_type == "restart_manually":
click.echo("Please restart the OctoPrint server.")
else:
click.echo("No update necessary")
ws.close()
elif plugin_message_type == "restarting":
flags["waiting_for_restart"] = True
click.echo("Restarting to apply changes...")
elif plugin_message_type == "failure":
click.echo("Error")
ws.close()
def on_open(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(" Reconnected!")
else:
click.echo("Connected to server...")
def on_close(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(".", nl=False)
else:
flags["seen_close"] = True
click.echo("Disconnected from server...")
socket = client.connect_socket(
on_message=on_message, on_open=on_open, on_close=on_close
)
r = client.post_json("plugin/softwareupdate/update", data=data)
try:
r.raise_for_status()
except requests.exceptions.HTTPError as e:
click.echo("Could not get update information from server, got {}".format(e))
sys.exit(1)
data = r.json()
to_be_updated = data["order"]
checks = data["checks"]
click.echo("Update in progress, updating:")
for name in to_be_updated:
click.echo("\t{}".format(name if not name in checks else checks[name]))
socket.wait()
if flags["waiting_for_restart"]:
if socket.reconnect(timeout=60):
click.echo("The update finished successfully.")
else:
click.echo(
"The update finished successfully but the server apparently didn't restart as expected."
)
click.echo("Please restart the OctoPrint server.")
return [check_command, update_command]
|
https://github.com/OctoPrint/OctoPrint/issues/2712
|
pi@Prusa005:~ $ /home/pi/oprint/bin/octoprint plugins softwareupdate:update
Initializing settings & plugin subsystem...
No handlers could be found for logger "octoprint.plugin.core"
Traceback (most recent call last):
File "/home/pi/oprint/bin/octoprint", line 9, in <module>
load_entry_point('OctoPrint==1.3.8', 'console_scripts', 'octoprint')()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/__init__.py", line 565, in main
octo(args=args, prog_name="octoprint", auto_envvar_prefix="OCTOPRINT")
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 716, in __call__
return self.main(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 696, in main
rv = self.invoke(ctx)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 534, in invoke
return callback(*args, **kwargs)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/cli.py", line 133, in update_command
prefix=prefix)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/client.py", line 27, in create_client
assert(host is not None or settings is not None)
AssertionError
|
AssertionError
|
def update_command(
force, apikey, host, port, httpuser, httppass, https, prefix, targets
):
"""
Apply updates.
If any TARGETs are provided, only those components will be updated.
\b
Examples:
- octoprint plugins softwareupdate:update
This will update all components with a pending update
that can be updated.
- octoprint plugins softwareupdate:update --force
This will force an update of all registered components
that can be updated, even if they don't have an updated
pending.
- octoprint plugins softwareupdate:update octoprint
This will only update OctoPrint and leave any further
components with pending updates at their current versions.
"""
data = dict(force=force)
if targets:
data["check"] = targets
client = create_client(
settings=cli_group.settings,
apikey=apikey,
host=host,
port=port,
httpuser=httpuser,
httppass=httppass,
https=https,
prefix=prefix,
)
flags = dict(waiting_for_restart=False, seen_close=False)
def on_message(ws, msg_type, msg):
if msg_type != "plugin" or msg["plugin"] != "softwareupdate":
return
plugin_message = msg["data"]
if not "type" in plugin_message:
return
plugin_message_type = plugin_message["type"]
plugin_message_data = plugin_message["data"]
if plugin_message_type == "updating":
click.echo(
"Updating {} to {}...".format(
plugin_message_data["name"], plugin_message_data["target"]
)
)
elif plugin_message_type == "update_failed":
click.echo("\t... failed :(")
elif plugin_message_type == "loglines" and "loglines" in plugin_message_data:
for entry in plugin_message_data["loglines"]:
prefix = ">>> " if entry["stream"] == "call" else ""
error = entry["stream"] == "stderr"
click.echo(
"\t{}{}".format(prefix, entry["line"].replace("\n", "\n\t")),
err=error,
)
elif (
plugin_message_type == "success"
or plugin_message_type == "restart_manually"
):
results = (
plugin_message_data["results"]
if "results" in plugin_message_data
else dict()
)
if results:
click.echo("The update finished successfully.")
if plugin_message_type == "restart_manually":
click.echo("Please restart the OctoPrint server.")
else:
click.echo("No update necessary")
ws.close()
elif plugin_message_type == "restarting":
flags["waiting_for_restart"] = True
click.echo("Restarting to apply changes...")
elif plugin_message_type == "failure":
click.echo("Error")
ws.close()
def on_open(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(" Reconnected!")
else:
click.echo("Connected to server...")
def on_close(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(".", nl=False)
else:
flags["seen_close"] = True
click.echo("Disconnected from server...")
socket = client.create_socket(
on_message=on_message, on_open=on_open, on_close=on_close
)
r = client.post_json("plugin/softwareupdate/update", data=data)
try:
r.raise_for_status()
except requests.exceptions.HTTPError as e:
click.echo("Could not get update information from server, got {}".format(e))
sys.exit(1)
data = r.json()
to_be_updated = data["order"]
checks = data["checks"]
click.echo("Update in progress, updating:")
for name in to_be_updated:
click.echo("\t{}".format(name if not name in checks else checks[name]))
socket.wait()
if flags["waiting_for_restart"]:
if socket.reconnect(timeout=60):
click.echo("The update finished successfully.")
else:
click.echo(
"The update finished successfully but the server apparently didn't restart as expected."
)
click.echo("Please restart the OctoPrint server.")
|
def update_command(
force, apikey, host, port, httpuser, httppass, https, prefix, targets
):
"""
Apply updates.
If any TARGETs are provided, only those components will be updated.
\b
Examples:
- octoprint plugins softwareupdate:update
This will update all components with a pending update
that can be updated.
- octoprint plugins softwareupdate:update --force
This will force an update of all registered components
that can be updated, even if they don't have an updated
pending.
- octoprint plugins softwareupdate:update octoprint
This will only update OctoPrint and leave any further
components with pending updates at their current versions.
"""
data = dict(force=force)
if targets:
data["check"] = targets
client = create_client(
apikey=apikey,
host=host,
port=port,
httpuser=httpuser,
httppass=httppass,
https=https,
prefix=prefix,
)
flags = dict(waiting_for_restart=False, seen_close=False)
def on_message(ws, msg_type, msg):
if msg_type != "plugin" or msg["plugin"] != "softwareupdate":
return
plugin_message = msg["data"]
if not "type" in plugin_message:
return
plugin_message_type = plugin_message["type"]
plugin_message_data = plugin_message["data"]
if plugin_message_type == "updating":
click.echo(
"Updating {} to {}...".format(
plugin_message_data["name"], plugin_message_data["target"]
)
)
elif plugin_message_type == "update_failed":
click.echo("\t... failed :(")
elif plugin_message_type == "loglines" and "loglines" in plugin_message_data:
for entry in plugin_message_data["loglines"]:
prefix = ">>> " if entry["stream"] == "call" else ""
error = entry["stream"] == "stderr"
click.echo(
"\t{}{}".format(prefix, entry["line"].replace("\n", "\n\t")),
err=error,
)
elif (
plugin_message_type == "success"
or plugin_message_type == "restart_manually"
):
results = (
plugin_message_data["results"]
if "results" in plugin_message_data
else dict()
)
if results:
click.echo("The update finished successfully.")
if plugin_message_type == "restart_manually":
click.echo("Please restart the OctoPrint server.")
else:
click.echo("No update necessary")
ws.close()
elif plugin_message_type == "restarting":
flags["waiting_for_restart"] = True
click.echo("Restarting to apply changes...")
elif plugin_message_type == "failure":
click.echo("Error")
ws.close()
def on_open(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(" Reconnected!")
else:
click.echo("Connected to server...")
def on_close(ws):
if flags["waiting_for_restart"] and flags["seen_close"]:
click.echo(".", nl=False)
else:
flags["seen_close"] = True
click.echo("Disconnected from server...")
socket = client.connect_socket(
on_message=on_message, on_open=on_open, on_close=on_close
)
r = client.post_json("plugin/softwareupdate/update", data=data)
try:
r.raise_for_status()
except requests.exceptions.HTTPError as e:
click.echo("Could not get update information from server, got {}".format(e))
sys.exit(1)
data = r.json()
to_be_updated = data["order"]
checks = data["checks"]
click.echo("Update in progress, updating:")
for name in to_be_updated:
click.echo("\t{}".format(name if not name in checks else checks[name]))
socket.wait()
if flags["waiting_for_restart"]:
if socket.reconnect(timeout=60):
click.echo("The update finished successfully.")
else:
click.echo(
"The update finished successfully but the server apparently didn't restart as expected."
)
click.echo("Please restart the OctoPrint server.")
|
https://github.com/OctoPrint/OctoPrint/issues/2712
|
pi@Prusa005:~ $ /home/pi/oprint/bin/octoprint plugins softwareupdate:update
Initializing settings & plugin subsystem...
No handlers could be found for logger "octoprint.plugin.core"
Traceback (most recent call last):
File "/home/pi/oprint/bin/octoprint", line 9, in <module>
load_entry_point('OctoPrint==1.3.8', 'console_scripts', 'octoprint')()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/__init__.py", line 565, in main
octo(args=args, prog_name="octoprint", auto_envvar_prefix="OCTOPRINT")
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 716, in __call__
return self.main(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 696, in main
rv = self.invoke(ctx)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click-6.2-py2.7.egg/click/core.py", line 534, in invoke
return callback(*args, **kwargs)
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate/cli.py", line 133, in update_command
prefix=prefix)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/client.py", line 27, in create_client
assert(host is not None or settings is not None)
AssertionError
|
AssertionError
|
def _saveSettings(data):
logger = logging.getLogger(__name__)
s = settings()
# NOTE: Remember to adjust the docs of the data model on the Settings API if anything
# is changed, added or removed here
if "folder" in data.keys():
try:
if "uploads" in data["folder"]:
s.setBaseFolder("uploads", data["folder"]["uploads"])
if "timelapse" in data["folder"]:
s.setBaseFolder("timelapse", data["folder"]["timelapse"])
if "timelapseTmp" in data["folder"]:
s.setBaseFolder("timelapse_tmp", data["folder"]["timelapseTmp"])
if "logs" in data["folder"]:
s.setBaseFolder("logs", data["folder"]["logs"])
if "watched" in data["folder"]:
s.setBaseFolder("watched", data["folder"]["watched"])
except IOError:
return make_response("One of the configured folders is invalid", 400)
if "api" in data.keys():
if "enabled" in data["api"]:
s.setBoolean(["api", "enabled"], data["api"]["enabled"])
if "allowCrossOrigin" in data["api"]:
s.setBoolean(["api", "allowCrossOrigin"], data["api"]["allowCrossOrigin"])
if "appearance" in data.keys():
if "name" in data["appearance"]:
s.set(["appearance", "name"], data["appearance"]["name"])
if "color" in data["appearance"]:
s.set(["appearance", "color"], data["appearance"]["color"])
if "colorTransparent" in data["appearance"]:
s.setBoolean(
["appearance", "colorTransparent"],
data["appearance"]["colorTransparent"],
)
if "colorIcon" in data["appearance"]:
s.setBoolean(["appearance", "colorIcon"], data["appearance"]["colorIcon"])
if "defaultLanguage" in data["appearance"]:
s.set(
["appearance", "defaultLanguage"], data["appearance"]["defaultLanguage"]
)
if "showFahrenheitAlso" in data["appearance"]:
s.setBoolean(
["appearance", "showFahrenheitAlso"],
data["appearance"]["showFahrenheitAlso"],
)
if "printer" in data.keys():
if "defaultExtrusionLength" in data["printer"]:
s.setInt(
["printerParameters", "defaultExtrusionLength"],
data["printer"]["defaultExtrusionLength"],
)
if "webcam" in data.keys():
if "streamUrl" in data["webcam"]:
s.set(["webcam", "stream"], data["webcam"]["streamUrl"])
if "streamRatio" in data["webcam"] and data["webcam"]["streamRatio"] in (
"16:9",
"4:3",
):
s.set(["webcam", "streamRatio"], data["webcam"]["streamRatio"])
if "streamTimeout" in data["webcam"]:
s.setInt(["webcam", "streamTimeout"], data["webcam"]["streamTimeout"])
if "snapshotUrl" in data["webcam"]:
s.set(["webcam", "snapshot"], data["webcam"]["snapshotUrl"])
if "snapshotTimeout" in data["webcam"]:
s.setInt(["webcam", "snapshotTimeout"], data["webcam"]["snapshotTimeout"])
if "snapshotSslValidation" in data["webcam"]:
s.setBoolean(
["webcam", "snapshotSslValidation"],
data["webcam"]["snapshotSslValidation"],
)
if "ffmpegPath" in data["webcam"]:
s.set(["webcam", "ffmpeg"], data["webcam"]["ffmpegPath"])
if "bitrate" in data["webcam"]:
s.set(["webcam", "bitrate"], data["webcam"]["bitrate"])
if "ffmpegThreads" in data["webcam"]:
s.setInt(["webcam", "ffmpegThreads"], data["webcam"]["ffmpegThreads"])
if "watermark" in data["webcam"]:
s.setBoolean(["webcam", "watermark"], data["webcam"]["watermark"])
if "flipH" in data["webcam"]:
s.setBoolean(["webcam", "flipH"], data["webcam"]["flipH"])
if "flipV" in data["webcam"]:
s.setBoolean(["webcam", "flipV"], data["webcam"]["flipV"])
if "rotate90" in data["webcam"]:
s.setBoolean(["webcam", "rotate90"], data["webcam"]["rotate90"])
if "feature" in data.keys():
if "gcodeViewer" in data["feature"]:
s.setBoolean(["gcodeViewer", "enabled"], data["feature"]["gcodeViewer"])
if "sizeThreshold" in data["feature"]:
s.setInt(["gcodeViewer", "sizeThreshold"], data["feature"]["sizeThreshold"])
if "mobileSizeThreshold" in data["feature"]:
s.setInt(
["gcodeViewer", "mobileSizeThreshold"],
data["feature"]["mobileSizeThreshold"],
)
if "temperatureGraph" in data["feature"]:
s.setBoolean(
["feature", "temperatureGraph"], data["feature"]["temperatureGraph"]
)
if "sdSupport" in data["feature"]:
s.setBoolean(["feature", "sdSupport"], data["feature"]["sdSupport"])
if "keyboardControl" in data["feature"]:
s.setBoolean(
["feature", "keyboardControl"], data["feature"]["keyboardControl"]
)
if "pollWatched" in data["feature"]:
s.setBoolean(["feature", "pollWatched"], data["feature"]["pollWatched"])
if "modelSizeDetection" in data["feature"]:
s.setBoolean(
["feature", "modelSizeDetection"], data["feature"]["modelSizeDetection"]
)
if "printCancelConfirmation" in data["feature"]:
s.setBoolean(
["feature", "printCancelConfirmation"],
data["feature"]["printCancelConfirmation"],
)
if "g90InfluencesExtruder" in data["feature"]:
s.setBoolean(
["feature", "g90InfluencesExtruder"],
data["feature"]["g90InfluencesExtruder"],
)
if "autoUppercaseBlacklist" in data["feature"] and isinstance(
data["feature"]["autoUppercaseBlacklist"], (list, tuple)
):
s.set(
["feature", "autoUppercaseBlacklist"],
data["feature"]["autoUppercaseBlacklist"],
)
if "serial" in data.keys():
if "autoconnect" in data["serial"]:
s.setBoolean(["serial", "autoconnect"], data["serial"]["autoconnect"])
if "port" in data["serial"]:
s.set(["serial", "port"], data["serial"]["port"])
if "baudrate" in data["serial"]:
s.setInt(["serial", "baudrate"], data["serial"]["baudrate"])
if "timeoutConnection" in data["serial"]:
s.setFloat(
["serial", "timeout", "connection"],
data["serial"]["timeoutConnection"],
min=1.0,
)
if "timeoutDetection" in data["serial"]:
s.setFloat(
["serial", "timeout", "detection"],
data["serial"]["timeoutDetection"],
min=1.0,
)
if "timeoutCommunication" in data["serial"]:
s.setFloat(
["serial", "timeout", "communication"],
data["serial"]["timeoutCommunication"],
min=1.0,
)
if "timeoutCommunicationBusy" in data["serial"]:
s.setFloat(
["serial", "timeout", "communicationBusy"],
data["serial"]["timeoutCommunicationBusy"],
min=1.0,
)
if "timeoutTemperature" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperature"],
data["serial"]["timeoutTemperature"],
min=1.0,
)
if "timeoutTemperatureTargetSet" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureTargetSet"],
data["serial"]["timeoutTemperatureTargetSet"],
min=1.0,
)
if "timeoutTemperatureAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureAutoreport"],
data["serial"]["timeoutTemperatureAutoreport"],
min=0.0,
)
if "timeoutSdStatus" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatus"],
data["serial"]["timeoutSdStatus"],
min=1.0,
)
if "timeoutSdStatusAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatusAutoreport"],
data["serial"]["timeoutSdStatusAutoreport"],
min=0.0,
)
if "timeoutBaudrateDetectionPause" in data["serial"]:
s.setFloat(
["serial", "timeout", "baudrateDetectionPause"],
data["serial"]["timeoutBaudrateDetectionPause"],
min=0.0,
)
if "timeoutPositionLogWait" in data["serial"]:
s.setFloat(
["serial", "timeout", "positionLogWait"],
data["serial"]["timeoutPositionLogWait"],
min=1.0,
)
if "additionalPorts" in data["serial"] and isinstance(
data["serial"]["additionalPorts"], (list, tuple)
):
s.set(["serial", "additionalPorts"], data["serial"]["additionalPorts"])
if "additionalBaudrates" in data["serial"] and isinstance(
data["serial"]["additionalBaudrates"], (list, tuple)
):
s.set(
["serial", "additionalBaudrates"], data["serial"]["additionalBaudrates"]
)
if "longRunningCommands" in data["serial"] and isinstance(
data["serial"]["longRunningCommands"], (list, tuple)
):
s.set(
["serial", "longRunningCommands"], data["serial"]["longRunningCommands"]
)
if "checksumRequiringCommands" in data["serial"] and isinstance(
data["serial"]["checksumRequiringCommands"], (list, tuple)
):
s.set(
["serial", "checksumRequiringCommands"],
data["serial"]["checksumRequiringCommands"],
)
if "helloCommand" in data["serial"]:
s.set(["serial", "helloCommand"], data["serial"]["helloCommand"])
if "ignoreErrorsFromFirmware" in data["serial"]:
s.setBoolean(
["serial", "ignoreErrorsFromFirmware"],
data["serial"]["ignoreErrorsFromFirmware"],
)
if "disconnectOnErrors" in data["serial"]:
s.setBoolean(
["serial", "disconnectOnErrors"], data["serial"]["disconnectOnErrors"]
)
if "triggerOkForM29" in data["serial"]:
s.setBoolean(
["serial", "triggerOkForM29"], data["serial"]["triggerOkForM29"]
)
if "blockM0M1" in data["serial"]:
s.setBoolean(["serial", "blockM0M1"], data["serial"]["blockM0M1"])
if "supportResendsWithoutOk" in data["serial"]:
value = data["serial"]["supportResendsWithoutOk"]
if value in ("always", "detect", "never"):
s.set(["serial", "supportResendsWithoutOk"], value)
if "waitForStart" in data["serial"]:
s.setBoolean(
["serial", "waitForStartOnConnect"], data["serial"]["waitForStart"]
)
if "alwaysSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "alwaysSendChecksum"], data["serial"]["alwaysSendChecksum"]
)
if "neverSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "neverSendChecksum"], data["serial"]["neverSendChecksum"]
)
if "sdRelativePath" in data["serial"]:
s.setBoolean(["serial", "sdRelativePath"], data["serial"]["sdRelativePath"])
if "sdAlwaysAvailable" in data["serial"]:
s.setBoolean(
["serial", "sdAlwaysAvailable"], data["serial"]["sdAlwaysAvailable"]
)
if "swallowOkAfterResend" in data["serial"]:
s.setBoolean(
["serial", "swallowOkAfterResend"],
data["serial"]["swallowOkAfterResend"],
)
if "repetierTargetTemp" in data["serial"]:
s.setBoolean(
["serial", "repetierTargetTemp"], data["serial"]["repetierTargetTemp"]
)
if "externalHeatupDetection" in data["serial"]:
s.setBoolean(
["serial", "externalHeatupDetection"],
data["serial"]["externalHeatupDetection"],
)
if "ignoreIdenticalResends" in data["serial"]:
s.setBoolean(
["serial", "ignoreIdenticalResends"],
data["serial"]["ignoreIdenticalResends"],
)
if "firmwareDetection" in data["serial"]:
s.setBoolean(
["serial", "firmwareDetection"], data["serial"]["firmwareDetection"]
)
if "blockWhileDwelling" in data["serial"]:
s.setBoolean(
["serial", "blockWhileDwelling"], data["serial"]["blockWhileDwelling"]
)
if "logPositionOnPause" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnPause"], data["serial"]["logPositionOnPause"]
)
if "logPositionOnCancel" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnCancel"], data["serial"]["logPositionOnCancel"]
)
if "maxTimeoutsIdle" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "idle"],
data["serial"]["maxTimeoutsIdle"],
)
if "maxTimeoutsPrinting" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "printing"],
data["serial"]["maxTimeoutsPrinting"],
)
if "maxTimeoutsLong" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "long"],
data["serial"]["maxTimeoutsLong"],
)
if "capAutoreportTemp" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_temp"],
data["serial"]["capAutoreportTemp"],
)
if "capAutoreportSdStatus" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_sdstatus"],
data["serial"]["capAutoreportSdStatus"],
)
if "capBusyProtocol" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "busy_protocol"],
data["serial"]["capBusyProtocol"],
)
oldLog = s.getBoolean(["serial", "log"])
if "log" in data["serial"]:
s.setBoolean(["serial", "log"], data["serial"]["log"])
if oldLog and not s.getBoolean(["serial", "log"]):
# disable debug logging to serial.log
logging.getLogger("SERIAL").debug("Disabling serial logging")
logging.getLogger("SERIAL").setLevel(logging.CRITICAL)
elif not oldLog and s.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
logging.getLogger("SERIAL").debug("Enabling serial logging")
if "temperature" in data.keys():
if "profiles" in data["temperature"]:
result = []
for profile in data["temperature"]["profiles"]:
try:
profile["bed"] = int(profile["bed"])
profile["extruder"] = int(profile["extruder"])
except ValueError:
pass
result.append(profile)
s.set(["temperature", "profiles"], result)
if "cutoff" in data["temperature"]:
try:
cutoff = int(data["temperature"]["cutoff"])
if cutoff > 1:
s.setInt(["temperature", "cutoff"], cutoff)
except ValueError:
pass
if "sendAutomatically" in data["temperature"]:
s.setBoolean(
["temperature", "sendAutomatically"],
data["temperature"]["sendAutomatically"],
)
if "sendAutomaticallyAfter" in data["temperature"]:
s.setInt(
["temperature", "sendAutomaticallyAfter"],
data["temperature"]["sendAutomaticallyAfter"],
min=0,
max=30,
)
if "terminalFilters" in data.keys():
s.set(["terminalFilters"], data["terminalFilters"])
if "system" in data.keys():
if "actions" in data["system"]:
s.set(["system", "actions"], data["system"]["actions"])
if "events" in data["system"]:
s.set(["system", "events"], data["system"]["events"])
if "scripts" in data:
if "gcode" in data["scripts"] and isinstance(data["scripts"]["gcode"], dict):
for name, script in data["scripts"]["gcode"].items():
if name == "snippets":
continue
s.saveScript(
"gcode", name, script.replace("\r\n", "\n").replace("\r", "\n")
)
if "server" in data:
if "commands" in data["server"]:
if "systemShutdownCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemShutdownCommand"],
data["server"]["commands"]["systemShutdownCommand"],
)
if "systemRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemRestartCommand"],
data["server"]["commands"]["systemRestartCommand"],
)
if "serverRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "serverRestartCommand"],
data["server"]["commands"]["serverRestartCommand"],
)
if "diskspace" in data["server"]:
if "warning" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "warning"],
data["server"]["diskspace"]["warning"],
)
if "critical" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "critical"],
data["server"]["diskspace"]["critical"],
)
if "onlineCheck" in data["server"]:
if "enabled" in data["server"]["onlineCheck"]:
s.setBoolean(
["server", "onlineCheck", "enabled"],
data["server"]["onlineCheck"]["enabled"],
)
if "interval" in data["server"]["onlineCheck"]:
try:
interval = int(data["server"]["onlineCheck"]["interval"])
s.setInt(["server", "onlineCheck", "interval"], interval * 60)
except ValueError:
pass
if "host" in data["server"]["onlineCheck"]:
s.set(
["server", "onlineCheck", "host"],
data["server"]["onlineCheck"]["host"],
)
if "port" in data["server"]["onlineCheck"]:
s.setInt(
["server", "onlineCheck", "port"],
data["server"]["onlineCheck"]["port"],
)
if "pluginBlacklist" in data["server"]:
if "enabled" in data["server"]["pluginBlacklist"]:
s.setBoolean(
["server", "pluginBlacklist", "enabled"],
data["server"]["pluginBlacklist"]["enabled"],
)
if "url" in data["server"]["pluginBlacklist"]:
s.set(
["server", "pluginBlacklist", "url"],
data["server"]["pluginBlacklist"]["url"],
)
if "ttl" in data["server"]["pluginBlacklist"]:
try:
ttl = int(data["server"]["pluginBlacklist"]["ttl"])
s.setInt(["server", "pluginBlacklist", "ttl"], ttl * 60)
except ValueError:
pass
if "plugins" in data:
for plugin in octoprint.plugin.plugin_manager().get_implementations(
octoprint.plugin.SettingsPlugin
):
plugin_id = plugin._identifier
if plugin_id in data["plugins"]:
try:
plugin.on_settings_save(data["plugins"][plugin_id])
except TypeError:
logger.warn(
"Could not save settings for plugin {name} ({version}) since it called super(...)".format(
name=plugin._plugin_name, version=plugin._plugin_version
)
)
logger.warn(
"in a way which has issues due to OctoPrint's dynamic reloading after plugin operations."
)
logger.warn(
"Please contact the plugin's author and ask to update the plugin to use a direct call like"
)
logger.warn(
"octoprint.plugin.SettingsPlugin.on_settings_save(self, data) instead."
)
except:
logger.exception(
"Could not save settings for plugin {name} ({version})".format(
version=plugin._plugin_version, name=plugin._plugin_name
)
)
s.save()
payload = dict(config_hash=s.config_hash, effective_hash=s.effective_hash)
eventManager().fire(Events.SETTINGS_UPDATED, payload=payload)
|
def _saveSettings(data):
logger = logging.getLogger(__name__)
s = settings()
# NOTE: Remember to adjust the docs of the data model on the Settings API if anything
# is changed, added or removed here
if "folder" in data.keys():
try:
if "uploads" in data["folder"]:
s.setBaseFolder("uploads", data["folder"]["uploads"])
if "timelapse" in data["folder"]:
s.setBaseFolder("timelapse", data["folder"]["timelapse"])
if "timelapseTmp" in data["folder"]:
s.setBaseFolder("timelapse_tmp", data["folder"]["timelapseTmp"])
if "logs" in data["folder"]:
s.setBaseFolder("logs", data["folder"]["logs"])
if "watched" in data["folder"]:
s.setBaseFolder("watched", data["folder"]["watched"])
except IOError:
return make_response("One of the configured folders is invalid", 400)
if "api" in data.keys():
if "enabled" in data["api"]:
s.setBoolean(["api", "enabled"], data["api"]["enabled"])
if "allowCrossOrigin" in data["api"]:
s.setBoolean(["api", "allowCrossOrigin"], data["api"]["allowCrossOrigin"])
if "appearance" in data.keys():
if "name" in data["appearance"]:
s.set(["appearance", "name"], data["appearance"]["name"])
if "color" in data["appearance"]:
s.set(["appearance", "color"], data["appearance"]["color"])
if "colorTransparent" in data["appearance"]:
s.setBoolean(
["appearance", "colorTransparent"],
data["appearance"]["colorTransparent"],
)
if "colorIcon" in data["appearance"]:
s.setBoolean(["appearance", "colorIcon"], data["appearance"]["colorIcon"])
if "defaultLanguage" in data["appearance"]:
s.set(
["appearance", "defaultLanguage"], data["appearance"]["defaultLanguage"]
)
if "showFahrenheitAlso" in data["appearance"]:
s.setBoolean(
["appearance", "showFahrenheitAlso"],
data["appearance"]["showFahrenheitAlso"],
)
if "printer" in data.keys():
if "defaultExtrusionLength" in data["printer"]:
s.setInt(
["printerParameters", "defaultExtrusionLength"],
data["printer"]["defaultExtrusionLength"],
)
if "webcam" in data.keys():
if "streamUrl" in data["webcam"]:
s.set(["webcam", "stream"], data["webcam"]["streamUrl"])
if "streamRatio" in data["webcam"] and data["webcam"]["streamRatio"] in (
"16:9",
"4:3",
):
s.set(["webcam", "streamRatio"], data["webcam"]["streamRatio"])
if "streamTimeout" in data["webcam"]:
s.setInt(["webcam", "streamTimeout"], data["webcam"]["streamTimeout"])
if "snapshotUrl" in data["webcam"]:
s.set(["webcam", "snapshot"], data["webcam"]["snapshotUrl"])
if "snapshotTimeout" in data["webcam"]:
s.setInt(["webcam", "snapshotTimeout"], data["webcam"]["snapshotTimeout"])
if "snapshotSslValidation" in data["webcam"]:
s.setBoolean(
["webcam", "snapshotSslValidation"],
data["webcam"]["snapshotSslValidation"],
)
if "ffmpegPath" in data["webcam"]:
s.set(["webcam", "ffmpeg"], data["webcam"]["ffmpegPath"])
if "bitrate" in data["webcam"]:
s.set(["webcam", "bitrate"], data["webcam"]["bitrate"])
if "ffmpegThreads" in data["webcam"]:
s.setInt(["webcam", "ffmpegThreads"], data["webcam"]["ffmpegThreads"])
if "watermark" in data["webcam"]:
s.setBoolean(["webcam", "watermark"], data["webcam"]["watermark"])
if "flipH" in data["webcam"]:
s.setBoolean(["webcam", "flipH"], data["webcam"]["flipH"])
if "flipV" in data["webcam"]:
s.setBoolean(["webcam", "flipV"], data["webcam"]["flipV"])
if "rotate90" in data["webcam"]:
s.setBoolean(["webcam", "rotate90"], data["webcam"]["rotate90"])
if "feature" in data.keys():
if "gcodeViewer" in data["feature"]:
s.setBoolean(["gcodeViewer", "enabled"], data["feature"]["gcodeViewer"])
if "sizeThreshold" in data["feature"]:
s.setInt(["gcodeViewer", "sizeThreshold"], data["feature"]["sizeThreshold"])
if "mobileSizeThreshold" in data["feature"]:
s.setInt(
["gcodeViewer", "mobileSizeThreshold"],
data["feature"]["mobileSizeThreshold"],
)
if "temperatureGraph" in data["feature"]:
s.setBoolean(
["feature", "temperatureGraph"], data["feature"]["temperatureGraph"]
)
if "sdSupport" in data["feature"]:
s.setBoolean(["feature", "sdSupport"], data["feature"]["sdSupport"])
if "keyboardControl" in data["feature"]:
s.setBoolean(
["feature", "keyboardControl"], data["feature"]["keyboardControl"]
)
if "pollWatched" in data["feature"]:
s.setBoolean(["feature", "pollWatched"], data["feature"]["pollWatched"])
if "modelSizeDetection" in data["feature"]:
s.setBoolean(
["feature", "modelSizeDetection"], data["feature"]["modelSizeDetection"]
)
if "printCancelConfirmation" in data["feature"]:
s.setBoolean(
["feature", "printCancelConfirmation"],
data["feature"]["printCancelConfirmation"],
)
if "g90InfluencesExtruder" in data["feature"]:
s.setBoolean(
["feature", "g90InfluencesExtruder"],
data["feature"]["g90InfluencesExtruder"],
)
if "autoUppercaseBlacklist" in data["feature"] and isinstance(
data["feature"]["autoUppercaseBlacklist"], (list, tuple)
):
s.set(
["feature", "autoUppercaseBlacklist"],
data["feature"]["autoUppercaseBlacklist"],
)
if "serial" in data.keys():
if "autoconnect" in data["serial"]:
s.setBoolean(["serial", "autoconnect"], data["serial"]["autoconnect"])
if "port" in data["serial"]:
s.set(["serial", "port"], data["serial"]["port"])
if "baudrate" in data["serial"]:
s.setInt(["serial", "baudrate"], data["serial"]["baudrate"])
if "timeoutConnection" in data["serial"]:
s.setFloat(
["serial", "timeout", "connection"],
data["serial"]["timeoutConnection"],
minimum=1.0,
)
if "timeoutDetection" in data["serial"]:
s.setFloat(
["serial", "timeout", "detection"],
data["serial"]["timeoutDetection"],
minimum=1.0,
)
if "timeoutCommunication" in data["serial"]:
s.setFloat(
["serial", "timeout", "communication"],
data["serial"]["timeoutCommunication"],
minimum=1.0,
)
if "timeoutCommunicationBusy" in data["serial"]:
s.setFloat(
["serial", "timeout", "communicationBusy"],
data["serial"]["timeoutCommunicationBusy"],
minimum=1.0,
)
if "timeoutTemperature" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperature"],
data["serial"]["timeoutTemperature"],
minimum=1.0,
)
if "timeoutTemperatureTargetSet" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureTargetSet"],
data["serial"]["timeoutTemperatureTargetSet"],
minimum=1.0,
)
if "timeoutTemperatureAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "temperatureAutoreport"],
data["serial"]["timeoutTemperatureAutoreport"],
minimum=0.0,
)
if "timeoutSdStatus" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatus"],
data["serial"]["timeoutSdStatus"],
minimum=1.0,
)
if "timeoutSdStatusAutoreport" in data["serial"]:
s.setFloat(
["serial", "timeout", "sdStatusAutoreport"],
data["serial"]["timeoutSdStatusAutoreport"],
minimum=0.0,
)
if "timeoutBaudrateDetectionPause" in data["serial"]:
s.setFloat(
["serial", "timeout", "baudrateDetectionPause"],
data["serial"]["timeoutBaudrateDetectionPause"],
minimum=0.0,
)
if "timeoutPositionLogWait" in data["serial"]:
s.setFloat(
["serial", "timeout", "positionLogWait"],
data["serial"]["timeoutPositionLogWait"],
minimum=1.0,
)
if "additionalPorts" in data["serial"] and isinstance(
data["serial"]["additionalPorts"], (list, tuple)
):
s.set(["serial", "additionalPorts"], data["serial"]["additionalPorts"])
if "additionalBaudrates" in data["serial"] and isinstance(
data["serial"]["additionalBaudrates"], (list, tuple)
):
s.set(
["serial", "additionalBaudrates"], data["serial"]["additionalBaudrates"]
)
if "longRunningCommands" in data["serial"] and isinstance(
data["serial"]["longRunningCommands"], (list, tuple)
):
s.set(
["serial", "longRunningCommands"], data["serial"]["longRunningCommands"]
)
if "checksumRequiringCommands" in data["serial"] and isinstance(
data["serial"]["checksumRequiringCommands"], (list, tuple)
):
s.set(
["serial", "checksumRequiringCommands"],
data["serial"]["checksumRequiringCommands"],
)
if "helloCommand" in data["serial"]:
s.set(["serial", "helloCommand"], data["serial"]["helloCommand"])
if "ignoreErrorsFromFirmware" in data["serial"]:
s.setBoolean(
["serial", "ignoreErrorsFromFirmware"],
data["serial"]["ignoreErrorsFromFirmware"],
)
if "disconnectOnErrors" in data["serial"]:
s.setBoolean(
["serial", "disconnectOnErrors"], data["serial"]["disconnectOnErrors"]
)
if "triggerOkForM29" in data["serial"]:
s.setBoolean(
["serial", "triggerOkForM29"], data["serial"]["triggerOkForM29"]
)
if "blockM0M1" in data["serial"]:
s.setBoolean(["serial", "blockM0M1"], data["serial"]["blockM0M1"])
if "supportResendsWithoutOk" in data["serial"]:
value = data["serial"]["supportResendsWithoutOk"]
if value in ("always", "detect", "never"):
s.set(["serial", "supportResendsWithoutOk"], value)
if "waitForStart" in data["serial"]:
s.setBoolean(
["serial", "waitForStartOnConnect"], data["serial"]["waitForStart"]
)
if "alwaysSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "alwaysSendChecksum"], data["serial"]["alwaysSendChecksum"]
)
if "neverSendChecksum" in data["serial"]:
s.setBoolean(
["serial", "neverSendChecksum"], data["serial"]["neverSendChecksum"]
)
if "sdRelativePath" in data["serial"]:
s.setBoolean(["serial", "sdRelativePath"], data["serial"]["sdRelativePath"])
if "sdAlwaysAvailable" in data["serial"]:
s.setBoolean(
["serial", "sdAlwaysAvailable"], data["serial"]["sdAlwaysAvailable"]
)
if "swallowOkAfterResend" in data["serial"]:
s.setBoolean(
["serial", "swallowOkAfterResend"],
data["serial"]["swallowOkAfterResend"],
)
if "repetierTargetTemp" in data["serial"]:
s.setBoolean(
["serial", "repetierTargetTemp"], data["serial"]["repetierTargetTemp"]
)
if "externalHeatupDetection" in data["serial"]:
s.setBoolean(
["serial", "externalHeatupDetection"],
data["serial"]["externalHeatupDetection"],
)
if "ignoreIdenticalResends" in data["serial"]:
s.setBoolean(
["serial", "ignoreIdenticalResends"],
data["serial"]["ignoreIdenticalResends"],
)
if "firmwareDetection" in data["serial"]:
s.setBoolean(
["serial", "firmwareDetection"], data["serial"]["firmwareDetection"]
)
if "blockWhileDwelling" in data["serial"]:
s.setBoolean(
["serial", "blockWhileDwelling"], data["serial"]["blockWhileDwelling"]
)
if "logPositionOnPause" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnPause"], data["serial"]["logPositionOnPause"]
)
if "logPositionOnCancel" in data["serial"]:
s.setBoolean(
["serial", "logPositionOnCancel"], data["serial"]["logPositionOnCancel"]
)
if "maxTimeoutsIdle" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "idle"],
data["serial"]["maxTimeoutsIdle"],
)
if "maxTimeoutsPrinting" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "printing"],
data["serial"]["maxTimeoutsPrinting"],
)
if "maxTimeoutsLong" in data["serial"]:
s.setInt(
["serial", "maxCommunicationTimeouts", "long"],
data["serial"]["maxTimeoutsLong"],
)
if "capAutoreportTemp" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_temp"],
data["serial"]["capAutoreportTemp"],
)
if "capAutoreportSdStatus" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "autoreport_sdstatus"],
data["serial"]["capAutoreportSdStatus"],
)
if "capBusyProtocol" in data["serial"]:
s.setBoolean(
["serial", "capabilities", "busy_protocol"],
data["serial"]["capBusyProtocol"],
)
oldLog = s.getBoolean(["serial", "log"])
if "log" in data["serial"]:
s.setBoolean(["serial", "log"], data["serial"]["log"])
if oldLog and not s.getBoolean(["serial", "log"]):
# disable debug logging to serial.log
logging.getLogger("SERIAL").debug("Disabling serial logging")
logging.getLogger("SERIAL").setLevel(logging.CRITICAL)
elif not oldLog and s.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
logging.getLogger("SERIAL").debug("Enabling serial logging")
if "temperature" in data.keys():
if "profiles" in data["temperature"]:
result = []
for profile in data["temperature"]["profiles"]:
try:
profile["bed"] = int(profile["bed"])
profile["extruder"] = int(profile["extruder"])
except ValueError:
pass
result.append(profile)
s.set(["temperature", "profiles"], result)
if "cutoff" in data["temperature"]:
try:
cutoff = int(data["temperature"]["cutoff"])
if cutoff > 1:
s.setInt(["temperature", "cutoff"], cutoff)
except ValueError:
pass
if "sendAutomatically" in data["temperature"]:
s.setBoolean(
["temperature", "sendAutomatically"],
data["temperature"]["sendAutomatically"],
)
if "sendAutomaticallyAfter" in data["temperature"]:
s.setInt(
["temperature", "sendAutomaticallyAfter"],
data["temperature"]["sendAutomaticallyAfter"],
min=0,
max=30,
)
if "terminalFilters" in data.keys():
s.set(["terminalFilters"], data["terminalFilters"])
if "system" in data.keys():
if "actions" in data["system"]:
s.set(["system", "actions"], data["system"]["actions"])
if "events" in data["system"]:
s.set(["system", "events"], data["system"]["events"])
if "scripts" in data:
if "gcode" in data["scripts"] and isinstance(data["scripts"]["gcode"], dict):
for name, script in data["scripts"]["gcode"].items():
if name == "snippets":
continue
s.saveScript(
"gcode", name, script.replace("\r\n", "\n").replace("\r", "\n")
)
if "server" in data:
if "commands" in data["server"]:
if "systemShutdownCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemShutdownCommand"],
data["server"]["commands"]["systemShutdownCommand"],
)
if "systemRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "systemRestartCommand"],
data["server"]["commands"]["systemRestartCommand"],
)
if "serverRestartCommand" in data["server"]["commands"]:
s.set(
["server", "commands", "serverRestartCommand"],
data["server"]["commands"]["serverRestartCommand"],
)
if "diskspace" in data["server"]:
if "warning" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "warning"],
data["server"]["diskspace"]["warning"],
)
if "critical" in data["server"]["diskspace"]:
s.setInt(
["server", "diskspace", "critical"],
data["server"]["diskspace"]["critical"],
)
if "onlineCheck" in data["server"]:
if "enabled" in data["server"]["onlineCheck"]:
s.setBoolean(
["server", "onlineCheck", "enabled"],
data["server"]["onlineCheck"]["enabled"],
)
if "interval" in data["server"]["onlineCheck"]:
try:
interval = int(data["server"]["onlineCheck"]["interval"])
s.setInt(["server", "onlineCheck", "interval"], interval * 60)
except ValueError:
pass
if "host" in data["server"]["onlineCheck"]:
s.set(
["server", "onlineCheck", "host"],
data["server"]["onlineCheck"]["host"],
)
if "port" in data["server"]["onlineCheck"]:
s.setInt(
["server", "onlineCheck", "port"],
data["server"]["onlineCheck"]["port"],
)
if "pluginBlacklist" in data["server"]:
if "enabled" in data["server"]["pluginBlacklist"]:
s.setBoolean(
["server", "pluginBlacklist", "enabled"],
data["server"]["pluginBlacklist"]["enabled"],
)
if "url" in data["server"]["pluginBlacklist"]:
s.set(
["server", "pluginBlacklist", "url"],
data["server"]["pluginBlacklist"]["url"],
)
if "ttl" in data["server"]["pluginBlacklist"]:
try:
ttl = int(data["server"]["pluginBlacklist"]["ttl"])
s.setInt(["server", "pluginBlacklist", "ttl"], ttl * 60)
except ValueError:
pass
if "plugins" in data:
for plugin in octoprint.plugin.plugin_manager().get_implementations(
octoprint.plugin.SettingsPlugin
):
plugin_id = plugin._identifier
if plugin_id in data["plugins"]:
try:
plugin.on_settings_save(data["plugins"][plugin_id])
except TypeError:
logger.warn(
"Could not save settings for plugin {name} ({version}) since it called super(...)".format(
name=plugin._plugin_name, version=plugin._plugin_version
)
)
logger.warn(
"in a way which has issues due to OctoPrint's dynamic reloading after plugin operations."
)
logger.warn(
"Please contact the plugin's author and ask to update the plugin to use a direct call like"
)
logger.warn(
"octoprint.plugin.SettingsPlugin.on_settings_save(self, data) instead."
)
except:
logger.exception(
"Could not save settings for plugin {name} ({version})".format(
version=plugin._plugin_version, name=plugin._plugin_name
)
)
s.save()
payload = dict(config_hash=s.config_hash, effective_hash=s.effective_hash)
eventManager().fire(Events.SETTINGS_UPDATED, payload=payload)
|
https://github.com/OctoPrint/OctoPrint/issues/2780
|
2018-08-04 08:31:37,135 - octoprint - ERROR - Exception on /api/settings [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask_principal/__init__.py", line 198, in _decorated
rv = f(*args, **kw)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/settings.py", line 294, in setSettings
response = _saveSettings(data)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/settings.py", line 418, in _saveSettings
if "timeoutTemperatureAutoreport" in data["serial"]: s.setFloat(["serial", "timeout", "temperatureAutoreport"], data["serial"]["timeoutTemperatureAutoreport"], minimum=0.0)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/settings.py", line 1688, in setFloat
self.set(path, floatValue, **kwargs)
TypeError: set() got an unexpected keyword argument 'minimum'
2018-08-04 08:31:37,141 - tornado.access - ERROR - 500 POST /api/settings (::ffff:192.168.200.8) 24.39ms
2018-08-04 08:34:48,675 - octoprint.server.heartbeat - INFO - Server heartbeat <3
|
TypeError
|
def set(
self,
path,
value,
force=False,
defaults=None,
config=None,
preprocessors=None,
error_on_path=False,
*args,
**kwargs,
):
if not path:
if error_on_path:
raise NoSuchSettingsPath()
return
if self._mtime is not None and self.last_modified != self._mtime:
self.load()
if config is not None or defaults is not None:
if config is None:
config = self._config
if defaults is None:
defaults = dict(self._map.parents)
chain = HierarchicalChainMap(config, defaults)
else:
chain = self._map
if preprocessors is None:
preprocessors = self._set_preprocessors
preprocessor = None
try:
preprocessor = self._get_by_path(path, preprocessors)
except NoSuchSettingsPath:
pass
if callable(preprocessor):
value = preprocessor(value)
try:
current = chain.get_by_path(path)
except KeyError:
current = None
try:
default_value = chain.get_by_path(path, only_defaults=True)
except KeyError:
if error_on_path:
raise NoSuchSettingsPath()
default_value = None
in_local = chain.has_path(path, only_local=True)
in_defaults = chain.has_path(path, only_defaults=True)
if not force and in_defaults and in_local and default_value == value:
try:
chain.del_by_path(path)
self._dirty = True
self._dirty_time = time.time()
except KeyError:
if error_on_path:
raise NoSuchSettingsPath()
pass
elif (
force
or (not in_local and in_defaults and default_value != value)
or (in_local and current != value)
):
if value is None and in_local:
chain.del_by_path(path)
else:
chain.set_by_path(path, value)
self._dirty = True
self._dirty_time = time.time()
|
def set(
self,
path,
value,
force=False,
defaults=None,
config=None,
preprocessors=None,
error_on_path=False,
):
if not path:
if error_on_path:
raise NoSuchSettingsPath()
return
if self._mtime is not None and self.last_modified != self._mtime:
self.load()
if config is not None or defaults is not None:
if config is None:
config = self._config
if defaults is None:
defaults = dict(self._map.parents)
chain = HierarchicalChainMap(config, defaults)
else:
chain = self._map
if preprocessors is None:
preprocessors = self._set_preprocessors
preprocessor = None
try:
preprocessor = self._get_by_path(path, preprocessors)
except NoSuchSettingsPath:
pass
if callable(preprocessor):
value = preprocessor(value)
try:
current = chain.get_by_path(path)
except KeyError:
current = None
try:
default_value = chain.get_by_path(path, only_defaults=True)
except KeyError:
if error_on_path:
raise NoSuchSettingsPath()
default_value = None
in_local = chain.has_path(path, only_local=True)
in_defaults = chain.has_path(path, only_defaults=True)
if not force and in_defaults and in_local and default_value == value:
try:
chain.del_by_path(path)
self._dirty = True
self._dirty_time = time.time()
except KeyError:
if error_on_path:
raise NoSuchSettingsPath()
pass
elif (
force
or (not in_local and in_defaults and default_value != value)
or (in_local and current != value)
):
if value is None and in_local:
chain.del_by_path(path)
else:
chain.set_by_path(path, value)
self._dirty = True
self._dirty_time = time.time()
|
https://github.com/OctoPrint/OctoPrint/issues/2780
|
2018-08-04 08:31:37,135 - octoprint - ERROR - Exception on /api/settings [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask_principal/__init__.py", line 198, in _decorated
rv = f(*args, **kw)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/settings.py", line 294, in setSettings
response = _saveSettings(data)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/settings.py", line 418, in _saveSettings
if "timeoutTemperatureAutoreport" in data["serial"]: s.setFloat(["serial", "timeout", "temperatureAutoreport"], data["serial"]["timeoutTemperatureAutoreport"], minimum=0.0)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/settings.py", line 1688, in setFloat
self.set(path, floatValue, **kwargs)
TypeError: set() got an unexpected keyword argument 'minimum'
2018-08-04 08:31:37,141 - tornado.access - ERROR - 500 POST /api/settings (::ffff:192.168.200.8) 24.39ms
2018-08-04 08:34:48,675 - octoprint.server.heartbeat - INFO - Server heartbeat <3
|
TypeError
|
def is_lan_address(address, additional_private=None):
try:
if address.lower().startswith("::ffff:") and "." in address:
# ipv6 mapped ipv4 address, unmap
address = address[len("::ffff:") :]
ip = netaddr.IPAddress(address)
if ip.is_private() or ip.is_loopback():
return True
if additional_private is None or not isinstance(
additional_private, (list, tuple)
):
additional_private = []
subnets = netaddr.IPSet()
for additional in additional_private:
try:
subnets.add(netaddr.IPNetwork(additional))
except:
if logging.getLogger(__name__).isEnabledFor(logging.DEBUG):
logging.getLogger(__name__).exception(
"Error while trying to add additional private network to local subnets: {}".format(
additional
)
)
def to_ipnetwork(address):
prefix = address["netmask"]
if "/" in prefix:
# v6 notation in netifaces output, e.g. "ffff:ffff:ffff:ffff::/64"
_, prefix = prefix.split("/")
addr = address["addr"]
if "%" in addr:
# interface comment in netifaces output, e.g. "fe80::457f:bbee:d579:1063%wlan0"
addr = addr[: addr.find("%")]
return netaddr.IPNetwork("{}/{}".format(addr, prefix))
for interface in netifaces.interfaces():
addrs = netifaces.ifaddresses(interface)
for v4 in addrs.get(socket.AF_INET, ()):
try:
subnets.add(to_ipnetwork(v4))
except:
if logging.getLogger(__name__).isEnabledFor(logging.DEBUG):
logging.getLogger(__name__).exception(
"Error while trying to add v4 network to local subnets: {!r}".format(
v4
)
)
if HAS_V6:
for v6 in addrs.get(socket.AF_INET6, ()):
try:
subnets.add(to_ipnetwork(v6))
except:
if logging.getLogger(__name__).isEnabledFor(logging.DEBUG):
logging.getLogger(__name__).exception(
"Error while trying to add v6 network to local subnets: {!r}".format(
v6
)
)
if ip in subnets:
return True
return False
except:
# we are extra careful here since an unhandled exception in this method will effectively nuke the whole UI
logging.getLogger(__name__).exception(
"Error while trying to determine whether {} is a local address".format(
address
)
)
return True
|
def is_lan_address(address, additional_private=None):
if address.lower().startswith("::ffff:") and "." in address:
# ipv6 mapped ipv4 address, unmap
address = address[len("::ffff:") :]
ip = netaddr.IPAddress(address)
if ip.is_private() or ip.is_loopback():
return True
if additional_private is None or not isinstance(additional_private, (list, tuple)):
additional_private = []
subnets = netaddr.IPSet()
for additional in additional_private:
try:
subnets.add(netaddr.IPNetwork(additional))
except:
pass
def to_ipnetwork(address):
try:
prefix = address["netmask"]
if "/" in prefix:
# v6 notation in netifaces output, e.g. "ffff:ffff:ffff:ffff::/64"
_, prefix = prefix.split("/")
addr = address["addr"]
if "%" in addr:
# interface comment in netifaces output, e.g. "fe80::457f:bbee:d579:1063%wlan0"
addr = addr[: addr.find("%")]
return netaddr.IPNetwork("{}/{}".format(addr, prefix))
except:
pass
for interface in netifaces.interfaces():
addrs = netifaces.ifaddresses(interface)
for v4 in addrs.get(socket.AF_INET, ()):
subnets.add(to_ipnetwork(v4))
if HAS_V6:
for v6 in addrs.get(socket.AF_INET6, ()):
subnets.add(to_ipnetwork(v6))
if ip in subnets:
return True
return False
|
https://github.com/OctoPrint/OctoPrint/issues/2897
|
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 404, in index
if plugin.will_handle_ui(request):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py", line 29, in will_handle_ui
result = passive_login()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 531, in passive_login
additional_private=ipCheckTrusted)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/net.py", line 59, in is_lan_address
subnets.add(to_ipnetwork(v6))
File "/home/pi/oprint/local/lib/python2.7/site-packages/netaddr/ip/sets.py", line 293, in add
addr = IPNetwork(addr)
File "/home/pi/oprint/local/lib/python2.7/site-packages/netaddr/ip/__init__.py", line 928, in __init__
implicit_prefix, flags)
File "/home/pi/oprint/local/lib/python2.7/site-packages/netaddr/ip/__init__.py", line 823, in parse_ip_network
raise TypeError('unexpected type %s for addr arg' % type(addr))
TypeError: unexpected type <type 'NoneType'> for addr arg
|
TypeError
|
def to_ipnetwork(address):
prefix = address["netmask"]
if "/" in prefix:
# v6 notation in netifaces output, e.g. "ffff:ffff:ffff:ffff::/64"
_, prefix = prefix.split("/")
addr = address["addr"]
if "%" in addr:
# interface comment in netifaces output, e.g. "fe80::457f:bbee:d579:1063%wlan0"
addr = addr[: addr.find("%")]
return netaddr.IPNetwork("{}/{}".format(addr, prefix))
|
def to_ipnetwork(address):
try:
prefix = address["netmask"]
if "/" in prefix:
# v6 notation in netifaces output, e.g. "ffff:ffff:ffff:ffff::/64"
_, prefix = prefix.split("/")
addr = address["addr"]
if "%" in addr:
# interface comment in netifaces output, e.g. "fe80::457f:bbee:d579:1063%wlan0"
addr = addr[: addr.find("%")]
return netaddr.IPNetwork("{}/{}".format(addr, prefix))
except:
pass
|
https://github.com/OctoPrint/OctoPrint/issues/2897
|
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/views.py", line 404, in index
if plugin.will_handle_ui(request):
File "/home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin/__init__.py", line 29, in will_handle_ui
result = passive_login()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 531, in passive_login
additional_private=ipCheckTrusted)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/net.py", line 59, in is_lan_address
subnets.add(to_ipnetwork(v6))
File "/home/pi/oprint/local/lib/python2.7/site-packages/netaddr/ip/sets.py", line 293, in add
addr = IPNetwork(addr)
File "/home/pi/oprint/local/lib/python2.7/site-packages/netaddr/ip/__init__.py", line 928, in __init__
implicit_prefix, flags)
File "/home/pi/oprint/local/lib/python2.7/site-packages/netaddr/ip/__init__.py", line 823, in parse_ip_network
raise TypeError('unexpected type %s for addr arg' % type(addr))
TypeError: unexpected type <type 'NoneType'> for addr arg
|
TypeError
|
def reset(self):
self.clear(completely=True)
|
def reset(self, interval=None):
with self._mutex:
if interval:
self.interval = interval
self.is_reset = True
self._event.set()
self._event.clear()
if callable(self.on_reset):
self.on_reset()
|
https://github.com/OctoPrint/OctoPrint/issues/2872
|
2018-11-05 15:45:10,454 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 15:45:10,459 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2018-11-05 15:45:10,460 - octoprint.server - INFO - OctoPrint 1.3.9
2018-11-05 15:45:10,464 - octoprint.plugin.core - INFO - 30 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-05 15:45:10,485 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-05 15:45:10,486 - octoprint.server - INFO - ------------------------------------------------------------------------------
2018-11-05 15:45:26,045 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:45:56,092 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:46:26,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:46:56,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:47:26,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:47:56,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:48:26,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:48:56,379 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:49:26,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:49:56,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:50:26,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:50:56,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:51:26,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:51:56,662 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:52:26,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:52:56,757 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:53:26,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:53:56,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:54:26,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:54:56,951 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:55:27,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:55:57,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:56:27,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:56:57,146 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:57:27,193 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:57:57,242 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:58:27,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:58:57,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:59:27,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:59:57,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:00:10,456 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:00:27,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:00:57,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:01:27,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:01:57,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:02:27,668 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:02:57,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:03:27,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:03:57,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:04:27,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:04:57,906 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:05:27,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:05:58,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:06:28,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:06:58,096 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:07:28,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:07:58,190 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:08:28,258 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:08:58,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:09:28,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:09:58,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:10:28,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:10:58,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:11:28,544 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:11:58,592 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:12:28,638 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:12:58,688 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:13:28,734 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:13:58,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:14:28,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:14:58,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:15:10,459 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:15:28,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:15:58,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:16:29,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:16:59,066 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:17:29,112 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:17:59,160 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:18:29,208 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:18:59,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:19:29,302 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:19:59,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:20:29,398 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:20:59,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:21:29,496 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:21:59,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:22:29,592 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:22:59,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:23:29,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:23:59,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:24:29,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:24:59,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:25:29,880 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:25:59,926 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:26:29,974 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:27:00,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:27:30,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:28:00,119 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:28:30,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:29:00,214 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:29:30,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:30:00,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:30:10,461 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:30:30,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:31:00,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:31:30,453 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:32:00,502 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:32:30,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:33:00,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:33:30,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:34:00,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:34:30,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:35:00,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:35:30,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:36:00,884 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:36:30,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:37:00,979 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:37:31,028 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:38:01,080 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:38:31,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:39:01,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:39:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:40:01,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:40:31,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:41:01,371 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:41:31,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:42:01,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:42:31,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:43:01,562 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:43:31,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:44:01,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:44:31,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:45:01,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:45:10,463 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:45:31,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:46:01,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:46:31,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:47:01,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:47:31,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:48:02,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:48:32,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:49:02,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:49:32,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:50:02,223 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:50:32,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:51:02,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:51:32,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:52:02,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:52:32,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:53:02,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:53:32,562 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:54:02,609 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:54:32,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:55:02,704 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:55:32,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:56:02,798 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:56:32,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:57:02,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:57:32,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:58:02,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:58:33,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:59:03,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:59:33,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:00:03,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:00:10,466 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:00:33,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:01:03,284 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:01:33,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:02:03,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:02:33,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:03:03,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:03:33,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:04:03,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:04:33,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:05:03,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:05:33,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:06:03,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:06:33,808 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:07:03,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:07:33,906 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:08:03,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:08:34,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:09:04,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:09:34,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:10:04,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:10:34,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:11:04,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:11:34,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:12:04,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:12:34,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:13:04,424 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:13:34,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:14:04,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:14:34,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:15:04,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:15:10,468 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:15:34,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:16:04,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:16:34,757 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:17:04,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:17:34,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:18:04,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:18:34,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:19:04,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:19:35,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:20:05,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:20:35,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:21:05,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:21:35,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:22:05,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:22:35,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:23:05,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:23:35,426 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:24:05,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:24:35,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:25:05,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:25:35,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:26:05,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:26:35,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:27:05,761 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:27:35,808 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:28:05,855 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:28:35,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:29:05,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:29:36,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:30:06,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:30:10,470 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:30:36,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:31:06,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:31:36,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:32:06,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:32:36,282 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:33:06,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:33:36,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:34:06,424 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:34:36,471 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:35:06,518 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:35:36,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:36:06,612 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:36:36,660 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:37:06,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:37:36,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:38:06,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:38:36,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:39:06,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:39:36,947 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:40:06,995 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:40:37,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:41:07,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:41:37,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:42:07,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:42:37,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:43:07,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:43:37,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:44:07,373 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:44:37,419 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:45:07,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:45:10,473 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:45:37,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:46:07,563 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:46:37,610 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:47:07,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:47:37,704 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:48:07,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:48:37,797 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:49:07,844 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:49:37,891 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:50:07,938 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:50:37,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:51:08,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:51:38,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:52:08,126 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:52:38,173 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:53:08,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:53:38,269 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:54:08,316 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:54:38,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:55:08,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:55:38,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:56:08,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:56:38,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:57:08,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:57:38,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:58:08,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:58:38,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:59:08,795 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:59:38,841 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:00:08,890 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:00:10,475 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:00:38,936 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:01:08,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:01:39,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:02:09,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:02:39,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:03:09,172 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:03:39,219 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:04:09,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:04:39,314 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:05:09,362 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:05:39,410 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:06:09,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:06:39,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:07:09,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:07:39,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:08:09,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:08:39,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:09:09,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:09:39,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:10:09,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:10:39,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:11:09,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:11:39,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:12:10,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:12:40,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:13:10,134 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:13:40,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:14:10,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:14:40,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:15:10,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:15:10,478 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:15:40,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:16:10,418 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:16:40,464 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:17:10,514 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:17:40,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:18:10,610 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:18:40,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:19:10,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:19:40,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:20:10,803 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:20:40,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:21:10,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:21:40,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:22:10,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:22:41,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:23:11,089 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:23:41,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:24:11,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:24:41,232 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:25:11,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:25:41,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:26:11,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:26:41,423 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:27:11,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:27:41,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:28:11,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:28:41,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:29:11,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:29:41,714 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:30:10,480 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:30:11,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:30:41,809 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:31:11,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:31:41,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:32:11,964 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:32:42,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:33:12,058 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:33:42,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:34:12,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:34:42,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:35:12,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:35:42,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:36:12,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:36:42,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:37:12,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:37:42,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:38:12,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:38:42,586 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:39:12,632 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:39:42,682 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:40:12,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:40:42,778 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:41:12,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:41:42,871 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:42:12,917 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:42:42,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:43:13,010 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:43:43,056 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:44:13,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:44:43,153 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:45:10,483 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:45:13,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:45:43,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:46:13,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:46:43,341 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:47:13,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:47:43,435 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:48:13,482 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:48:43,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:49:13,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:49:43,626 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:50:13,674 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:50:43,721 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:51:13,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:51:43,816 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:52:13,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:52:43,912 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:53:13,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:53:44,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:54:14,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:54:44,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:55:14,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:55:44,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:56:14,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:56:44,293 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:57:14,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:57:44,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:58:14,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:58:44,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:59:14,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:59:44,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:00:10,486 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:00:14,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:00:44,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:01:14,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:01:44,768 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:02:14,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:02:44,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:03:14,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:03:44,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:04:15,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:04:45,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:05:15,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:05:45,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:06:15,195 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:06:45,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:07:15,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:07:45,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:08:15,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:08:45,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:09:15,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:09:45,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:10:15,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:10:45,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:11:15,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:11:45,720 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:12:15,770 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:12:45,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:13:15,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:13:45,912 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:14:15,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:14:46,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:15:10,488 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:15:16,055 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:15:46,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:16:16,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:16:46,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:17:16,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:17:46,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:18:16,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:18:46,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:19:16,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:19:46,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:20:16,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:20:46,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:21:16,629 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:21:46,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:22:16,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:22:46,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:23:16,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:23:46,867 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:24:16,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:24:46,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:25:17,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:25:47,055 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:26:17,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:26:47,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:27:17,198 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:27:47,248 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:28:17,295 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:28:47,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:29:17,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:29:47,441 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:30:10,491 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:30:17,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:30:47,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:31:17,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:31:47,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:32:17,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:32:47,728 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:33:17,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:33:47,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:34:17,874 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:34:47,922 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:35:17,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:35:48,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:36:18,065 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:36:48,112 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:37:18,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:37:48,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:38:18,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:38:48,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:39:18,352 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:39:48,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:40:18,450 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:40:48,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:41:18,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:41:48,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:42:18,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:42:48,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:43:18,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:43:48,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:44:18,858 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:44:48,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:45:10,493 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:45:18,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:45:49,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:46:19,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:46:49,099 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:47:19,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:47:49,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:48:19,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:48:49,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:49:19,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:49:49,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:50:19,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:50:49,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:51:19,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:51:49,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:52:19,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:52:49,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:53:19,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:53:49,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:54:19,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:54:49,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:55:19,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:55:49,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:56:20,006 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:56:50,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:57:20,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:57:50,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:58:20,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:58:50,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:59:20,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:59:50,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:00:10,495 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:00:20,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:00:50,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:01:20,480 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:01:50,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:02:20,575 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:02:50,622 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:03:20,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:03:50,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:04:20,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:04:50,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:05:20,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:05:50,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:06:20,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:06:51,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:07:21,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:07:51,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:08:21,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:08:51,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:09:21,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:09:51,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:10:21,330 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:10:51,378 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:11:21,427 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:11:51,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:12:21,523 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:12:51,571 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:13:21,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:13:51,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:14:21,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:14:51,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:15:10,497 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:15:21,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:15:51,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:16:21,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:16:51,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:17:22,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:17:52,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:18:22,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:18:52,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:19:22,193 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:19:52,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:20:22,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:20:52,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:21:22,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:21:52,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:22:22,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:22:52,529 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:23:22,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:23:52,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:24:22,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:24:52,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:25:22,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:25:52,813 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:26:22,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:26:52,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:27:22,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:27:53,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:28:23,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:28:53,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:29:23,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:29:53,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:30:10,499 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:30:23,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:30:53,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:31:23,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:31:53,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:32:23,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:32:53,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:33:23,528 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:33:53,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:34:23,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:34:53,670 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:35:23,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:35:53,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:36:23,813 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:36:53,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:37:23,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:37:53,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:38:24,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:38:54,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:39:24,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:39:54,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:40:24,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:40:54,239 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:41:24,285 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:41:54,332 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:42:24,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:42:54,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:43:24,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:43:54,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:44:24,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:44:54,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:45:10,501 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:45:24,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:45:54,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:46:24,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:46:54,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:47:24,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:47:54,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:48:24,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:48:55,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:49:25,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:49:55,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:50:25,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:50:55,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:51:25,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:51:55,299 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:52:25,345 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:52:55,393 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:53:25,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:53:55,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:54:25,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:54:55,607 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:55:25,655 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:55:55,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:56:25,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:56:55,797 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:57:25,844 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:57:55,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:58:25,942 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:58:55,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:59:26,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:59:56,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:00:10,504 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:00:26,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:00:56,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:01:26,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:01:56,286 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:02:26,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:02:56,381 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:03:26,430 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:03:56,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:04:26,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:04:56,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:05:26,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:05:56,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:06:26,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:06:56,765 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:07:26,816 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:07:56,865 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:08:26,915 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:08:56,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:09:27,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:09:57,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:10:27,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:10:57,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:11:27,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:11:57,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:12:27,298 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:12:57,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:13:27,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:13:57,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:14:27,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:14:57,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:15:10,506 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:15:27,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:15:57,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:16:27,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:16:57,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:17:27,772 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:17:57,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:18:27,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:18:57,922 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:19:27,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:19:58,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:20:28,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:20:58,114 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:21:28,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:21:58,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:22:28,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:22:58,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:23:28,358 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:23:58,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:24:28,455 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:24:58,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:25:28,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:25:58,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:26:28,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:26:58,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:27:28,739 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:27:58,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:28:28,838 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:28:58,889 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:29:28,936 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:29:58,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:30:10,509 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:30:29,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:30:59,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:31:29,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:31:59,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:32:29,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:32:59,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:33:29,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:33:59,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:34:29,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:34:59,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:35:29,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:35:59,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:36:29,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:36:59,658 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:37:29,709 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:37:59,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:38:29,802 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:38:59,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:39:29,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:39:59,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:40:29,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:41:00,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:41:30,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:42:00,136 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:42:30,182 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:43:00,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:43:30,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:44:00,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:44:30,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:45:00,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:45:10,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:45:30,471 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:46:00,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:46:30,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:47:00,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:47:30,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:48:00,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:48:21,833 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2581, in _readline
ret = self._serial.readline()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 4615, in readline
c = self.read(1)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 501, in read
'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)
2018-11-05 21:48:21,847 - octoprint.util.comm - ERROR - Unexpected error while writing to serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 3189, in _do_send_without_checksum
result = self._serial.write(to_send)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 571, in write
raise SerialException('write failed: {}'.format(e))
SerialException: write failed: [Errno 5] Input/output error
2018-11-05 21:48:21,881 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2018-11-05 21:48:21,885 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2018-11-05 21:48:21,894 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline (Error: SerialException: 'device reports readiness to read but returned no data (device disconnected or multiple access on port?)' @ comm.py:_readline:2581)"
2018-11-05 21:48:30,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:49:00,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:49:30,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:50:00,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:50:30,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:51:00,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:51:31,041 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:52:01,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:52:31,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:53:01,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:53:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:54:01,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:54:31,320 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:55:01,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:55:31,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:56:01,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:56:31,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:57:01,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:57:31,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:58:01,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:58:31,692 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:59:01,739 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:59:31,788 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:00:01,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:00:10,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:00:31,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:01:01,929 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:01:31,973 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:02:02,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:02:32,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:03:02,115 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:03:32,162 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:04:02,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:04:32,258 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:05:02,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:05:32,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:06:02,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:06:32,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:07:02,492 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:07:32,538 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:08:02,584 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:08:32,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:09:02,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:09:32,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:10:02,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:10:32,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:11:02,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:11:32,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:12:02,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:12:33,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:13:03,045 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:13:33,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:14:03,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:14:33,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:15:03,235 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:15:10,517 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:15:33,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:16:03,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:16:33,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:17:03,423 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:17:33,469 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:18:03,514 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:18:33,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:19:03,605 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:19:33,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:20:03,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:20:33,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:21:03,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:21:33,839 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:22:03,885 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:22:33,933 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:23:03,981 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:23:34,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:24:04,076 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:24:34,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:25:04,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:25:34,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:26:04,263 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:26:34,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:27:04,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:27:34,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:28:04,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:28:34,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:29:04,539 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:29:34,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:30:04,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:30:10,520 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:30:34,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:31:04,721 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:31:34,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:32:04,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:32:34,858 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:33:04,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:33:34,950 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:34:04,996 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:34:35,042 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:35:05,088 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:35:35,135 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:36:05,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:36:35,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:37:05,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:37:35,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:38:05,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:38:35,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:39:05,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:39:35,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:40:05,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:40:35,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:41:05,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:41:35,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:42:05,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:42:35,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:43:05,827 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:43:35,875 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:44:05,921 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:44:35,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:45:06,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:45:10,522 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:45:36,059 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:46:06,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:46:36,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:47:06,195 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:47:36,241 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:48:06,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:48:36,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:49:06,379 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:49:36,426 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:50:06,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:50:36,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:51:06,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:51:36,616 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:52:06,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:52:36,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:53:06,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:53:36,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:54:06,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:54:36,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:55:06,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:55:36,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:56:07,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:56:37,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:57:07,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:57:37,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:58:07,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:58:37,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:59:07,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:59:37,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:00:07,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:00:10,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:00:37,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:01:07,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:01:37,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:02:07,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:02:37,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:03:07,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:03:37,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:04:07,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:04:37,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:05:07,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:05:37,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:06:07,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:06:38,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:07:08,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:07:38,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:08:08,138 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:08:38,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:09:08,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:09:38,275 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:10:08,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:10:38,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:11:08,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:11:38,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:12:08,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:12:38,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:13:08,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:13:38,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:14:08,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:14:38,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:15:08,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:15:10,525 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:15:38,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:16:08,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:16:38,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:17:08,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:17:39,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:18:09,064 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:18:39,110 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:19:09,158 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:19:39,202 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:20:09,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:20:39,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:21:09,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:21:39,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:22:09,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:22:39,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:23:09,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:23:39,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:24:09,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:24:39,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:25:09,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:25:39,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:26:09,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:26:39,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:27:09,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:27:39,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:28:09,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:28:40,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:29:10,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:29:40,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:30:10,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:30:10,528 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:30:40,221 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:31:10,267 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:31:40,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:32:10,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:32:40,409 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:33:10,454 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:33:40,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:34:10,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:34:40,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:35:10,644 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:35:40,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:36:10,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:36:40,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:37:10,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:37:40,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:38:10,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:38:40,971 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:39:11,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:39:41,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:40:11,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:40:41,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:41:11,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:41:41,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:42:11,293 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:42:41,339 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:43:11,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:43:41,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:44:11,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:44:41,525 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:45:10,529 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:45:11,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:45:41,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:46:11,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:46:41,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:47:11,758 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:47:41,803 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:48:11,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:48:41,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:49:11,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:49:41,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:50:12,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:50:42,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:51:12,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:51:42,174 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:52:12,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:52:42,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:53:12,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:53:42,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:54:12,406 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:54:42,452 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:55:12,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:55:42,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:56:12,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:56:42,634 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:57:12,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:57:42,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:58:12,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:58:42,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:59:12,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:59:42,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:00:10,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:00:12,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:00:43,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:01:13,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:01:43,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:02:13,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:02:43,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:03:13,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:03:43,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:04:13,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:04:43,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:05:13,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:05:43,466 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:06:13,511 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:06:43,557 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:07:13,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:07:43,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:08:13,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:08:43,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:09:13,785 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:09:43,831 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:10:13,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:10:43,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:11:13,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:11:44,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:12:14,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:12:44,108 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:13:14,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:13:44,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:14:14,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:14:44,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:15:10,533 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:15:14,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:15:44,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:16:14,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:16:44,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:17:14,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:17:44,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:18:14,613 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:18:44,659 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:19:14,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:19:44,753 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:20:14,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:20:44,848 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:21:14,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:21:44,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:22:14,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:22:45,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:23:15,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:23:45,124 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:24:15,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:24:45,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:25:15,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:25:45,306 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:26:15,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:26:45,397 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:27:15,441 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:27:45,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:28:15,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:28:45,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:29:15,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:29:45,670 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:30:10,535 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:30:15,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:30:45,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:31:15,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:31:45,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:32:15,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:32:45,952 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:33:15,997 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:33:46,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:34:16,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:34:46,136 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:35:16,182 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:35:46,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:36:16,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:36:46,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:37:16,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:37:46,416 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:38:16,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:38:46,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:39:16,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:39:46,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:40:16,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:40:46,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:41:16,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:41:46,790 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:42:16,835 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:42:46,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:43:16,929 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:43:46,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:44:17,022 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:44:47,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:45:10,537 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:45:17,115 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:45:47,161 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:46:17,207 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:46:47,253 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:47:17,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:47:47,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:48:17,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:48:47,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:49:17,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:49:47,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:50:17,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:50:47,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:51:17,672 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:51:47,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:52:17,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:52:47,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:53:17,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:53:47,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:54:17,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:54:47,999 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:55:18,044 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:55:48,091 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:56:18,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:56:48,185 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:57:18,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:57:48,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:58:18,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:58:48,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:59:18,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:59:48,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:00:10,539 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:00:18,510 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:00:48,556 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:01:18,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:01:48,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:02:18,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:02:48,743 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:03:18,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:03:48,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:04:18,884 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:04:48,930 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:05:18,979 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:05:49,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:06:19,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:06:49,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:07:19,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:07:49,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:08:19,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:08:49,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:09:19,347 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:09:49,393 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:10:19,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:10:49,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:11:19,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:11:49,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:12:19,624 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:12:49,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:13:19,717 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:13:49,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:14:19,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:14:49,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:15:10,541 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:15:19,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:15:49,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:16:19,995 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:16:50,041 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:17:20,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:17:50,134 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:18:20,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:18:50,230 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:19:20,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:19:50,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:20:20,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:20:50,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:21:20,459 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:21:50,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:22:20,551 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:22:50,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:23:20,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:23:50,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:24:20,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:24:50,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:25:20,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:25:50,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:26:20,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:26:50,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:27:21,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:27:51,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:28:21,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:28:51,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:29:21,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:29:51,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:30:10,542 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:30:21,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:30:51,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:31:21,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:31:51,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:32:21,476 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:32:51,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:33:21,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:33:51,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:34:21,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:34:51,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:35:21,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:35:51,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:36:21,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:36:51,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:37:21,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:37:51,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:38:22,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:38:52,077 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:39:22,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:39:52,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:40:22,218 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:40:52,263 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:41:22,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:41:52,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:42:22,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:42:52,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:43:22,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:43:52,539 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:44:22,584 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:44:52,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:45:10,544 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:45:22,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:45:52,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:46:22,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:46:52,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:47:22,860 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:47:52,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:48:22,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:48:53,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:49:23,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:49:53,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:50:23,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:50:53,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:51:23,232 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:51:53,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:52:23,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:52:53,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:53:23,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:53:53,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:54:23,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:54:53,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:55:23,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:55:53,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:56:23,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:56:53,749 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:57:23,796 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:57:53,842 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:58:23,891 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:58:53,937 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:59:23,983 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:59:54,029 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:00:10,546 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:00:24,076 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:00:54,121 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:01:24,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:01:54,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:02:24,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:02:54,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:03:24,356 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:03:54,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:04:24,457 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:04:54,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:05:24,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:05:54,593 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:06:24,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:06:54,685 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:07:24,731 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:07:54,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:08:24,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:08:54,874 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:09:24,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:09:54,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:10:25,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:10:55,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:11:25,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:11:55,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:12:25,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:12:55,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:13:25,298 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:13:55,343 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:14:25,389 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:14:55,438 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:15:10,549 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:15:25,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:15:55,529 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:16:25,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:16:55,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:17:25,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:17:55,714 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:18:25,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:18:55,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:19:25,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:19:55,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:20:25,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:20:55,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:21:26,042 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:21:56,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:22:26,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:22:56,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:23:26,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:23:56,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:24:26,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:24:56,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:25:26,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:25:56,457 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:26:26,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:26:56,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:27:26,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:27:56,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:28:26,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:28:56,732 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:29:26,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:29:56,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:30:10,551 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:30:26,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:30:56,916 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:31:26,962 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:31:57,008 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:32:27,054 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:32:57,100 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:33:27,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:33:57,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:34:27,238 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:34:57,285 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:35:27,330 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:35:57,377 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:36:27,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:36:57,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:37:27,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:37:57,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:38:27,604 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:38:57,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:39:27,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:39:57,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:40:27,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:40:57,835 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:41:27,881 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:41:57,927 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:42:27,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:42:58,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:43:28,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:43:58,113 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:44:28,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:44:58,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:45:10,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:45:28,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:45:58,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:46:28,341 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:46:58,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:47:28,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:47:58,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:48:28,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:48:58,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:49:28,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:49:58,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:50:28,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:50:58,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:51:28,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:51:58,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:52:28,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:52:58,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:53:28,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:53:59,036 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:54:29,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:54:59,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:55:29,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:55:59,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:56:29,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:56:59,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:57:29,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:57:59,410 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:58:29,456 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:58:59,502 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:59:29,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:59:59,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:00:10,555 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:00:29,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:00:59,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:01:29,733 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:01:59,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:02:29,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:02:59,875 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:03:29,920 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:03:59,968 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:04:30,013 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:05:00,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:05:30,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:06:00,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:06:30,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:07:00,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:07:30,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:08:00,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:08:30,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:09:00,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:09:30,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:10:00,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:10:30,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:11:00,616 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:11:30,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:12:00,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:12:30,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:13:00,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:13:30,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:14:00,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:14:30,942 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:15:00,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:15:10,557 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:15:31,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:16:01,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:16:31,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:17:01,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:17:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:18:01,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:18:31,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:19:01,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:19:31,415 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:20:01,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:20:31,509 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:21:01,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:21:31,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:22:01,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:22:31,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:23:01,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:23:31,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:24:01,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:24:31,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:25:01,931 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:25:31,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:26:02,024 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:26:32,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:27:02,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:27:32,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:28:02,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:28:32,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:29:02,302 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:29:32,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:30:02,394 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:30:10,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:30:32,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:31:02,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:31:32,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:32:02,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:32:32,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:33:02,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:33:32,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:34:02,765 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:34:32,811 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:35:02,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:35:32,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:36:02,951 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:36:32,997 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:37:03,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:37:33,091 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:38:03,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:38:33,183 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:39:03,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:39:33,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:40:03,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:40:33,369 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:41:03,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:41:33,462 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:42:03,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:42:33,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:43:03,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:43:33,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:44:03,695 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:44:33,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:45:03,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:45:10,561 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:45:33,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:46:03,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:46:33,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:47:03,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:47:34,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:48:04,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:48:34,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:49:04,152 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:49:34,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:50:04,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:50:34,288 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:51:04,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:51:34,378 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:52:04,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:52:34,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:53:04,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:53:34,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:54:04,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:54:34,653 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:55:04,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:55:34,747 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:56:04,794 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:56:34,841 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:57:04,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:57:34,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:58:04,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:58:35,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:59:05,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:59:35,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:00:05,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:00:10,562 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:00:35,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:01:05,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:01:35,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:02:05,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:02:35,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:03:05,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:03:35,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:04:05,542 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:04:35,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:05:05,634 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:05:35,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:06:05,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:06:35,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:07:05,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:07:35,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:08:05,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:08:35,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:09:06,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:09:36,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:10:06,095 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:10:36,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:11:06,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:11:36,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:12:06,277 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:12:36,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:13:06,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:13:36,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:14:06,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:14:36,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:15:06,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:15:10,564 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:15:36,607 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:16:06,652 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:16:36,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:17:06,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:17:36,788 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:18:06,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:18:36,882 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:19:06,930 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:19:36,977 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:20:07,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:20:37,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:21:07,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:21:37,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:22:07,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:22:37,255 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:23:07,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:23:37,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:24:07,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:24:37,440 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:25:07,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:25:37,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:26:07,583 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:26:37,629 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:27:07,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:27:37,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:28:07,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:28:37,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:29:07,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:29:37,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:30:07,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:30:10,566 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:30:38,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:31:08,048 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:31:38,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:32:08,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:32:38,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:33:08,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:33:38,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:34:08,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:34:38,371 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:35:08,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:35:38,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:36:08,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:36:38,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:37:08,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:37:38,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:38:08,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:38:38,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:39:08,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:39:38,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:40:08,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:40:38,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:41:08,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:41:39,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:42:09,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:42:39,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:43:09,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:43:39,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:44:09,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:44:39,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:45:09,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:45:10,568 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:45:39,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:46:09,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:46:39,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:47:09,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:47:39,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:48:09,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:48:39,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:49:09,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:49:39,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:50:09,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:50:39,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:51:09,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:51:39,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:52:09,999 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:52:40,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:53:10,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:53:40,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:54:10,185 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:54:40,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:55:10,277 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:55:40,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:56:10,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:56:40,416 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:57:10,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:57:40,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:58:10,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:58:40,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:59:10,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:59:40,692 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:00:10,570 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:00:10,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:00:40,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:01:10,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:01:40,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:02:10,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:02:40,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:03:11,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:03:41,066 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:04:11,111 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:04:41,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:05:11,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:05:41,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:06:11,297 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:06:41,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:07:11,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:07:41,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:08:11,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:08:41,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:09:11,568 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:09:41,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:10:11,660 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:10:41,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:11:11,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:11:41,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:12:11,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:12:41,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:13:11,941 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:13:41,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:14:12,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:14:42,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:15:10,573 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:15:12,126 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:15:42,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:16:12,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:16:42,264 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:17:12,311 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:17:42,358 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:18:12,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:18:42,449 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:19:12,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:19:42,542 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:20:12,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:20:42,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:21:12,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:21:42,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:22:12,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:22:42,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:23:12,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:23:42,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:24:12,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:24:43,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:25:13,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:25:43,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:26:13,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:26:43,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:27:13,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:27:43,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:28:13,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:28:43,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:29:13,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:29:43,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:30:10,574 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:30:13,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:30:43,555 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:31:13,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:31:43,648 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:32:13,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:32:43,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:33:13,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:33:43,831 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:34:13,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:34:43,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:35:13,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:35:44,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:36:14,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:36:44,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:37:14,153 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:37:44,199 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:38:14,244 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:38:44,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:39:14,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:39:44,381 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:40:14,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:40:44,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:41:14,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:41:44,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:42:14,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:42:44,656 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:43:14,701 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:43:44,746 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:44:14,792 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:44:44,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:45:10,576 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:45:14,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:45:44,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:46:14,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:46:45,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:47:15,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:47:45,113 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:48:15,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:48:45,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:49:15,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:49:45,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:50:15,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:50:45,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:51:15,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:51:45,485 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:52:15,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:52:45,589 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:53:15,635 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:53:45,684 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:54:15,732 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:54:45,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:55:15,825 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:55:45,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:56:15,918 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:56:45,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:57:16,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:57:46,057 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:58:16,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:58:46,149 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:59:16,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:59:46,244 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:00:10,579 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:00:16,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:00:46,334 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:01:16,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:01:46,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:02:16,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:02:46,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:03:16,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:03:46,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:04:16,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:04:46,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:05:16,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:05:46,795 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:06:16,840 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:06:46,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:07:16,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:07:46,980 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:08:17,028 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:08:47,074 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:09:17,120 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:09:47,166 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:10:17,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:10:47,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:11:17,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:11:47,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:12:17,398 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:12:47,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:13:17,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:13:47,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:14:17,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:14:47,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:15:10,581 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:15:17,680 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:15:47,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:16:17,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:16:47,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:17:17,865 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:17:47,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:18:17,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:18:48,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:19:18,052 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:19:48,099 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:20:18,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:20:48,191 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:21:18,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:21:48,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:22:18,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:22:48,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:23:18,421 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:23:48,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:24:18,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:24:48,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:25:18,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:25:48,653 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:26:18,700 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:26:48,747 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:27:18,793 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:27:48,840 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:28:18,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:28:48,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:29:18,981 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:29:49,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:30:10,583 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:30:19,073 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:30:49,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:31:19,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:31:49,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:32:19,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:32:49,304 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:33:19,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:33:49,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:34:19,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:34:49,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:35:19,535 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:35:49,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:36:19,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:36:49,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:37:19,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:37:49,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:38:19,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:38:49,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:39:19,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:39:49,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:40:19,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:40:50,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:41:20,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:41:50,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:42:20,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:42:50,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:43:20,267 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:43:50,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:44:20,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:44:50,406 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:45:10,585 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:45:20,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:45:50,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:46:20,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:46:50,589 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:47:20,635 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:47:50,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:48:20,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:48:50,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:49:20,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:49:50,868 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:50:20,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:50:50,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:51:21,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:51:51,052 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:52:21,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:52:51,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:53:21,191 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:53:51,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:54:21,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:54:51,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:55:21,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:55:51,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:56:21,466 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:56:51,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:57:21,558 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:57:51,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:58:21,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:58:51,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:59:21,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:59:51,790 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:00:10,586 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:00:21,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:00:51,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:01:21,933 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:01:51,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:02:22,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:02:52,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:03:22,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:03:52,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:04:22,211 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:04:52,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:05:22,303 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:05:52,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:06:22,394 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:06:52,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:07:22,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:07:52,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:08:22,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:08:52,624 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:09:22,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:09:52,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:10:22,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:10:52,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:11:22,853 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:11:52,900 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:12:22,947 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:12:52,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:13:23,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:13:53,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:14:23,130 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:14:53,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:15:10,589 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:15:23,223 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:15:53,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:16:23,319 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:16:53,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:17:23,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:17:53,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:18:23,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:18:53,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:19:23,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:19:53,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:20:23,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:20:53,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:21:23,785 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:21:53,833 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:22:23,880 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:22:53,928 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:23:23,977 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:23:54,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:24:24,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:24:54,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:25:24,166 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:25:54,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:26:24,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:26:54,307 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:27:24,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:27:54,402 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:28:24,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:28:54,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:29:24,544 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:29:54,591 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:30:10,590 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:30:24,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:30:54,684 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:31:24,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:31:54,775 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:32:24,821 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:32:54,867 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:33:24,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:33:54,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:34:25,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:34:55,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:35:25,096 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:35:55,142 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:36:25,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:36:55,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:37:25,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:37:55,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:38:25,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:38:55,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:39:25,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:39:55,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:40:25,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:40:55,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:41:25,655 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:41:55,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:42:25,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:42:55,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:43:25,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:43:55,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:44:25,941 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:44:55,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:45:10,592 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:45:26,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:45:56,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:46:26,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:46:56,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:47:26,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:47:56,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:48:26,314 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:48:56,361 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:49:26,409 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:49:56,455 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:50:26,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:50:56,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:51:26,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:51:56,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:52:26,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:52:56,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:53:26,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:53:56,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:54:26,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:54:56,925 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:55:26,973 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:55:57,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:56:27,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:56:57,114 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:57:27,160 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:57:57,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:58:27,254 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:58:57,303 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:59:27,349 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:59:57,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:00:10,595 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:00:27,440 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:00:57,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:01:27,533 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:01:57,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:02:27,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:02:57,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:03:27,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:03:57,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:04:27,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:04:57,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:05:27,902 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:05:57,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:06:27,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:06:58,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:07:28,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:07:58,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:08:28,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:08:58,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:09:28,275 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:09:58,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:10:28,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:10:58,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:11:28,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:11:58,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:12:28,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:12:58,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:13:28,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:13:58,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:14:28,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:14:58,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:15:10,597 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:15:28,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:15:58,876 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:16:28,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:16:58,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:17:29,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:17:59,064 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:18:29,110 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:18:59,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:19:29,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:19:59,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:20:29,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:20:59,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:21:29,383 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:21:59,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:22:29,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:22:59,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:23:29,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:23:59,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:24:29,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:24:59,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:25:29,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:25:59,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:26:29,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:26:59,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:27:29,938 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:27:59,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:28:30,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:29:00,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:29:30,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:30:00,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:30:10,598 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:30:30,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:31:00,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:31:30,312 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:32:00,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:32:30,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:33:00,452 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:33:30,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:34:00,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:34:30,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:35:00,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:35:30,682 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:36:00,728 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:36:30,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:37:00,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:37:30,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:38:00,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:38:30,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:39:01,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:39:31,059 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:40:01,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:40:31,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:41:01,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:41:31,249 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:42:01,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:42:31,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:43:01,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:43:31,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:44:01,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:44:31,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:45:01,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:45:10,601 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:45:31,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:46:01,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:46:31,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:47:01,753 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:47:31,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:48:01,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:48:31,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:49:01,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:49:31,984 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:50:02,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:50:32,077 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:51:02,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:51:32,169 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:52:02,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:52:32,261 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:53:02,307 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:53:32,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:54:02,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:54:32,444 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:55:02,491 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:55:32,537 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:56:02,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:56:32,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:57:02,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:57:32,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:58:02,770 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:58:32,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:59:02,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:59:32,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:00:02,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:00:10,604 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:00:33,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:01:03,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:01:33,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:02:03,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:02:33,183 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:03:03,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:03:33,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:04:03,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:04:33,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:05:03,413 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:05:33,462 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:06:03,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:06:33,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:07:03,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:07:33,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:08:03,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:08:33,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:09:03,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:09:33,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:10:03,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:10:33,925 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:11:03,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:11:34,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:12:04,062 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:12:34,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:13:04,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:13:34,200 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:14:04,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:14:34,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:15:04,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:15:10,606 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:15:34,383 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:16:04,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:16:34,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:17:04,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:17:34,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:18:04,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:18:34,662 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:19:04,708 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:19:34,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:20:04,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:20:34,848 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:21:04,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:21:34,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:22:04,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:22:35,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:23:05,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:23:35,124 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:24:05,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:24:35,216 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:25:05,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:25:35,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:26:05,354 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:26:35,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:27:05,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:27:35,492 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:28:05,538 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:28:35,583 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:29:05,632 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:29:35,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:30:05,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:30:10,608 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:30:35,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:31:05,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:31:35,868 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:32:05,914 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:32:35,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:33:06,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:33:36,065 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:34:06,119 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:34:36,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:35:06,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:35:36,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:36:06,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:36:36,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:37:06,396 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:37:36,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:38:06,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:38:36,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:39:06,582 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:39:36,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:40:06,675 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:40:36,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:41:06,768 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:41:36,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:42:06,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:42:36,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:43:06,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:43:37,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:44:07,048 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:44:37,095 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:45:07,141 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:45:10,610 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:45:37,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:46:07,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:46:37,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:47:07,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:47:37,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:48:07,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:48:37,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:49:07,509 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:49:37,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:50:07,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:50:37,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:51:07,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:51:37,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:52:07,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:52:37,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:53:07,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:53:37,927 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:54:07,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:54:38,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:55:08,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:55:38,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:56:08,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:56:38,200 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:57:08,245 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:57:38,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:58:08,339 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:58:38,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:59:08,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:59:38,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:00:08,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:00:10,612 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:00:38,574 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:01:08,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:01:38,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:02:08,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:02:38,758 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:03:08,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:03:38,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:04:08,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:04:38,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:05:08,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:05:39,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:06:09,088 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:06:39,135 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:07:09,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:07:39,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:08:09,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:08:39,319 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:09:09,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:09:39,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:10:09,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:10:39,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:11:09,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:11:39,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:12:09,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:12:39,688 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:13:09,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:13:39,780 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:14:09,827 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:14:39,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:15:09,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:15:10,614 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:15:39,964 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:16:10,009 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:16:40,057 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:17:10,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:17:40,149 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:18:10,194 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:18:40,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:19:10,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:19:40,334 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:20:10,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:20:40,427 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:21:10,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:21:40,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:22:10,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:22:40,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:23:10,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:23:40,708 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:24:10,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:24:40,802 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:25:10,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:25:40,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:26:10,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:26:40,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:27:11,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:27:41,081 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:28:11,127 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:28:41,173 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:29:11,219 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:29:41,265 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:30:10,616 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:30:11,311 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:30:41,356 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:31:11,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:31:41,449 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:32:11,496 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:32:41,541 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:33:11,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:33:41,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:34:11,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:34:41,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:35:11,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:35:41,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:36:11,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:36:41,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:37:11,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:37:42,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:38:12,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:38:42,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:39:12,144 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:39:42,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:40:12,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:40:42,282 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:41:12,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:41:42,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:42:12,421 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:42:42,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:43:12,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:43:42,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:44:12,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:44:42,654 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:45:10,618 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:45:12,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:45:42,746 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:46:12,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:46:42,838 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:47:12,885 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:47:42,931 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:48:12,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:48:43,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:49:13,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:49:43,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:50:13,162 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:50:43,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:51:13,254 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:51:43,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:52:13,346 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:52:43,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:53:13,438 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:53:43,485 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:54:13,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:54:43,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:55:13,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:55:43,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:56:13,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:56:43,761 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:57:13,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:57:43,853 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:58:13,900 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:58:43,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:59:13,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:59:44,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:00:10,621 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:00:14,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:00:44,132 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:01:14,180 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:01:44,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:02:14,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:02:44,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:03:14,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:03:44,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:04:14,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:04:44,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:05:14,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:05:44,597 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:06:14,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:06:44,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:07:14,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:07:44,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:08:14,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:08:44,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:09:14,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:09:44,971 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:10:15,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:10:45,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:11:15,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:11:45,157 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:12:15,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:12:45,252 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:13:15,297 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:13:45,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:14:15,389 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:14:45,435 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:15:10,623 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:15:15,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:15:45,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:16:15,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:16:45,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:17:15,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:17:45,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:18:15,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:18:45,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:19:15,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:19:45,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:20:15,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:20:45,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:21:16,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:21:46,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:22:16,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:22:46,178 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:23:16,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:23:46,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:24:16,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:24:46,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:25:16,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:25:46,456 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:26:16,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:26:46,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:27:16,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:27:46,640 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:28:16,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:28:46,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:29:16,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:29:46,826 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:30:10,626 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:30:16,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:30:46,918 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:31:16,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:31:47,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:32:17,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:32:47,108 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:33:17,157 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:33:47,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:34:17,249 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:34:47,295 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:35:17,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:35:47,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:36:17,437 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:36:47,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:37:17,528 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:37:47,575 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:38:17,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:38:47,668 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:39:17,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:39:47,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:40:17,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:40:47,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:41:17,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:41:47,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:42:17,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:42:48,036 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:43:18,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:43:48,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:44:18,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:44:48,221 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:45:10,629 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:45:18,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:45:48,312 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:46:18,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:46:48,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:47:18,448 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:47:48,494 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:48:18,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:48:48,587 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:49:18,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:49:48,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:50:18,729 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:50:48,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:51:18,821 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:51:48,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:52:18,914 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:52:48,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:53:19,008 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:53:49,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:54:19,100 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:54:49,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:55:19,194 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:55:49,241 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:56:19,288 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:56:49,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:57:19,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:57:49,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:58:19,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:58:49,518 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:59:19,564 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:59:49,612 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:00:10,632 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:00:19,658 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:00:49,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:01:19,749 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:01:49,796 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:02:19,842 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:02:49,889 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:03:19,935 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:03:49,982 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:04:20,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:04:50,075 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:05:20,120 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:05:50,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:06:20,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:06:50,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:07:20,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:07:50,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:08:20,397 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:08:50,443 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:09:20,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:09:50,535 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:10:20,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:10:50,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:11:20,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:11:50,720 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:12:20,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:12:50,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:13:20,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:13:50,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:14:20,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:14:51,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:15:10,634 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:15:21,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:15:51,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:16:21,142 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:16:51,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:17:21,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:17:51,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:18:21,327 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:18:51,373 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:19:21,419 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:19:51,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:20:21,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:20:51,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:21:21,604 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:21:51,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:22:21,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:22:51,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:23:21,787 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:23:51,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:24:21,881 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:24:51,926 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:25:21,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:25:52,024 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:26:22,072 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:26:52,122 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:27:22,168 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:27:52,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:28:22,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:28:52,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:29:22,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:29:52,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:30:10,637 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:30:22,450 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:30:52,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:31:22,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:31:52,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:32:22,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:32:52,683 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:33:22,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:33:52,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:34:22,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:34:52,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:35:22,916 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:35:52,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:36:23,009 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:36:53,056 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:37:23,104 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:37:53,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:38:23,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:38:53,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:39:23,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:39:53,335 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:40:23,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:40:53,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:41:23,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:41:53,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:42:23,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:42:53,618 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:43:23,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:43:53,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:44:23,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:44:53,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:45:10,639 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:45:23,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:45:53,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:46:23,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:46:53,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:47:24,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:47:54,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:48:24,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:48:54,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:24,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:49,749 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Coffee_holder_v1_M117.gcode
2018-11-06 12:49:54,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:54,688 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:50:03,630 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.29s
2018-11-06 12:50:04,012 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.28s
2018-11-06 12:50:04,436 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.28s
2018-11-06 12:50:05,390 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.82s
2018-11-06 12:50:05,900 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.31s
2018-11-06 12:50:08,375 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Coffee_holder_v1_M117.gcode finished, needed 18.63s
2018-11-06 12:50:13,140 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:50:24,320 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:50:41,100 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.10rc1...
2018-11-06 12:50:54,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:51:24,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:51:54,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:52:17,082 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.10rc1 successful!
2018-11-06 12:52:18,072 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:52:18,076 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 12:52:18,224 - octoprint.server - INFO - Shutting down...
2018-11-06 12:52:18,235 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 12:52:18,244 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 12:52:18,262 - octoprint.events - INFO - Event loop shut down
2018-11-06 12:52:19,348 - octoprint.server - INFO - Goodbye!
2018-11-06 12:52:25,042 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:52:25,046 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 12:52:25,046 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:52:25,141 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 12:52:25,471 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 12:52:25,554 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:52:26,359 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 12:52:29,535 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 12:52:29,675 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 12:52:30,149 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 12:52:30,473 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:52:30,477 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 12:52:30,536 - octoprint.server - INFO - Intermediary server started
2018-11-06 12:52:30,538 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:52:31,069 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:52:31,185 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 12:52:33,392 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 12:52:33,416 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 12:52:33,417 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 12:52:33,467 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 12:52:33,948 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 12:52:38,031 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:42,058 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 12:52:42,060 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:52:42,061 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:52:42,068 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 12:52:42,109 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 12:52:42,136 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 12:52:42,157 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 12:52:42,211 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 12:52:42,836 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 12:52:43,290 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 12:52:43,295 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 12:52:43,297 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 12:52:43,361 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 12:52:44,703 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 12:52:44,812 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-11-06 12:52:47,824 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-11-06 12:52:48,627 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 12:52:48,671 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 12:52:48,823 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 12:52:48,874 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 12:52:48,957 - octoprint.plugins.pi_support - WARNING - This Raspberry Pi is reporting problems that might lead to bad performance or errors caused by overheating or insufficient power.
!!! UNDERVOLTAGE REPORTED !!! Make sure that the power supply and power cable are capable of supplying enough voltage and current to your Pi.
2018-11-06 12:52:48,978 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 12:52:48,989 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 12:52:49,007 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 12:52:49,011 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 12:52:49,012 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 12:52:49,036 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 12:52:49,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:52:49,281 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:52:49,313 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:52:49,845 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:52:50,527 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 12:52:51,537 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:52:52,198 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,199 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,286 - tornado.access - WARNING - 404 GET /api/plugin/octopi_support (192.168.0.25) 570.09ms
2018-11-06 12:52:52,742 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,875 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:53,131 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:53:00,746 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:53:00,799 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:53:05,202 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:53:09,510 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:53:09,514 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:53:09,515 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:53:19,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:53:23,309 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:53:23,455 - octoprint.server.preemptive_cache - INFO - ... done in 32.93s
2018-11-06 12:53:37,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:53:38,142 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:53:46,470 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:53:49,909 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:54:19,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:54:38,918 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 12:54:49,002 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:54:49,084 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:54:49,091 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 12:54:50,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:55:14,268 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 12:55:20,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:55:42,924 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:55:43,230 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:55:43,244 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 12:55:50,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:56:03,568 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 12:56:20,161 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:56:21,470 - octoprint.server.api.system - INFO - Performing command for core:shutdown: sudo shutdown -h now
2018-11-06 12:56:21,654 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 12:56:21,789 - octoprint.server - INFO - Shutting down...
2018-11-06 12:56:22,118 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 12:56:22,120 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 12:56:22,132 - octoprint.events - INFO - Event loop shut down
2018-11-06 12:56:23,158 - octoprint.server - INFO - Goodbye!
2018-11-06 12:56:41,595 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:56:41,598 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 12:56:41,600 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:56:41,757 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 12:56:41,768 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 12:56:41,915 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:56:42,892 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 12:57:38,239 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 12:57:38,452 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 12:57:39,037 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 12:57:39,496 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:57:39,506 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 12:57:39,606 - octoprint.server - INFO - Intermediary server started
2018-11-06 12:57:39,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:57:40,145 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:57:40,266 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 12:57:42,514 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 12:57:42,543 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 12:57:42,545 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 12:57:42,600 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 12:57:43,106 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-11-06 12:57:43,118 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 12:57:47,917 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:57:51,900 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 12:57:51,902 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:57:51,902 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:57:51,907 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 12:57:51,955 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 12:57:51,988 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 12:57:52,013 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 12:57:52,074 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 12:57:52,824 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 12:57:53,284 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 12:57:53,289 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 12:57:53,315 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 12:57:53,397 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 12:57:53,721 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:57:54,427 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:57:55,203 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 12:57:56,436 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 12:57:56,457 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 12:57:56,514 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 12:57:56,564 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 12:57:56,578 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 12:57:56,581 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 12:57:56,639 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 12:57:56,642 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 12:57:56,644 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 12:57:56,737 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 12:57:56,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:57:57,045 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:57:57,195 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:57:57,752 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 12:58:02,210 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:58:02,212 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:58:02,213 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:58:04,415 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:58:04,894 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:04,917 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:58:10,531 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:27,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:58:43,589 - octoprint.server.preemptive_cache - INFO - ... done in 45.84s
2018-11-06 12:58:43,651 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 12:58:46,051 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:58:46,517 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:52,284 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:58:57,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:27,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:57,996 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:59,328 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:59:59,609 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:59:59,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:00:25,759 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:00:28,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:00:40,396 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-11-06 13:00:40,412 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:00:58,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:01:10,462 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:01:28,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:01:57,308 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:01:57,471 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:01:57,492 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:01:58,172 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:02:11,961 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:02:16,318 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:02:16,394 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2018-11-06 13:02:16,408 - octoprint.plugins.filamentreload - INFO - Error: Disabling filament sensor.
2018-11-06 13:02:16,411 - octoprint.plugin - ERROR - Error while calling plugin filamentreload
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 226, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload/__init__.py", line 113, in on_event
GPIO.remove_event_detect(self.pin)
RuntimeError: Please set pin numbering mode using GPIO.setmode(GPIO.BOARD) or GPIO.setmode(GPIO.BCM)
2018-11-06 13:02:28,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:02:58,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:03:28,306 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:03:58,352 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:04:28,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:04:33,647 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:04:41,711 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:04:41,713 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:04:42,019 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:04:46,926 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:04:51,186 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.9...
2018-11-06 13:04:58,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:05:28,545 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:05:33,544 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.9 successful!
2018-11-06 13:05:34,616 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:05:34,620 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 13:05:34,825 - octoprint.server - INFO - Shutting down...
2018-11-06 13:05:35,339 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 13:05:35,341 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 13:05:35,353 - octoprint.events - INFO - Event loop shut down
2018-11-06 13:05:36,404 - octoprint.server - INFO - Goodbye!
2018-11-06 13:05:42,433 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:05:42,436 - octoprint.startup - INFO - Starting OctoPrint 1.3.9
2018-11-06 13:05:42,437 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:05:42,527 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 13:05:42,534 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 13:05:42,613 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:05:43,392 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 13:05:46,374 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 13:05:46,512 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 13:05:46,881 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 13:05:47,201 - octoprint.plugin.core - INFO - Found 30 plugin(s) providing 26 mixin implementations, 31 hook handlers
2018-11-06 13:05:47,205 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 13:05:47,264 - octoprint.server - INFO - Intermediary server started
2018-11-06 13:05:47,266 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:05:47,918 - octoprint.plugin.core - INFO - Found 30 plugin(s) providing 26 mixin implementations, 31 hook handlers
2018-11-06 13:05:48,037 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 13:05:50,265 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 13:05:50,289 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 13:05:50,290 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 13:05:50,332 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 13:05:50,813 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 13:05:54,946 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:05:58,994 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 13:05:58,996 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:05:58,998 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:05:59,000 - octoprint.plugin.core - INFO - Initialized 26 plugin implementation(s)
2018-11-06 13:05:59,042 - octoprint.plugin.core - INFO - 30 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 13:05:59,069 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 13:05:59,091 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 13:05:59,150 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 13:05:59,585 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 13:05:59,645 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 13:05:59,649 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 13:05:59,700 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 13:05:59,710 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 13:05:59,943 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:06:00,505 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:06:01,604 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 13:06:03,995 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-11-06 13:06:04,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-11-06 13:06:04,149 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 13:06:04,178 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 13:06:04,192 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 13:06:04,238 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 13:06:04,293 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 13:06:04,295 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 13:06:04,296 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 13:06:04,320 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 13:06:04,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:06:04,362 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:06:05,351 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:06:06,344 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:06:06,492 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 13:06:07,466 - tornado.access - WARNING - 404 GET /api/plugin/pi_support (192.168.0.25) 82.50ms
2018-11-06 13:06:08,851 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,328 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,598 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:10,267 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:17,799 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:06:17,800 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:06:21,816 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:06:34,984 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:06:41,911 - octoprint.server.preemptive_cache - INFO - ... done in 35.42s
2018-11-06 13:06:51,010 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 13:06:54,687 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:07:05,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:07:33,539 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:07:33,586 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2018-11-06 13:07:33,618 - octoprint.plugins.filamentreload - INFO - Error: Disabling filament sensor.
2018-11-06 13:07:33,621 - octoprint.plugin - ERROR - Error while calling plugin filamentreload
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload/__init__.py", line 113, in on_event
GPIO.remove_event_detect(self.pin)
RuntimeError: Please set pin numbering mode using GPIO.setmode(GPIO.BOARD) or GPIO.setmode(GPIO.BCM)
2018-11-06 13:07:35,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:07:57,212 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:07:57,297 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:07:57,304 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:07:57,320 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-11-06 13:07:57,431 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-11-06 13:07:57,493 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-11-06 13:07:57,580 - octoprint.util.comm - INFO - Printer reports firmware name "Smoothieware,"
2018-11-06 13:08:05,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:08:35,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:09:05,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:09:35,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:10:05,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:10:35,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:05,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:35,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:36,175 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:12:05,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:12:35,555 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:05,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:35,652 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:54,593 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.10rc1...
2018-11-06 13:14:05,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:14:33,682 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.10rc1 successful!
2018-11-06 13:14:34,691 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:14:34,695 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 13:14:34,845 - octoprint.server - INFO - Shutting down...
2018-11-06 13:14:35,302 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 13:14:35,312 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 13:14:35,315 - octoprint.events - INFO - Event loop shut down
2018-11-06 13:14:35,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:14:36,360 - octoprint.server - INFO - Goodbye!
2018-11-06 13:14:42,054 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:14:42,058 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 13:14:42,059 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:14:42,149 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 13:14:42,495 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 13:14:42,574 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:14:43,367 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 13:14:46,581 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 13:14:46,722 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 13:14:47,196 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 13:14:47,659 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 13:14:47,664 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 13:14:47,722 - octoprint.server - INFO - Intermediary server started
2018-11-06 13:14:47,723 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:14:48,253 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 13:14:48,369 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 13:14:50,581 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 13:14:50,605 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 13:14:50,606 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 13:14:50,654 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 13:14:51,131 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 13:14:51,143 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 13:14:55,223 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:14:59,255 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 13:14:59,258 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:14:59,259 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:14:59,266 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 13:14:59,308 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 13:14:59,334 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 13:14:59,355 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 13:14:59,410 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 13:15:00,009 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 13:15:00,167 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 13:15:00,172 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 13:15:00,173 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 13:15:00,249 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 13:15:00,287 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:15:02,177 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 13:15:02,179 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:15:04,167 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 13:15:04,247 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 13:15:04,280 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 13:15:04,399 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 13:15:04,515 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 13:15:04,531 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 13:15:04,551 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 13:15:04,553 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 13:15:04,554 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 13:15:04,632 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 13:15:04,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:15:04,911 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:15:05,118 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:15:06,562 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 13:15:06,758 - octoprint.server.preemptive_cache - INFO - ... done in 0.20s
2018-11-06 13:15:06,785 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:15:07,783 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:07,887 - tornado.access - WARNING - 404 GET /api/plugin/octopi_support (192.168.0.25) 46.12ms
2018-11-06 13:15:09,395 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:09,953 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,151 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,239 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,566 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:15,317 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:18,127 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:15:18,128 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:15:22,970 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:15:27,304 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:27,306 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:15:27,308 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:15:35,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:15:42,683 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:15:43,144 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:51,233 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 13:15:55,391 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:15:55,466 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:15:55,472 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:16:05,178 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:16:13,352 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:16:35,224 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:17:05,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:17:35,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:18:05,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:18:35,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:19:05,459 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
|
RuntimeError
|
def _on_external_reset(self):
# hold queue processing, clear queues and acknowledgements, reset line number and last lines
with self._send_queue.blocked():
self._clear_to_send.reset()
with self._command_queue.blocked():
self._command_queue.clear()
self._send_queue.clear()
with self._line_mutex:
self._currentLine = 0
self._lastLines.clear()
self.sayHello(tags={"trigger:comm.on_external_reset"})
self.resetLineNumbers(tags={"trigger:comm.on_external_reset"})
if self._temperature_autoreporting:
self._set_autoreport_temperature_interval()
if self._sdstatus_autoreporting:
self._set_autoreport_sdstatus_interval()
if self._busy_protocol_support:
self._set_busy_protocol_interval()
|
def _on_external_reset(self):
# hold queue processing, clear queues and acknowledgements, reset line number and last lines
with self._send_queue.blocked():
self._clear_to_send.clear(completely=True)
with self._command_queue.blocked():
self._command_queue.clear()
self._send_queue.clear()
with self._line_mutex:
self._currentLine = 0
self._lastLines.clear()
self.sayHello(tags={"trigger:comm.on_external_reset"})
self.resetLineNumbers(tags={"trigger:comm.on_external_reset"})
if self._temperature_autoreporting:
self._set_autoreport_temperature_interval()
if self._sdstatus_autoreporting:
self._set_autoreport_sdstatus_interval()
if self._busy_protocol_support:
self._set_busy_protocol_interval()
|
https://github.com/OctoPrint/OctoPrint/issues/2872
|
2018-11-05 15:45:10,454 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 15:45:10,459 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2018-11-05 15:45:10,460 - octoprint.server - INFO - OctoPrint 1.3.9
2018-11-05 15:45:10,464 - octoprint.plugin.core - INFO - 30 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-05 15:45:10,485 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-05 15:45:10,486 - octoprint.server - INFO - ------------------------------------------------------------------------------
2018-11-05 15:45:26,045 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:45:56,092 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:46:26,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:46:56,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:47:26,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:47:56,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:48:26,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:48:56,379 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:49:26,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:49:56,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:50:26,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:50:56,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:51:26,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:51:56,662 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:52:26,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:52:56,757 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:53:26,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:53:56,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:54:26,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:54:56,951 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:55:27,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:55:57,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:56:27,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:56:57,146 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:57:27,193 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:57:57,242 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:58:27,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:58:57,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:59:27,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:59:57,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:00:10,456 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:00:27,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:00:57,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:01:27,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:01:57,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:02:27,668 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:02:57,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:03:27,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:03:57,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:04:27,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:04:57,906 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:05:27,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:05:58,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:06:28,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:06:58,096 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:07:28,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:07:58,190 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:08:28,258 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:08:58,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:09:28,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:09:58,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:10:28,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:10:58,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:11:28,544 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:11:58,592 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:12:28,638 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:12:58,688 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:13:28,734 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:13:58,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:14:28,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:14:58,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:15:10,459 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:15:28,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:15:58,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:16:29,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:16:59,066 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:17:29,112 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:17:59,160 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:18:29,208 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:18:59,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:19:29,302 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:19:59,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:20:29,398 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:20:59,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:21:29,496 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:21:59,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:22:29,592 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:22:59,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:23:29,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:23:59,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:24:29,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:24:59,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:25:29,880 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:25:59,926 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:26:29,974 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:27:00,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:27:30,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:28:00,119 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:28:30,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:29:00,214 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:29:30,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:30:00,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:30:10,461 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:30:30,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:31:00,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:31:30,453 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:32:00,502 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:32:30,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:33:00,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:33:30,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:34:00,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:34:30,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:35:00,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:35:30,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:36:00,884 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:36:30,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:37:00,979 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:37:31,028 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:38:01,080 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:38:31,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:39:01,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:39:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:40:01,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:40:31,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:41:01,371 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:41:31,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:42:01,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:42:31,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:43:01,562 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:43:31,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:44:01,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:44:31,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:45:01,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:45:10,463 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:45:31,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:46:01,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:46:31,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:47:01,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:47:31,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:48:02,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:48:32,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:49:02,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:49:32,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:50:02,223 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:50:32,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:51:02,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:51:32,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:52:02,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:52:32,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:53:02,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:53:32,562 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:54:02,609 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:54:32,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:55:02,704 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:55:32,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:56:02,798 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:56:32,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:57:02,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:57:32,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:58:02,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:58:33,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:59:03,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:59:33,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:00:03,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:00:10,466 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:00:33,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:01:03,284 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:01:33,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:02:03,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:02:33,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:03:03,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:03:33,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:04:03,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:04:33,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:05:03,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:05:33,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:06:03,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:06:33,808 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:07:03,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:07:33,906 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:08:03,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:08:34,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:09:04,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:09:34,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:10:04,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:10:34,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:11:04,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:11:34,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:12:04,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:12:34,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:13:04,424 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:13:34,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:14:04,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:14:34,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:15:04,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:15:10,468 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:15:34,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:16:04,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:16:34,757 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:17:04,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:17:34,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:18:04,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:18:34,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:19:04,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:19:35,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:20:05,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:20:35,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:21:05,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:21:35,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:22:05,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:22:35,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:23:05,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:23:35,426 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:24:05,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:24:35,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:25:05,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:25:35,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:26:05,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:26:35,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:27:05,761 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:27:35,808 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:28:05,855 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:28:35,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:29:05,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:29:36,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:30:06,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:30:10,470 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:30:36,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:31:06,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:31:36,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:32:06,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:32:36,282 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:33:06,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:33:36,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:34:06,424 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:34:36,471 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:35:06,518 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:35:36,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:36:06,612 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:36:36,660 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:37:06,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:37:36,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:38:06,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:38:36,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:39:06,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:39:36,947 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:40:06,995 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:40:37,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:41:07,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:41:37,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:42:07,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:42:37,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:43:07,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:43:37,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:44:07,373 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:44:37,419 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:45:07,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:45:10,473 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:45:37,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:46:07,563 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:46:37,610 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:47:07,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:47:37,704 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:48:07,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:48:37,797 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:49:07,844 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:49:37,891 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:50:07,938 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:50:37,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:51:08,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:51:38,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:52:08,126 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:52:38,173 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:53:08,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:53:38,269 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:54:08,316 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:54:38,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:55:08,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:55:38,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:56:08,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:56:38,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:57:08,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:57:38,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:58:08,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:58:38,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:59:08,795 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:59:38,841 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:00:08,890 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:00:10,475 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:00:38,936 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:01:08,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:01:39,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:02:09,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:02:39,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:03:09,172 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:03:39,219 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:04:09,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:04:39,314 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:05:09,362 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:05:39,410 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:06:09,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:06:39,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:07:09,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:07:39,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:08:09,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:08:39,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:09:09,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:09:39,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:10:09,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:10:39,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:11:09,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:11:39,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:12:10,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:12:40,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:13:10,134 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:13:40,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:14:10,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:14:40,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:15:10,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:15:10,478 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:15:40,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:16:10,418 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:16:40,464 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:17:10,514 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:17:40,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:18:10,610 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:18:40,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:19:10,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:19:40,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:20:10,803 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:20:40,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:21:10,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:21:40,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:22:10,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:22:41,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:23:11,089 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:23:41,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:24:11,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:24:41,232 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:25:11,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:25:41,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:26:11,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:26:41,423 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:27:11,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:27:41,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:28:11,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:28:41,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:29:11,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:29:41,714 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:30:10,480 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:30:11,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:30:41,809 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:31:11,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:31:41,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:32:11,964 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:32:42,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:33:12,058 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:33:42,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:34:12,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:34:42,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:35:12,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:35:42,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:36:12,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:36:42,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:37:12,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:37:42,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:38:12,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:38:42,586 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:39:12,632 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:39:42,682 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:40:12,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:40:42,778 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:41:12,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:41:42,871 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:42:12,917 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:42:42,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:43:13,010 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:43:43,056 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:44:13,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:44:43,153 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:45:10,483 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:45:13,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:45:43,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:46:13,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:46:43,341 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:47:13,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:47:43,435 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:48:13,482 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:48:43,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:49:13,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:49:43,626 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:50:13,674 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:50:43,721 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:51:13,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:51:43,816 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:52:13,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:52:43,912 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:53:13,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:53:44,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:54:14,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:54:44,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:55:14,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:55:44,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:56:14,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:56:44,293 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:57:14,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:57:44,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:58:14,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:58:44,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:59:14,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:59:44,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:00:10,486 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:00:14,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:00:44,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:01:14,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:01:44,768 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:02:14,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:02:44,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:03:14,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:03:44,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:04:15,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:04:45,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:05:15,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:05:45,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:06:15,195 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:06:45,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:07:15,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:07:45,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:08:15,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:08:45,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:09:15,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:09:45,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:10:15,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:10:45,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:11:15,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:11:45,720 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:12:15,770 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:12:45,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:13:15,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:13:45,912 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:14:15,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:14:46,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:15:10,488 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:15:16,055 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:15:46,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:16:16,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:16:46,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:17:16,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:17:46,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:18:16,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:18:46,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:19:16,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:19:46,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:20:16,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:20:46,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:21:16,629 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:21:46,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:22:16,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:22:46,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:23:16,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:23:46,867 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:24:16,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:24:46,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:25:17,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:25:47,055 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:26:17,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:26:47,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:27:17,198 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:27:47,248 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:28:17,295 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:28:47,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:29:17,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:29:47,441 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:30:10,491 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:30:17,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:30:47,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:31:17,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:31:47,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:32:17,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:32:47,728 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:33:17,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:33:47,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:34:17,874 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:34:47,922 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:35:17,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:35:48,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:36:18,065 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:36:48,112 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:37:18,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:37:48,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:38:18,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:38:48,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:39:18,352 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:39:48,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:40:18,450 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:40:48,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:41:18,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:41:48,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:42:18,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:42:48,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:43:18,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:43:48,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:44:18,858 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:44:48,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:45:10,493 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:45:18,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:45:49,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:46:19,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:46:49,099 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:47:19,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:47:49,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:48:19,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:48:49,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:49:19,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:49:49,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:50:19,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:50:49,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:51:19,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:51:49,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:52:19,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:52:49,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:53:19,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:53:49,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:54:19,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:54:49,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:55:19,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:55:49,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:56:20,006 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:56:50,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:57:20,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:57:50,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:58:20,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:58:50,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:59:20,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:59:50,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:00:10,495 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:00:20,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:00:50,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:01:20,480 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:01:50,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:02:20,575 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:02:50,622 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:03:20,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:03:50,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:04:20,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:04:50,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:05:20,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:05:50,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:06:20,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:06:51,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:07:21,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:07:51,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:08:21,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:08:51,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:09:21,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:09:51,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:10:21,330 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:10:51,378 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:11:21,427 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:11:51,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:12:21,523 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:12:51,571 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:13:21,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:13:51,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:14:21,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:14:51,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:15:10,497 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:15:21,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:15:51,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:16:21,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:16:51,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:17:22,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:17:52,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:18:22,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:18:52,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:19:22,193 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:19:52,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:20:22,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:20:52,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:21:22,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:21:52,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:22:22,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:22:52,529 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:23:22,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:23:52,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:24:22,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:24:52,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:25:22,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:25:52,813 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:26:22,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:26:52,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:27:22,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:27:53,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:28:23,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:28:53,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:29:23,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:29:53,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:30:10,499 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:30:23,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:30:53,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:31:23,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:31:53,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:32:23,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:32:53,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:33:23,528 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:33:53,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:34:23,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:34:53,670 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:35:23,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:35:53,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:36:23,813 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:36:53,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:37:23,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:37:53,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:38:24,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:38:54,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:39:24,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:39:54,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:40:24,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:40:54,239 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:41:24,285 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:41:54,332 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:42:24,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:42:54,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:43:24,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:43:54,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:44:24,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:44:54,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:45:10,501 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:45:24,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:45:54,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:46:24,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:46:54,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:47:24,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:47:54,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:48:24,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:48:55,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:49:25,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:49:55,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:50:25,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:50:55,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:51:25,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:51:55,299 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:52:25,345 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:52:55,393 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:53:25,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:53:55,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:54:25,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:54:55,607 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:55:25,655 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:55:55,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:56:25,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:56:55,797 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:57:25,844 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:57:55,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:58:25,942 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:58:55,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:59:26,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:59:56,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:00:10,504 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:00:26,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:00:56,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:01:26,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:01:56,286 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:02:26,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:02:56,381 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:03:26,430 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:03:56,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:04:26,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:04:56,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:05:26,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:05:56,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:06:26,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:06:56,765 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:07:26,816 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:07:56,865 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:08:26,915 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:08:56,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:09:27,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:09:57,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:10:27,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:10:57,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:11:27,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:11:57,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:12:27,298 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:12:57,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:13:27,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:13:57,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:14:27,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:14:57,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:15:10,506 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:15:27,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:15:57,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:16:27,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:16:57,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:17:27,772 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:17:57,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:18:27,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:18:57,922 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:19:27,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:19:58,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:20:28,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:20:58,114 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:21:28,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:21:58,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:22:28,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:22:58,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:23:28,358 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:23:58,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:24:28,455 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:24:58,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:25:28,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:25:58,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:26:28,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:26:58,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:27:28,739 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:27:58,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:28:28,838 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:28:58,889 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:29:28,936 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:29:58,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:30:10,509 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:30:29,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:30:59,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:31:29,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:31:59,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:32:29,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:32:59,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:33:29,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:33:59,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:34:29,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:34:59,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:35:29,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:35:59,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:36:29,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:36:59,658 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:37:29,709 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:37:59,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:38:29,802 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:38:59,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:39:29,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:39:59,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:40:29,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:41:00,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:41:30,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:42:00,136 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:42:30,182 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:43:00,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:43:30,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:44:00,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:44:30,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:45:00,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:45:10,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:45:30,471 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:46:00,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:46:30,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:47:00,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:47:30,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:48:00,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:48:21,833 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2581, in _readline
ret = self._serial.readline()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 4615, in readline
c = self.read(1)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 501, in read
'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)
2018-11-05 21:48:21,847 - octoprint.util.comm - ERROR - Unexpected error while writing to serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 3189, in _do_send_without_checksum
result = self._serial.write(to_send)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 571, in write
raise SerialException('write failed: {}'.format(e))
SerialException: write failed: [Errno 5] Input/output error
2018-11-05 21:48:21,881 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2018-11-05 21:48:21,885 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2018-11-05 21:48:21,894 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline (Error: SerialException: 'device reports readiness to read but returned no data (device disconnected or multiple access on port?)' @ comm.py:_readline:2581)"
2018-11-05 21:48:30,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:49:00,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:49:30,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:50:00,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:50:30,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:51:00,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:51:31,041 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:52:01,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:52:31,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:53:01,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:53:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:54:01,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:54:31,320 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:55:01,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:55:31,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:56:01,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:56:31,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:57:01,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:57:31,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:58:01,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:58:31,692 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:59:01,739 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:59:31,788 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:00:01,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:00:10,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:00:31,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:01:01,929 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:01:31,973 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:02:02,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:02:32,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:03:02,115 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:03:32,162 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:04:02,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:04:32,258 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:05:02,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:05:32,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:06:02,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:06:32,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:07:02,492 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:07:32,538 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:08:02,584 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:08:32,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:09:02,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:09:32,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:10:02,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:10:32,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:11:02,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:11:32,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:12:02,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:12:33,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:13:03,045 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:13:33,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:14:03,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:14:33,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:15:03,235 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:15:10,517 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:15:33,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:16:03,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:16:33,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:17:03,423 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:17:33,469 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:18:03,514 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:18:33,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:19:03,605 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:19:33,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:20:03,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:20:33,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:21:03,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:21:33,839 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:22:03,885 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:22:33,933 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:23:03,981 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:23:34,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:24:04,076 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:24:34,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:25:04,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:25:34,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:26:04,263 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:26:34,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:27:04,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:27:34,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:28:04,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:28:34,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:29:04,539 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:29:34,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:30:04,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:30:10,520 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:30:34,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:31:04,721 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:31:34,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:32:04,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:32:34,858 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:33:04,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:33:34,950 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:34:04,996 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:34:35,042 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:35:05,088 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:35:35,135 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:36:05,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:36:35,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:37:05,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:37:35,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:38:05,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:38:35,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:39:05,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:39:35,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:40:05,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:40:35,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:41:05,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:41:35,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:42:05,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:42:35,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:43:05,827 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:43:35,875 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:44:05,921 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:44:35,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:45:06,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:45:10,522 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:45:36,059 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:46:06,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:46:36,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:47:06,195 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:47:36,241 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:48:06,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:48:36,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:49:06,379 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:49:36,426 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:50:06,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:50:36,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:51:06,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:51:36,616 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:52:06,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:52:36,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:53:06,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:53:36,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:54:06,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:54:36,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:55:06,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:55:36,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:56:07,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:56:37,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:57:07,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:57:37,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:58:07,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:58:37,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:59:07,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:59:37,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:00:07,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:00:10,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:00:37,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:01:07,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:01:37,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:02:07,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:02:37,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:03:07,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:03:37,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:04:07,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:04:37,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:05:07,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:05:37,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:06:07,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:06:38,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:07:08,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:07:38,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:08:08,138 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:08:38,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:09:08,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:09:38,275 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:10:08,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:10:38,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:11:08,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:11:38,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:12:08,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:12:38,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:13:08,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:13:38,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:14:08,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:14:38,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:15:08,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:15:10,525 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:15:38,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:16:08,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:16:38,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:17:08,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:17:39,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:18:09,064 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:18:39,110 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:19:09,158 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:19:39,202 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:20:09,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:20:39,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:21:09,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:21:39,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:22:09,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:22:39,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:23:09,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:23:39,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:24:09,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:24:39,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:25:09,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:25:39,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:26:09,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:26:39,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:27:09,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:27:39,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:28:09,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:28:40,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:29:10,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:29:40,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:30:10,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:30:10,528 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:30:40,221 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:31:10,267 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:31:40,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:32:10,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:32:40,409 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:33:10,454 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:33:40,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:34:10,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:34:40,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:35:10,644 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:35:40,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:36:10,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:36:40,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:37:10,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:37:40,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:38:10,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:38:40,971 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:39:11,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:39:41,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:40:11,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:40:41,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:41:11,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:41:41,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:42:11,293 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:42:41,339 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:43:11,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:43:41,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:44:11,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:44:41,525 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:45:10,529 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:45:11,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:45:41,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:46:11,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:46:41,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:47:11,758 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:47:41,803 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:48:11,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:48:41,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:49:11,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:49:41,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:50:12,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:50:42,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:51:12,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:51:42,174 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:52:12,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:52:42,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:53:12,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:53:42,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:54:12,406 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:54:42,452 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:55:12,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:55:42,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:56:12,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:56:42,634 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:57:12,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:57:42,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:58:12,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:58:42,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:59:12,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:59:42,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:00:10,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:00:12,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:00:43,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:01:13,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:01:43,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:02:13,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:02:43,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:03:13,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:03:43,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:04:13,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:04:43,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:05:13,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:05:43,466 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:06:13,511 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:06:43,557 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:07:13,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:07:43,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:08:13,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:08:43,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:09:13,785 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:09:43,831 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:10:13,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:10:43,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:11:13,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:11:44,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:12:14,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:12:44,108 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:13:14,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:13:44,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:14:14,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:14:44,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:15:10,533 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:15:14,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:15:44,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:16:14,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:16:44,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:17:14,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:17:44,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:18:14,613 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:18:44,659 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:19:14,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:19:44,753 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:20:14,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:20:44,848 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:21:14,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:21:44,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:22:14,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:22:45,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:23:15,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:23:45,124 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:24:15,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:24:45,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:25:15,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:25:45,306 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:26:15,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:26:45,397 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:27:15,441 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:27:45,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:28:15,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:28:45,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:29:15,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:29:45,670 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:30:10,535 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:30:15,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:30:45,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:31:15,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:31:45,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:32:15,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:32:45,952 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:33:15,997 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:33:46,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:34:16,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:34:46,136 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:35:16,182 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:35:46,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:36:16,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:36:46,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:37:16,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:37:46,416 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:38:16,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:38:46,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:39:16,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:39:46,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:40:16,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:40:46,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:41:16,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:41:46,790 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:42:16,835 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:42:46,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:43:16,929 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:43:46,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:44:17,022 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:44:47,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:45:10,537 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:45:17,115 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:45:47,161 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:46:17,207 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:46:47,253 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:47:17,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:47:47,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:48:17,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:48:47,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:49:17,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:49:47,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:50:17,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:50:47,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:51:17,672 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:51:47,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:52:17,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:52:47,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:53:17,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:53:47,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:54:17,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:54:47,999 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:55:18,044 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:55:48,091 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:56:18,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:56:48,185 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:57:18,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:57:48,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:58:18,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:58:48,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:59:18,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:59:48,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:00:10,539 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:00:18,510 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:00:48,556 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:01:18,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:01:48,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:02:18,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:02:48,743 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:03:18,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:03:48,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:04:18,884 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:04:48,930 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:05:18,979 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:05:49,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:06:19,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:06:49,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:07:19,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:07:49,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:08:19,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:08:49,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:09:19,347 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:09:49,393 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:10:19,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:10:49,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:11:19,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:11:49,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:12:19,624 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:12:49,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:13:19,717 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:13:49,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:14:19,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:14:49,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:15:10,541 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:15:19,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:15:49,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:16:19,995 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:16:50,041 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:17:20,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:17:50,134 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:18:20,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:18:50,230 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:19:20,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:19:50,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:20:20,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:20:50,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:21:20,459 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:21:50,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:22:20,551 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:22:50,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:23:20,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:23:50,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:24:20,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:24:50,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:25:20,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:25:50,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:26:20,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:26:50,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:27:21,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:27:51,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:28:21,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:28:51,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:29:21,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:29:51,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:30:10,542 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:30:21,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:30:51,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:31:21,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:31:51,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:32:21,476 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:32:51,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:33:21,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:33:51,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:34:21,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:34:51,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:35:21,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:35:51,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:36:21,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:36:51,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:37:21,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:37:51,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:38:22,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:38:52,077 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:39:22,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:39:52,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:40:22,218 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:40:52,263 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:41:22,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:41:52,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:42:22,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:42:52,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:43:22,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:43:52,539 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:44:22,584 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:44:52,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:45:10,544 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:45:22,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:45:52,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:46:22,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:46:52,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:47:22,860 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:47:52,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:48:22,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:48:53,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:49:23,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:49:53,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:50:23,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:50:53,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:51:23,232 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:51:53,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:52:23,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:52:53,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:53:23,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:53:53,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:54:23,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:54:53,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:55:23,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:55:53,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:56:23,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:56:53,749 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:57:23,796 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:57:53,842 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:58:23,891 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:58:53,937 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:59:23,983 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:59:54,029 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:00:10,546 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:00:24,076 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:00:54,121 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:01:24,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:01:54,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:02:24,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:02:54,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:03:24,356 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:03:54,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:04:24,457 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:04:54,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:05:24,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:05:54,593 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:06:24,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:06:54,685 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:07:24,731 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:07:54,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:08:24,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:08:54,874 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:09:24,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:09:54,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:10:25,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:10:55,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:11:25,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:11:55,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:12:25,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:12:55,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:13:25,298 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:13:55,343 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:14:25,389 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:14:55,438 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:15:10,549 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:15:25,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:15:55,529 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:16:25,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:16:55,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:17:25,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:17:55,714 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:18:25,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:18:55,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:19:25,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:19:55,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:20:25,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:20:55,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:21:26,042 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:21:56,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:22:26,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:22:56,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:23:26,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:23:56,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:24:26,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:24:56,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:25:26,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:25:56,457 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:26:26,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:26:56,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:27:26,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:27:56,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:28:26,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:28:56,732 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:29:26,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:29:56,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:30:10,551 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:30:26,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:30:56,916 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:31:26,962 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:31:57,008 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:32:27,054 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:32:57,100 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:33:27,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:33:57,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:34:27,238 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:34:57,285 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:35:27,330 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:35:57,377 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:36:27,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:36:57,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:37:27,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:37:57,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:38:27,604 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:38:57,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:39:27,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:39:57,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:40:27,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:40:57,835 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:41:27,881 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:41:57,927 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:42:27,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:42:58,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:43:28,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:43:58,113 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:44:28,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:44:58,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:45:10,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:45:28,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:45:58,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:46:28,341 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:46:58,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:47:28,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:47:58,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:48:28,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:48:58,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:49:28,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:49:58,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:50:28,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:50:58,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:51:28,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:51:58,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:52:28,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:52:58,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:53:28,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:53:59,036 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:54:29,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:54:59,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:55:29,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:55:59,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:56:29,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:56:59,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:57:29,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:57:59,410 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:58:29,456 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:58:59,502 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:59:29,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:59:59,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:00:10,555 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:00:29,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:00:59,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:01:29,733 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:01:59,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:02:29,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:02:59,875 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:03:29,920 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:03:59,968 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:04:30,013 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:05:00,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:05:30,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:06:00,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:06:30,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:07:00,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:07:30,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:08:00,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:08:30,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:09:00,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:09:30,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:10:00,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:10:30,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:11:00,616 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:11:30,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:12:00,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:12:30,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:13:00,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:13:30,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:14:00,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:14:30,942 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:15:00,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:15:10,557 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:15:31,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:16:01,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:16:31,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:17:01,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:17:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:18:01,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:18:31,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:19:01,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:19:31,415 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:20:01,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:20:31,509 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:21:01,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:21:31,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:22:01,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:22:31,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:23:01,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:23:31,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:24:01,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:24:31,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:25:01,931 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:25:31,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:26:02,024 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:26:32,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:27:02,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:27:32,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:28:02,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:28:32,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:29:02,302 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:29:32,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:30:02,394 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:30:10,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:30:32,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:31:02,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:31:32,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:32:02,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:32:32,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:33:02,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:33:32,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:34:02,765 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:34:32,811 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:35:02,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:35:32,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:36:02,951 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:36:32,997 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:37:03,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:37:33,091 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:38:03,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:38:33,183 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:39:03,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:39:33,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:40:03,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:40:33,369 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:41:03,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:41:33,462 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:42:03,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:42:33,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:43:03,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:43:33,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:44:03,695 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:44:33,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:45:03,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:45:10,561 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:45:33,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:46:03,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:46:33,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:47:03,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:47:34,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:48:04,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:48:34,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:49:04,152 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:49:34,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:50:04,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:50:34,288 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:51:04,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:51:34,378 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:52:04,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:52:34,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:53:04,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:53:34,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:54:04,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:54:34,653 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:55:04,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:55:34,747 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:56:04,794 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:56:34,841 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:57:04,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:57:34,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:58:04,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:58:35,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:59:05,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:59:35,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:00:05,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:00:10,562 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:00:35,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:01:05,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:01:35,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:02:05,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:02:35,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:03:05,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:03:35,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:04:05,542 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:04:35,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:05:05,634 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:05:35,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:06:05,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:06:35,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:07:05,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:07:35,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:08:05,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:08:35,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:09:06,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:09:36,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:10:06,095 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:10:36,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:11:06,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:11:36,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:12:06,277 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:12:36,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:13:06,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:13:36,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:14:06,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:14:36,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:15:06,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:15:10,564 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:15:36,607 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:16:06,652 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:16:36,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:17:06,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:17:36,788 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:18:06,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:18:36,882 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:19:06,930 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:19:36,977 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:20:07,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:20:37,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:21:07,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:21:37,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:22:07,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:22:37,255 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:23:07,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:23:37,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:24:07,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:24:37,440 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:25:07,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:25:37,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:26:07,583 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:26:37,629 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:27:07,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:27:37,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:28:07,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:28:37,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:29:07,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:29:37,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:30:07,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:30:10,566 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:30:38,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:31:08,048 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:31:38,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:32:08,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:32:38,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:33:08,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:33:38,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:34:08,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:34:38,371 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:35:08,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:35:38,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:36:08,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:36:38,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:37:08,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:37:38,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:38:08,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:38:38,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:39:08,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:39:38,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:40:08,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:40:38,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:41:08,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:41:39,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:42:09,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:42:39,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:43:09,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:43:39,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:44:09,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:44:39,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:45:09,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:45:10,568 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:45:39,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:46:09,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:46:39,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:47:09,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:47:39,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:48:09,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:48:39,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:49:09,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:49:39,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:50:09,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:50:39,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:51:09,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:51:39,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:52:09,999 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:52:40,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:53:10,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:53:40,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:54:10,185 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:54:40,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:55:10,277 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:55:40,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:56:10,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:56:40,416 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:57:10,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:57:40,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:58:10,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:58:40,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:59:10,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:59:40,692 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:00:10,570 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:00:10,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:00:40,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:01:10,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:01:40,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:02:10,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:02:40,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:03:11,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:03:41,066 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:04:11,111 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:04:41,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:05:11,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:05:41,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:06:11,297 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:06:41,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:07:11,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:07:41,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:08:11,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:08:41,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:09:11,568 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:09:41,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:10:11,660 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:10:41,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:11:11,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:11:41,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:12:11,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:12:41,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:13:11,941 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:13:41,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:14:12,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:14:42,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:15:10,573 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:15:12,126 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:15:42,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:16:12,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:16:42,264 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:17:12,311 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:17:42,358 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:18:12,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:18:42,449 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:19:12,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:19:42,542 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:20:12,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:20:42,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:21:12,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:21:42,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:22:12,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:22:42,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:23:12,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:23:42,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:24:12,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:24:43,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:25:13,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:25:43,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:26:13,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:26:43,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:27:13,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:27:43,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:28:13,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:28:43,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:29:13,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:29:43,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:30:10,574 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:30:13,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:30:43,555 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:31:13,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:31:43,648 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:32:13,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:32:43,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:33:13,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:33:43,831 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:34:13,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:34:43,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:35:13,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:35:44,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:36:14,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:36:44,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:37:14,153 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:37:44,199 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:38:14,244 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:38:44,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:39:14,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:39:44,381 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:40:14,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:40:44,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:41:14,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:41:44,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:42:14,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:42:44,656 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:43:14,701 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:43:44,746 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:44:14,792 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:44:44,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:45:10,576 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:45:14,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:45:44,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:46:14,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:46:45,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:47:15,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:47:45,113 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:48:15,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:48:45,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:49:15,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:49:45,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:50:15,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:50:45,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:51:15,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:51:45,485 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:52:15,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:52:45,589 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:53:15,635 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:53:45,684 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:54:15,732 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:54:45,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:55:15,825 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:55:45,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:56:15,918 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:56:45,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:57:16,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:57:46,057 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:58:16,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:58:46,149 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:59:16,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:59:46,244 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:00:10,579 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:00:16,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:00:46,334 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:01:16,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:01:46,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:02:16,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:02:46,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:03:16,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:03:46,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:04:16,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:04:46,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:05:16,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:05:46,795 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:06:16,840 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:06:46,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:07:16,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:07:46,980 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:08:17,028 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:08:47,074 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:09:17,120 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:09:47,166 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:10:17,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:10:47,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:11:17,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:11:47,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:12:17,398 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:12:47,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:13:17,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:13:47,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:14:17,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:14:47,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:15:10,581 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:15:17,680 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:15:47,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:16:17,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:16:47,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:17:17,865 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:17:47,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:18:17,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:18:48,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:19:18,052 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:19:48,099 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:20:18,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:20:48,191 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:21:18,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:21:48,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:22:18,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:22:48,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:23:18,421 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:23:48,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:24:18,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:24:48,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:25:18,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:25:48,653 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:26:18,700 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:26:48,747 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:27:18,793 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:27:48,840 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:28:18,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:28:48,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:29:18,981 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:29:49,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:30:10,583 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:30:19,073 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:30:49,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:31:19,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:31:49,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:32:19,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:32:49,304 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:33:19,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:33:49,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:34:19,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:34:49,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:35:19,535 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:35:49,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:36:19,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:36:49,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:37:19,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:37:49,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:38:19,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:38:49,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:39:19,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:39:49,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:40:19,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:40:50,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:41:20,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:41:50,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:42:20,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:42:50,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:43:20,267 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:43:50,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:44:20,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:44:50,406 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:45:10,585 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:45:20,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:45:50,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:46:20,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:46:50,589 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:47:20,635 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:47:50,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:48:20,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:48:50,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:49:20,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:49:50,868 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:50:20,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:50:50,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:51:21,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:51:51,052 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:52:21,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:52:51,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:53:21,191 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:53:51,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:54:21,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:54:51,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:55:21,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:55:51,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:56:21,466 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:56:51,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:57:21,558 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:57:51,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:58:21,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:58:51,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:59:21,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:59:51,790 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:00:10,586 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:00:21,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:00:51,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:01:21,933 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:01:51,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:02:22,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:02:52,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:03:22,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:03:52,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:04:22,211 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:04:52,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:05:22,303 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:05:52,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:06:22,394 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:06:52,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:07:22,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:07:52,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:08:22,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:08:52,624 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:09:22,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:09:52,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:10:22,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:10:52,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:11:22,853 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:11:52,900 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:12:22,947 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:12:52,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:13:23,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:13:53,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:14:23,130 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:14:53,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:15:10,589 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:15:23,223 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:15:53,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:16:23,319 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:16:53,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:17:23,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:17:53,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:18:23,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:18:53,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:19:23,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:19:53,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:20:23,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:20:53,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:21:23,785 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:21:53,833 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:22:23,880 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:22:53,928 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:23:23,977 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:23:54,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:24:24,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:24:54,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:25:24,166 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:25:54,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:26:24,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:26:54,307 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:27:24,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:27:54,402 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:28:24,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:28:54,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:29:24,544 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:29:54,591 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:30:10,590 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:30:24,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:30:54,684 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:31:24,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:31:54,775 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:32:24,821 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:32:54,867 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:33:24,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:33:54,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:34:25,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:34:55,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:35:25,096 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:35:55,142 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:36:25,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:36:55,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:37:25,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:37:55,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:38:25,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:38:55,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:39:25,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:39:55,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:40:25,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:40:55,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:41:25,655 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:41:55,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:42:25,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:42:55,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:43:25,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:43:55,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:44:25,941 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:44:55,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:45:10,592 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:45:26,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:45:56,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:46:26,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:46:56,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:47:26,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:47:56,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:48:26,314 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:48:56,361 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:49:26,409 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:49:56,455 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:50:26,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:50:56,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:51:26,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:51:56,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:52:26,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:52:56,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:53:26,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:53:56,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:54:26,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:54:56,925 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:55:26,973 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:55:57,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:56:27,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:56:57,114 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:57:27,160 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:57:57,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:58:27,254 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:58:57,303 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:59:27,349 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:59:57,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:00:10,595 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:00:27,440 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:00:57,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:01:27,533 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:01:57,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:02:27,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:02:57,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:03:27,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:03:57,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:04:27,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:04:57,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:05:27,902 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:05:57,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:06:27,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:06:58,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:07:28,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:07:58,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:08:28,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:08:58,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:09:28,275 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:09:58,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:10:28,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:10:58,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:11:28,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:11:58,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:12:28,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:12:58,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:13:28,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:13:58,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:14:28,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:14:58,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:15:10,597 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:15:28,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:15:58,876 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:16:28,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:16:58,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:17:29,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:17:59,064 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:18:29,110 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:18:59,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:19:29,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:19:59,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:20:29,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:20:59,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:21:29,383 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:21:59,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:22:29,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:22:59,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:23:29,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:23:59,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:24:29,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:24:59,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:25:29,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:25:59,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:26:29,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:26:59,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:27:29,938 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:27:59,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:28:30,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:29:00,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:29:30,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:30:00,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:30:10,598 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:30:30,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:31:00,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:31:30,312 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:32:00,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:32:30,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:33:00,452 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:33:30,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:34:00,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:34:30,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:35:00,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:35:30,682 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:36:00,728 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:36:30,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:37:00,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:37:30,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:38:00,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:38:30,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:39:01,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:39:31,059 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:40:01,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:40:31,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:41:01,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:41:31,249 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:42:01,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:42:31,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:43:01,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:43:31,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:44:01,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:44:31,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:45:01,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:45:10,601 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:45:31,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:46:01,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:46:31,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:47:01,753 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:47:31,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:48:01,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:48:31,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:49:01,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:49:31,984 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:50:02,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:50:32,077 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:51:02,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:51:32,169 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:52:02,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:52:32,261 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:53:02,307 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:53:32,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:54:02,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:54:32,444 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:55:02,491 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:55:32,537 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:56:02,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:56:32,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:57:02,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:57:32,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:58:02,770 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:58:32,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:59:02,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:59:32,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:00:02,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:00:10,604 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:00:33,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:01:03,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:01:33,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:02:03,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:02:33,183 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:03:03,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:03:33,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:04:03,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:04:33,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:05:03,413 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:05:33,462 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:06:03,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:06:33,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:07:03,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:07:33,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:08:03,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:08:33,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:09:03,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:09:33,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:10:03,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:10:33,925 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:11:03,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:11:34,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:12:04,062 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:12:34,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:13:04,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:13:34,200 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:14:04,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:14:34,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:15:04,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:15:10,606 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:15:34,383 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:16:04,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:16:34,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:17:04,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:17:34,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:18:04,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:18:34,662 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:19:04,708 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:19:34,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:20:04,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:20:34,848 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:21:04,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:21:34,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:22:04,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:22:35,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:23:05,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:23:35,124 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:24:05,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:24:35,216 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:25:05,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:25:35,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:26:05,354 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:26:35,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:27:05,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:27:35,492 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:28:05,538 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:28:35,583 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:29:05,632 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:29:35,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:30:05,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:30:10,608 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:30:35,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:31:05,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:31:35,868 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:32:05,914 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:32:35,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:33:06,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:33:36,065 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:34:06,119 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:34:36,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:35:06,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:35:36,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:36:06,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:36:36,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:37:06,396 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:37:36,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:38:06,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:38:36,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:39:06,582 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:39:36,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:40:06,675 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:40:36,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:41:06,768 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:41:36,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:42:06,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:42:36,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:43:06,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:43:37,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:44:07,048 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:44:37,095 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:45:07,141 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:45:10,610 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:45:37,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:46:07,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:46:37,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:47:07,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:47:37,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:48:07,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:48:37,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:49:07,509 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:49:37,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:50:07,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:50:37,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:51:07,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:51:37,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:52:07,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:52:37,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:53:07,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:53:37,927 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:54:07,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:54:38,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:55:08,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:55:38,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:56:08,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:56:38,200 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:57:08,245 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:57:38,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:58:08,339 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:58:38,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:59:08,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:59:38,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:00:08,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:00:10,612 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:00:38,574 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:01:08,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:01:38,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:02:08,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:02:38,758 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:03:08,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:03:38,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:04:08,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:04:38,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:05:08,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:05:39,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:06:09,088 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:06:39,135 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:07:09,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:07:39,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:08:09,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:08:39,319 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:09:09,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:09:39,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:10:09,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:10:39,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:11:09,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:11:39,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:12:09,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:12:39,688 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:13:09,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:13:39,780 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:14:09,827 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:14:39,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:15:09,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:15:10,614 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:15:39,964 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:16:10,009 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:16:40,057 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:17:10,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:17:40,149 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:18:10,194 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:18:40,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:19:10,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:19:40,334 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:20:10,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:20:40,427 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:21:10,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:21:40,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:22:10,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:22:40,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:23:10,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:23:40,708 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:24:10,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:24:40,802 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:25:10,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:25:40,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:26:10,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:26:40,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:27:11,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:27:41,081 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:28:11,127 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:28:41,173 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:29:11,219 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:29:41,265 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:30:10,616 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:30:11,311 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:30:41,356 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:31:11,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:31:41,449 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:32:11,496 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:32:41,541 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:33:11,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:33:41,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:34:11,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:34:41,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:35:11,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:35:41,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:36:11,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:36:41,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:37:11,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:37:42,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:38:12,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:38:42,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:39:12,144 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:39:42,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:40:12,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:40:42,282 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:41:12,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:41:42,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:42:12,421 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:42:42,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:43:12,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:43:42,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:44:12,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:44:42,654 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:45:10,618 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:45:12,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:45:42,746 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:46:12,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:46:42,838 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:47:12,885 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:47:42,931 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:48:12,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:48:43,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:49:13,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:49:43,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:50:13,162 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:50:43,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:51:13,254 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:51:43,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:52:13,346 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:52:43,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:53:13,438 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:53:43,485 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:54:13,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:54:43,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:55:13,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:55:43,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:56:13,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:56:43,761 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:57:13,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:57:43,853 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:58:13,900 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:58:43,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:59:13,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:59:44,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:00:10,621 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:00:14,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:00:44,132 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:01:14,180 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:01:44,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:02:14,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:02:44,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:03:14,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:03:44,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:04:14,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:04:44,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:05:14,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:05:44,597 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:06:14,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:06:44,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:07:14,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:07:44,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:08:14,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:08:44,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:09:14,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:09:44,971 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:10:15,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:10:45,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:11:15,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:11:45,157 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:12:15,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:12:45,252 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:13:15,297 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:13:45,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:14:15,389 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:14:45,435 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:15:10,623 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:15:15,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:15:45,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:16:15,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:16:45,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:17:15,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:17:45,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:18:15,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:18:45,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:19:15,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:19:45,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:20:15,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:20:45,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:21:16,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:21:46,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:22:16,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:22:46,178 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:23:16,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:23:46,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:24:16,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:24:46,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:25:16,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:25:46,456 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:26:16,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:26:46,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:27:16,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:27:46,640 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:28:16,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:28:46,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:29:16,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:29:46,826 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:30:10,626 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:30:16,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:30:46,918 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:31:16,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:31:47,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:32:17,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:32:47,108 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:33:17,157 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:33:47,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:34:17,249 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:34:47,295 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:35:17,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:35:47,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:36:17,437 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:36:47,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:37:17,528 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:37:47,575 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:38:17,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:38:47,668 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:39:17,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:39:47,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:40:17,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:40:47,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:41:17,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:41:47,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:42:17,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:42:48,036 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:43:18,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:43:48,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:44:18,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:44:48,221 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:45:10,629 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:45:18,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:45:48,312 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:46:18,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:46:48,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:47:18,448 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:47:48,494 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:48:18,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:48:48,587 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:49:18,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:49:48,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:50:18,729 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:50:48,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:51:18,821 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:51:48,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:52:18,914 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:52:48,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:53:19,008 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:53:49,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:54:19,100 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:54:49,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:55:19,194 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:55:49,241 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:56:19,288 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:56:49,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:57:19,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:57:49,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:58:19,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:58:49,518 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:59:19,564 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:59:49,612 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:00:10,632 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:00:19,658 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:00:49,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:01:19,749 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:01:49,796 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:02:19,842 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:02:49,889 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:03:19,935 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:03:49,982 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:04:20,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:04:50,075 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:05:20,120 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:05:50,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:06:20,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:06:50,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:07:20,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:07:50,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:08:20,397 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:08:50,443 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:09:20,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:09:50,535 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:10:20,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:10:50,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:11:20,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:11:50,720 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:12:20,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:12:50,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:13:20,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:13:50,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:14:20,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:14:51,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:15:10,634 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:15:21,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:15:51,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:16:21,142 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:16:51,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:17:21,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:17:51,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:18:21,327 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:18:51,373 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:19:21,419 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:19:51,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:20:21,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:20:51,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:21:21,604 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:21:51,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:22:21,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:22:51,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:23:21,787 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:23:51,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:24:21,881 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:24:51,926 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:25:21,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:25:52,024 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:26:22,072 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:26:52,122 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:27:22,168 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:27:52,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:28:22,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:28:52,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:29:22,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:29:52,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:30:10,637 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:30:22,450 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:30:52,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:31:22,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:31:52,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:32:22,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:32:52,683 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:33:22,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:33:52,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:34:22,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:34:52,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:35:22,916 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:35:52,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:36:23,009 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:36:53,056 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:37:23,104 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:37:53,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:38:23,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:38:53,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:39:23,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:39:53,335 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:40:23,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:40:53,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:41:23,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:41:53,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:42:23,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:42:53,618 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:43:23,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:43:53,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:44:23,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:44:53,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:45:10,639 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:45:23,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:45:53,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:46:23,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:46:53,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:47:24,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:47:54,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:48:24,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:48:54,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:24,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:49,749 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Coffee_holder_v1_M117.gcode
2018-11-06 12:49:54,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:54,688 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:50:03,630 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.29s
2018-11-06 12:50:04,012 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.28s
2018-11-06 12:50:04,436 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.28s
2018-11-06 12:50:05,390 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.82s
2018-11-06 12:50:05,900 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.31s
2018-11-06 12:50:08,375 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Coffee_holder_v1_M117.gcode finished, needed 18.63s
2018-11-06 12:50:13,140 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:50:24,320 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:50:41,100 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.10rc1...
2018-11-06 12:50:54,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:51:24,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:51:54,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:52:17,082 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.10rc1 successful!
2018-11-06 12:52:18,072 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:52:18,076 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 12:52:18,224 - octoprint.server - INFO - Shutting down...
2018-11-06 12:52:18,235 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 12:52:18,244 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 12:52:18,262 - octoprint.events - INFO - Event loop shut down
2018-11-06 12:52:19,348 - octoprint.server - INFO - Goodbye!
2018-11-06 12:52:25,042 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:52:25,046 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 12:52:25,046 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:52:25,141 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 12:52:25,471 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 12:52:25,554 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:52:26,359 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 12:52:29,535 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 12:52:29,675 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 12:52:30,149 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 12:52:30,473 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:52:30,477 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 12:52:30,536 - octoprint.server - INFO - Intermediary server started
2018-11-06 12:52:30,538 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:52:31,069 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:52:31,185 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 12:52:33,392 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 12:52:33,416 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 12:52:33,417 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 12:52:33,467 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 12:52:33,948 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 12:52:38,031 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:42,058 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 12:52:42,060 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:52:42,061 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:52:42,068 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 12:52:42,109 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 12:52:42,136 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 12:52:42,157 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 12:52:42,211 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 12:52:42,836 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 12:52:43,290 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 12:52:43,295 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 12:52:43,297 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 12:52:43,361 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 12:52:44,703 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 12:52:44,812 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-11-06 12:52:47,824 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-11-06 12:52:48,627 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 12:52:48,671 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 12:52:48,823 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 12:52:48,874 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 12:52:48,957 - octoprint.plugins.pi_support - WARNING - This Raspberry Pi is reporting problems that might lead to bad performance or errors caused by overheating or insufficient power.
!!! UNDERVOLTAGE REPORTED !!! Make sure that the power supply and power cable are capable of supplying enough voltage and current to your Pi.
2018-11-06 12:52:48,978 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 12:52:48,989 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 12:52:49,007 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 12:52:49,011 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 12:52:49,012 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 12:52:49,036 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 12:52:49,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:52:49,281 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:52:49,313 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:52:49,845 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:52:50,527 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 12:52:51,537 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:52:52,198 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,199 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,286 - tornado.access - WARNING - 404 GET /api/plugin/octopi_support (192.168.0.25) 570.09ms
2018-11-06 12:52:52,742 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,875 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:53,131 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:53:00,746 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:53:00,799 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:53:05,202 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:53:09,510 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:53:09,514 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:53:09,515 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:53:19,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:53:23,309 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:53:23,455 - octoprint.server.preemptive_cache - INFO - ... done in 32.93s
2018-11-06 12:53:37,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:53:38,142 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:53:46,470 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:53:49,909 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:54:19,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:54:38,918 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 12:54:49,002 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:54:49,084 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:54:49,091 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 12:54:50,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:55:14,268 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 12:55:20,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:55:42,924 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:55:43,230 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:55:43,244 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 12:55:50,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:56:03,568 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 12:56:20,161 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:56:21,470 - octoprint.server.api.system - INFO - Performing command for core:shutdown: sudo shutdown -h now
2018-11-06 12:56:21,654 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 12:56:21,789 - octoprint.server - INFO - Shutting down...
2018-11-06 12:56:22,118 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 12:56:22,120 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 12:56:22,132 - octoprint.events - INFO - Event loop shut down
2018-11-06 12:56:23,158 - octoprint.server - INFO - Goodbye!
2018-11-06 12:56:41,595 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:56:41,598 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 12:56:41,600 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:56:41,757 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 12:56:41,768 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 12:56:41,915 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:56:42,892 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 12:57:38,239 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 12:57:38,452 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 12:57:39,037 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 12:57:39,496 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:57:39,506 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 12:57:39,606 - octoprint.server - INFO - Intermediary server started
2018-11-06 12:57:39,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:57:40,145 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:57:40,266 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 12:57:42,514 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 12:57:42,543 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 12:57:42,545 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 12:57:42,600 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 12:57:43,106 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-11-06 12:57:43,118 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 12:57:47,917 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:57:51,900 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 12:57:51,902 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:57:51,902 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:57:51,907 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 12:57:51,955 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 12:57:51,988 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 12:57:52,013 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 12:57:52,074 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 12:57:52,824 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 12:57:53,284 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 12:57:53,289 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 12:57:53,315 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 12:57:53,397 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 12:57:53,721 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:57:54,427 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:57:55,203 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 12:57:56,436 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 12:57:56,457 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 12:57:56,514 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 12:57:56,564 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 12:57:56,578 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 12:57:56,581 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 12:57:56,639 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 12:57:56,642 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 12:57:56,644 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 12:57:56,737 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 12:57:56,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:57:57,045 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:57:57,195 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:57:57,752 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 12:58:02,210 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:58:02,212 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:58:02,213 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:58:04,415 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:58:04,894 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:04,917 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:58:10,531 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:27,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:58:43,589 - octoprint.server.preemptive_cache - INFO - ... done in 45.84s
2018-11-06 12:58:43,651 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 12:58:46,051 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:58:46,517 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:52,284 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:58:57,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:27,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:57,996 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:59,328 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:59:59,609 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:59:59,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:00:25,759 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:00:28,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:00:40,396 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-11-06 13:00:40,412 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:00:58,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:01:10,462 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:01:28,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:01:57,308 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:01:57,471 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:01:57,492 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:01:58,172 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:02:11,961 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:02:16,318 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:02:16,394 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2018-11-06 13:02:16,408 - octoprint.plugins.filamentreload - INFO - Error: Disabling filament sensor.
2018-11-06 13:02:16,411 - octoprint.plugin - ERROR - Error while calling plugin filamentreload
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 226, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload/__init__.py", line 113, in on_event
GPIO.remove_event_detect(self.pin)
RuntimeError: Please set pin numbering mode using GPIO.setmode(GPIO.BOARD) or GPIO.setmode(GPIO.BCM)
2018-11-06 13:02:28,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:02:58,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:03:28,306 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:03:58,352 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:04:28,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:04:33,647 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:04:41,711 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:04:41,713 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:04:42,019 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:04:46,926 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:04:51,186 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.9...
2018-11-06 13:04:58,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:05:28,545 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:05:33,544 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.9 successful!
2018-11-06 13:05:34,616 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:05:34,620 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 13:05:34,825 - octoprint.server - INFO - Shutting down...
2018-11-06 13:05:35,339 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 13:05:35,341 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 13:05:35,353 - octoprint.events - INFO - Event loop shut down
2018-11-06 13:05:36,404 - octoprint.server - INFO - Goodbye!
2018-11-06 13:05:42,433 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:05:42,436 - octoprint.startup - INFO - Starting OctoPrint 1.3.9
2018-11-06 13:05:42,437 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:05:42,527 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 13:05:42,534 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 13:05:42,613 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:05:43,392 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 13:05:46,374 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 13:05:46,512 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 13:05:46,881 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 13:05:47,201 - octoprint.plugin.core - INFO - Found 30 plugin(s) providing 26 mixin implementations, 31 hook handlers
2018-11-06 13:05:47,205 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 13:05:47,264 - octoprint.server - INFO - Intermediary server started
2018-11-06 13:05:47,266 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:05:47,918 - octoprint.plugin.core - INFO - Found 30 plugin(s) providing 26 mixin implementations, 31 hook handlers
2018-11-06 13:05:48,037 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 13:05:50,265 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 13:05:50,289 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 13:05:50,290 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 13:05:50,332 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 13:05:50,813 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 13:05:54,946 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:05:58,994 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 13:05:58,996 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:05:58,998 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:05:59,000 - octoprint.plugin.core - INFO - Initialized 26 plugin implementation(s)
2018-11-06 13:05:59,042 - octoprint.plugin.core - INFO - 30 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 13:05:59,069 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 13:05:59,091 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 13:05:59,150 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 13:05:59,585 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 13:05:59,645 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 13:05:59,649 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 13:05:59,700 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 13:05:59,710 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 13:05:59,943 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:06:00,505 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:06:01,604 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 13:06:03,995 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-11-06 13:06:04,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-11-06 13:06:04,149 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 13:06:04,178 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 13:06:04,192 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 13:06:04,238 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 13:06:04,293 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 13:06:04,295 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 13:06:04,296 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 13:06:04,320 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 13:06:04,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:06:04,362 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:06:05,351 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:06:06,344 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:06:06,492 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 13:06:07,466 - tornado.access - WARNING - 404 GET /api/plugin/pi_support (192.168.0.25) 82.50ms
2018-11-06 13:06:08,851 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,328 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,598 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:10,267 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:17,799 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:06:17,800 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:06:21,816 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:06:34,984 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:06:41,911 - octoprint.server.preemptive_cache - INFO - ... done in 35.42s
2018-11-06 13:06:51,010 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 13:06:54,687 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:07:05,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:07:33,539 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:07:33,586 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2018-11-06 13:07:33,618 - octoprint.plugins.filamentreload - INFO - Error: Disabling filament sensor.
2018-11-06 13:07:33,621 - octoprint.plugin - ERROR - Error while calling plugin filamentreload
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload/__init__.py", line 113, in on_event
GPIO.remove_event_detect(self.pin)
RuntimeError: Please set pin numbering mode using GPIO.setmode(GPIO.BOARD) or GPIO.setmode(GPIO.BCM)
2018-11-06 13:07:35,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:07:57,212 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:07:57,297 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:07:57,304 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:07:57,320 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-11-06 13:07:57,431 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-11-06 13:07:57,493 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-11-06 13:07:57,580 - octoprint.util.comm - INFO - Printer reports firmware name "Smoothieware,"
2018-11-06 13:08:05,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:08:35,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:09:05,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:09:35,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:10:05,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:10:35,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:05,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:35,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:36,175 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:12:05,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:12:35,555 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:05,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:35,652 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:54,593 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.10rc1...
2018-11-06 13:14:05,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:14:33,682 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.10rc1 successful!
2018-11-06 13:14:34,691 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:14:34,695 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 13:14:34,845 - octoprint.server - INFO - Shutting down...
2018-11-06 13:14:35,302 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 13:14:35,312 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 13:14:35,315 - octoprint.events - INFO - Event loop shut down
2018-11-06 13:14:35,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:14:36,360 - octoprint.server - INFO - Goodbye!
2018-11-06 13:14:42,054 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:14:42,058 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 13:14:42,059 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:14:42,149 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 13:14:42,495 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 13:14:42,574 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:14:43,367 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 13:14:46,581 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 13:14:46,722 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 13:14:47,196 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 13:14:47,659 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 13:14:47,664 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 13:14:47,722 - octoprint.server - INFO - Intermediary server started
2018-11-06 13:14:47,723 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:14:48,253 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 13:14:48,369 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 13:14:50,581 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 13:14:50,605 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 13:14:50,606 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 13:14:50,654 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 13:14:51,131 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 13:14:51,143 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 13:14:55,223 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:14:59,255 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 13:14:59,258 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:14:59,259 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:14:59,266 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 13:14:59,308 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 13:14:59,334 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 13:14:59,355 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 13:14:59,410 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 13:15:00,009 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 13:15:00,167 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 13:15:00,172 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 13:15:00,173 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 13:15:00,249 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 13:15:00,287 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:15:02,177 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 13:15:02,179 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:15:04,167 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 13:15:04,247 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 13:15:04,280 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 13:15:04,399 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 13:15:04,515 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 13:15:04,531 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 13:15:04,551 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 13:15:04,553 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 13:15:04,554 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 13:15:04,632 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 13:15:04,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:15:04,911 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:15:05,118 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:15:06,562 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 13:15:06,758 - octoprint.server.preemptive_cache - INFO - ... done in 0.20s
2018-11-06 13:15:06,785 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:15:07,783 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:07,887 - tornado.access - WARNING - 404 GET /api/plugin/octopi_support (192.168.0.25) 46.12ms
2018-11-06 13:15:09,395 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:09,953 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,151 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,239 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,566 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:15,317 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:18,127 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:15:18,128 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:15:22,970 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:15:27,304 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:27,306 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:15:27,308 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:15:35,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:15:42,683 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:15:43,144 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:51,233 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 13:15:55,391 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:15:55,466 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:15:55,472 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:16:05,178 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:16:13,352 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:16:35,224 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:17:05,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:17:35,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:18:05,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:18:35,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:19:05,459 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
|
RuntimeError
|
def _openSerial(self):
def default(_, port, baudrate, read_timeout):
if port is None or port == "AUTO":
# no known port, try auto detection
self._changeState(self.STATE_DETECT_SERIAL)
port = self._detect_port()
if port is None:
error_text = "Failed to autodetect serial port, please set it manually."
self._trigger_error(error_text, "autodetect_port")
self._log(error_text)
return None
# connect to regular serial port
self._log("Connecting to: %s" % port)
if baudrate == 0:
baudrates = baudrateList()
serial_obj = serial.Serial(
str(port),
baudrates[0],
timeout=read_timeout,
write_timeout=10000,
parity=serial.PARITY_ODD,
)
else:
serial_obj = serial.Serial(
str(port),
baudrate,
timeout=read_timeout,
write_timeout=10000,
parity=serial.PARITY_ODD,
)
serial_obj.close()
serial_obj.parity = serial.PARITY_NONE
serial_obj.open()
return BufferedReadlineWrapper(serial_obj)
serial_factories = self._serial_factory_hooks.items() + [("default", default)]
for name, factory in serial_factories:
try:
serial_obj = factory(
self,
self._port,
self._baudrate,
settings().getFloat(["serial", "timeout", "connection"]),
)
except:
exception_string = get_exception_string()
self._trigger_error("Connection error, see Terminal tab", "connection")
error_message = (
"Unexpected error while connecting to serial port: %s %s (hook %s)"
% (self._port, exception_string, name)
)
self._log(error_message)
self._logger.exception(error_message)
if "failed to set custom baud rate" in exception_string.lower():
self._log(
"Your installation does not support custom baudrates (e.g. 250000) for connecting to your printer. This is a problem of the pyserial library that OctoPrint depends on. Please update to a pyserial version that supports your baudrate or switch your printer's firmware to a standard baudrate (e.g. 115200). See https://github.com/foosel/OctoPrint/wiki/OctoPrint-support-for-250000-baud-rate-on-Raspbian"
)
return False
if serial_obj is not None:
# first hook to succeed wins, but any can pass on to the next
self._changeState(self.STATE_OPEN_SERIAL)
self._serial = serial_obj
self._clear_to_send.reset()
return True
return False
|
def _openSerial(self):
def default(_, port, baudrate, read_timeout):
if port is None or port == "AUTO":
# no known port, try auto detection
self._changeState(self.STATE_DETECT_SERIAL)
port = self._detect_port()
if port is None:
error_text = "Failed to autodetect serial port, please set it manually."
self._trigger_error(error_text, "autodetect_port")
self._log(error_text)
return None
# connect to regular serial port
self._log("Connecting to: %s" % port)
if baudrate == 0:
baudrates = baudrateList()
serial_obj = serial.Serial(
str(port),
baudrates[0],
timeout=read_timeout,
write_timeout=10000,
parity=serial.PARITY_ODD,
)
else:
serial_obj = serial.Serial(
str(port),
baudrate,
timeout=read_timeout,
write_timeout=10000,
parity=serial.PARITY_ODD,
)
serial_obj.close()
serial_obj.parity = serial.PARITY_NONE
serial_obj.open()
return BufferedReadlineWrapper(serial_obj)
serial_factories = self._serial_factory_hooks.items() + [("default", default)]
for name, factory in serial_factories:
try:
serial_obj = factory(
self,
self._port,
self._baudrate,
settings().getFloat(["serial", "timeout", "connection"]),
)
except:
exception_string = get_exception_string()
self._trigger_error("Connection error, see Terminal tab", "connection")
error_message = (
"Unexpected error while connecting to serial port: %s %s (hook %s)"
% (self._port, exception_string, name)
)
self._log(error_message)
self._logger.exception(error_message)
if "failed to set custom baud rate" in exception_string.lower():
self._log(
"Your installation does not support custom baudrates (e.g. 250000) for connecting to your printer. This is a problem of the pyserial library that OctoPrint depends on. Please update to a pyserial version that supports your baudrate or switch your printer's firmware to a standard baudrate (e.g. 115200). See https://github.com/foosel/OctoPrint/wiki/OctoPrint-support-for-250000-baud-rate-on-Raspbian"
)
return False
if serial_obj is not None:
# first hook to succeed wins, but any can pass on to the next
self._changeState(self.STATE_OPEN_SERIAL)
self._serial = serial_obj
self._clear_to_send.clear()
return True
return False
|
https://github.com/OctoPrint/OctoPrint/issues/2872
|
2018-11-05 15:45:10,454 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 15:45:10,459 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2018-11-05 15:45:10,460 - octoprint.server - INFO - OctoPrint 1.3.9
2018-11-05 15:45:10,464 - octoprint.plugin.core - INFO - 30 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-05 15:45:10,485 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-05 15:45:10,486 - octoprint.server - INFO - ------------------------------------------------------------------------------
2018-11-05 15:45:26,045 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:45:56,092 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:46:26,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:46:56,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:47:26,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:47:56,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:48:26,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:48:56,379 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:49:26,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:49:56,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:50:26,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:50:56,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:51:26,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:51:56,662 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:52:26,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:52:56,757 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:53:26,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:53:56,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:54:26,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:54:56,951 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:55:27,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:55:57,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:56:27,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:56:57,146 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:57:27,193 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:57:57,242 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:58:27,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:58:57,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:59:27,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 15:59:57,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:00:10,456 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:00:27,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:00:57,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:01:27,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:01:57,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:02:27,668 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:02:57,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:03:27,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:03:57,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:04:27,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:04:57,906 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:05:27,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:05:58,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:06:28,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:06:58,096 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:07:28,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:07:58,190 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:08:28,258 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:08:58,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:09:28,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:09:58,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:10:28,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:10:58,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:11:28,544 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:11:58,592 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:12:28,638 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:12:58,688 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:13:28,734 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:13:58,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:14:28,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:14:58,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:15:10,459 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:15:28,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:15:58,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:16:29,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:16:59,066 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:17:29,112 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:17:59,160 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:18:29,208 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:18:59,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:19:29,302 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:19:59,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:20:29,398 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:20:59,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:21:29,496 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:21:59,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:22:29,592 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:22:59,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:23:29,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:23:59,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:24:29,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:24:59,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:25:29,880 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:25:59,926 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:26:29,974 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:27:00,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:27:30,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:28:00,119 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:28:30,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:29:00,214 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:29:30,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:30:00,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:30:10,461 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:30:30,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:31:00,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:31:30,453 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:32:00,502 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:32:30,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:33:00,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:33:30,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:34:00,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:34:30,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:35:00,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:35:30,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:36:00,884 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:36:30,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:37:00,979 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:37:31,028 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:38:01,080 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:38:31,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:39:01,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:39:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:40:01,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:40:31,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:41:01,371 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:41:31,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:42:01,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:42:31,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:43:01,562 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:43:31,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:44:01,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:44:31,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:45:01,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:45:10,463 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 16:45:31,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:46:01,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:46:31,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:47:01,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:47:31,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:48:02,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:48:32,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:49:02,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:49:32,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:50:02,223 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:50:32,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:51:02,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:51:32,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:52:02,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:52:32,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:53:02,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:53:32,562 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:54:02,609 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:54:32,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:55:02,704 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:55:32,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:56:02,798 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:56:32,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:57:02,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:57:32,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:58:02,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:58:33,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:59:03,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 16:59:33,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:00:03,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:00:10,466 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:00:33,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:01:03,284 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:01:33,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:02:03,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:02:33,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:03:03,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:03:33,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:04:03,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:04:33,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:05:03,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:05:33,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:06:03,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:06:33,808 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:07:03,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:07:33,906 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:08:03,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:08:34,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:09:04,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:09:34,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:10:04,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:10:34,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:11:04,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:11:34,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:12:04,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:12:34,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:13:04,424 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:13:34,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:14:04,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:14:34,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:15:04,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:15:10,468 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:15:34,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:16:04,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:16:34,757 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:17:04,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:17:34,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:18:04,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:18:34,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:19:04,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:19:35,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:20:05,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:20:35,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:21:05,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:21:35,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:22:05,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:22:35,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:23:05,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:23:35,426 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:24:05,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:24:35,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:25:05,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:25:35,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:26:05,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:26:35,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:27:05,761 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:27:35,808 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:28:05,855 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:28:35,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:29:05,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:29:36,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:30:06,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:30:10,470 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:30:36,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:31:06,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:31:36,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:32:06,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:32:36,282 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:33:06,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:33:36,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:34:06,424 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:34:36,471 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:35:06,518 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:35:36,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:36:06,612 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:36:36,660 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:37:06,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:37:36,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:38:06,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:38:36,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:39:06,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:39:36,947 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:40:06,995 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:40:37,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:41:07,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:41:37,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:42:07,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:42:37,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:43:07,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:43:37,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:44:07,373 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:44:37,419 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:45:07,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:45:10,473 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 17:45:37,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:46:07,563 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:46:37,610 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:47:07,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:47:37,704 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:48:07,751 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:48:37,797 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:49:07,844 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:49:37,891 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:50:07,938 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:50:37,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:51:08,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:51:38,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:52:08,126 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:52:38,173 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:53:08,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:53:38,269 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:54:08,316 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:54:38,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:55:08,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:55:38,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:56:08,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:56:38,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:57:08,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:57:38,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:58:08,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:58:38,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:59:08,795 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 17:59:38,841 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:00:08,890 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:00:10,475 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:00:38,936 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:01:08,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:01:39,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:02:09,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:02:39,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:03:09,172 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:03:39,219 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:04:09,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:04:39,314 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:05:09,362 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:05:39,410 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:06:09,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:06:39,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:07:09,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:07:39,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:08:09,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:08:39,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:09:09,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:09:39,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:10:09,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:10:39,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:11:09,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:11:39,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:12:10,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:12:40,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:13:10,134 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:13:40,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:14:10,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:14:40,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:15:10,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:15:10,478 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:15:40,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:16:10,418 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:16:40,464 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:17:10,514 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:17:40,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:18:10,610 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:18:40,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:19:10,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:19:40,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:20:10,803 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:20:40,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:21:10,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:21:40,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:22:10,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:22:41,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:23:11,089 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:23:41,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:24:11,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:24:41,232 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:25:11,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:25:41,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:26:11,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:26:41,423 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:27:11,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:27:41,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:28:11,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:28:41,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:29:11,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:29:41,714 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:30:10,480 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:30:11,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:30:41,809 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:31:11,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:31:41,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:32:11,964 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:32:42,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:33:12,058 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:33:42,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:34:12,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:34:42,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:35:12,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:35:42,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:36:12,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:36:42,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:37:12,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:37:42,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:38:12,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:38:42,586 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:39:12,632 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:39:42,682 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:40:12,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:40:42,778 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:41:12,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:41:42,871 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:42:12,917 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:42:42,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:43:13,010 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:43:43,056 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:44:13,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:44:43,153 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:45:10,483 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 18:45:13,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:45:43,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:46:13,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:46:43,341 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:47:13,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:47:43,435 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:48:13,482 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:48:43,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:49:13,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:49:43,626 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:50:13,674 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:50:43,721 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:51:13,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:51:43,816 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:52:13,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:52:43,912 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:53:13,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:53:44,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:54:14,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:54:44,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:55:14,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:55:44,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:56:14,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:56:44,293 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:57:14,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:57:44,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:58:14,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:58:44,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:59:14,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 18:59:44,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:00:10,486 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:00:14,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:00:44,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:01:14,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:01:44,768 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:02:14,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:02:44,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:03:14,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:03:44,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:04:15,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:04:45,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:05:15,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:05:45,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:06:15,195 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:06:45,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:07:15,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:07:45,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:08:15,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:08:45,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:09:15,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:09:45,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:10:15,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:10:45,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:11:15,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:11:45,720 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:12:15,770 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:12:45,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:13:15,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:13:45,912 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:14:15,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:14:46,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:15:10,488 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:15:16,055 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:15:46,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:16:16,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:16:46,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:17:16,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:17:46,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:18:16,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:18:46,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:19:16,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:19:46,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:20:16,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:20:46,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:21:16,629 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:21:46,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:22:16,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:22:46,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:23:16,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:23:46,867 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:24:16,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:24:46,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:25:17,007 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:25:47,055 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:26:17,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:26:47,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:27:17,198 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:27:47,248 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:28:17,295 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:28:47,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:29:17,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:29:47,441 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:30:10,491 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:30:17,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:30:47,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:31:17,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:31:47,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:32:17,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:32:47,728 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:33:17,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:33:47,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:34:17,874 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:34:47,922 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:35:17,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:35:48,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:36:18,065 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:36:48,112 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:37:18,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:37:48,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:38:18,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:38:48,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:39:18,352 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:39:48,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:40:18,450 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:40:48,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:41:18,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:41:48,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:42:18,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:42:48,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:43:18,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:43:48,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:44:18,858 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:44:48,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:45:10,493 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 19:45:18,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:45:49,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:46:19,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:46:49,099 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:47:19,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:47:49,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:48:19,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:48:49,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:49:19,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:49:49,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:50:19,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:50:49,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:51:19,530 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:51:49,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:52:19,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:52:49,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:53:19,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:53:49,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:54:19,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:54:49,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:55:19,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:55:49,957 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:56:20,006 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:56:50,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:57:20,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:57:50,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:58:20,196 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:58:50,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:59:20,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 19:59:50,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:00:10,495 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:00:20,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:00:50,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:01:20,480 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:01:50,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:02:20,575 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:02:50,622 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:03:20,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:03:50,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:04:20,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:04:50,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:05:20,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:05:50,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:06:20,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:06:51,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:07:21,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:07:51,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:08:21,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:08:51,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:09:21,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:09:51,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:10:21,330 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:10:51,378 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:11:21,427 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:11:51,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:12:21,523 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:12:51,571 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:13:21,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:13:51,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:14:21,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:14:51,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:15:10,497 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:15:21,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:15:51,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:16:21,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:16:51,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:17:22,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:17:52,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:18:22,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:18:52,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:19:22,193 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:19:52,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:20:22,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:20:52,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:21:22,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:21:52,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:22:22,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:22:52,529 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:23:22,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:23:52,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:24:22,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:24:52,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:25:22,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:25:52,813 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:26:22,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:26:52,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:27:22,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:27:53,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:28:23,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:28:53,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:29:23,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:29:53,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:30:10,499 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:30:23,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:30:53,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:31:23,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:31:53,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:32:23,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:32:53,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:33:23,528 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:33:53,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:34:23,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:34:53,670 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:35:23,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:35:53,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:36:23,813 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:36:53,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:37:23,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:37:53,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:38:24,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:38:54,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:39:24,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:39:54,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:40:24,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:40:54,239 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:41:24,285 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:41:54,332 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:42:24,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:42:54,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:43:24,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:43:54,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:44:24,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:44:54,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:45:10,501 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 20:45:24,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:45:54,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:46:24,763 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:46:54,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:47:24,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:47:54,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:48:24,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:48:55,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:49:25,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:49:55,101 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:50:25,148 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:50:55,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:51:25,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:51:55,299 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:52:25,345 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:52:55,393 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:53:25,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:53:55,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:54:25,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:54:55,607 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:55:25,655 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:55:55,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:56:25,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:56:55,797 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:57:25,844 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:57:55,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:58:25,942 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:58:55,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:59:26,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 20:59:56,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:00:10,504 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:00:26,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:00:56,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:01:26,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:01:56,286 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:02:26,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:02:56,381 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:03:26,430 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:03:56,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:04:26,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:04:56,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:05:26,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:05:56,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:06:26,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:06:56,765 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:07:26,816 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:07:56,865 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:08:26,915 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:08:56,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:09:27,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:09:57,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:10:27,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:10:57,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:11:27,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:11:57,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:12:27,298 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:12:57,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:13:27,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:13:57,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:14:27,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:14:57,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:15:10,506 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:15:27,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:15:57,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:16:27,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:16:57,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:17:27,772 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:17:57,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:18:27,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:18:57,922 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:19:27,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:19:58,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:20:28,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:20:58,114 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:21:28,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:21:58,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:22:28,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:22:58,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:23:28,358 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:23:58,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:24:28,455 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:24:58,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:25:28,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:25:58,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:26:28,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:26:58,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:27:28,739 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:27:58,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:28:28,838 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:28:58,889 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:29:28,936 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:29:58,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:30:10,509 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:30:29,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:30:59,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:31:29,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:31:59,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:32:29,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:32:59,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:33:29,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:33:59,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:34:29,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:34:59,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:35:29,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:35:59,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:36:29,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:36:59,658 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:37:29,709 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:37:59,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:38:29,802 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:38:59,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:39:29,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:39:59,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:40:29,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:41:00,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:41:30,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:42:00,136 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:42:30,182 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:43:00,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:43:30,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:44:00,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:44:30,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:45:00,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:45:10,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 21:45:30,471 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:46:00,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:46:30,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:47:00,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:47:30,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:48:00,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:48:21,833 - octoprint.util.comm - ERROR - Unexpected error while reading from serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 2581, in _readline
ret = self._serial.readline()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 4615, in readline
c = self.read(1)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 501, in read
'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)
2018-11-05 21:48:21,847 - octoprint.util.comm - ERROR - Unexpected error while writing to serial port
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/comm.py", line 3189, in _do_send_without_checksum
result = self._serial.write(to_send)
File "/home/pi/oprint/local/lib/python2.7/site-packages/serial/serialposix.py", line 571, in write
raise SerialException('write failed: {}'.format(e))
SerialException: write failed: [Errno 5] Input/output error
2018-11-05 21:48:21,881 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2018-11-05 21:48:21,885 - octoprint.util.comm - ERROR - Please see https://faq.octoprint.org/serialerror for possible reasons of this.
2018-11-05 21:48:21,894 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline (Error: SerialException: 'device reports readiness to read but returned no data (device disconnected or multiple access on port?)' @ comm.py:_readline:2581)"
2018-11-05 21:48:30,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:49:00,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:49:30,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:50:00,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:50:30,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:51:00,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:51:31,041 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:52:01,086 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:52:31,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:53:01,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:53:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:54:01,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:54:31,320 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:55:01,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:55:31,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:56:01,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:56:31,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:57:01,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:57:31,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:58:01,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:58:31,692 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:59:01,739 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 21:59:31,788 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:00:01,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:00:10,514 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:00:31,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:01:01,929 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:01:31,973 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:02:02,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:02:32,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:03:02,115 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:03:32,162 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:04:02,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:04:32,258 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:05:02,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:05:32,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:06:02,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:06:32,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:07:02,492 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:07:32,538 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:08:02,584 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:08:32,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:09:02,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:09:32,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:10:02,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:10:32,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:11:02,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:11:32,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:12:02,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:12:33,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:13:03,045 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:13:33,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:14:03,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:14:33,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:15:03,235 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:15:10,517 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:15:33,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:16:03,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:16:33,376 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:17:03,423 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:17:33,469 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:18:03,514 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:18:33,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:19:03,605 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:19:33,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:20:03,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:20:33,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:21:03,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:21:33,839 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:22:03,885 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:22:33,933 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:23:03,981 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:23:34,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:24:04,076 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:24:34,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:25:04,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:25:34,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:26:04,263 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:26:34,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:27:04,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:27:34,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:28:04,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:28:34,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:29:04,539 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:29:34,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:30:04,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:30:10,520 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:30:34,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:31:04,721 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:31:34,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:32:04,812 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:32:34,858 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:33:04,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:33:34,950 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:34:04,996 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:34:35,042 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:35:05,088 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:35:35,135 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:36:05,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:36:35,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:37:05,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:37:35,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:38:05,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:38:35,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:39:05,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:39:35,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:40:05,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:40:35,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:41:05,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:41:35,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:42:05,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:42:35,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:43:05,827 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:43:35,875 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:44:05,921 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:44:35,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:45:06,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:45:10,522 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 22:45:36,059 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:46:06,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:46:36,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:47:06,195 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:47:36,241 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:48:06,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:48:36,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:49:06,379 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:49:36,426 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:50:06,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:50:36,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:51:06,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:51:36,616 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:52:06,663 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:52:36,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:53:06,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:53:36,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:54:06,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:54:36,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:55:06,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:55:36,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:56:07,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:56:37,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:57:07,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:57:37,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:58:07,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:58:37,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:59:07,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 22:59:37,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:00:07,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:00:10,524 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:00:37,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:01:07,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:01:37,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:02:07,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:02:37,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:03:07,677 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:03:37,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:04:07,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:04:37,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:05:07,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:05:37,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:06:07,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:06:38,002 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:07:08,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:07:38,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:08:08,138 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:08:38,184 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:09:08,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:09:38,275 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:10:08,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:10:38,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:11:08,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:11:38,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:12:08,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:12:38,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:13:08,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:13:38,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:14:08,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:14:38,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:15:08,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:15:10,525 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:15:38,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:16:08,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:16:38,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:17:08,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:17:39,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:18:09,064 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:18:39,110 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:19:09,158 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:19:39,202 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:20:09,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:20:39,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:21:09,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:21:39,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:22:09,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:22:39,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:23:09,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:23:39,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:24:09,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:24:39,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:25:09,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:25:39,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:26:09,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:26:39,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:27:09,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:27:39,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:28:09,992 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:28:40,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:29:10,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:29:40,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:30:10,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:30:10,528 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:30:40,221 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:31:10,267 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:31:40,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:32:10,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:32:40,409 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:33:10,454 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:33:40,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:34:10,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:34:40,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:35:10,644 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:35:40,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:36:10,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:36:40,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:37:10,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:37:40,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:38:10,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:38:40,971 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:39:11,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:39:41,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:40:11,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:40:41,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:41:11,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:41:41,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:42:11,293 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:42:41,339 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:43:11,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:43:41,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:44:11,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:44:41,525 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:45:10,529 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-05 23:45:11,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:45:41,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:46:11,664 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:46:41,710 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:47:11,758 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:47:41,803 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:48:11,849 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:48:41,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:49:11,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:49:41,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:50:12,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:50:42,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:51:12,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:51:42,174 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:52:12,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:52:42,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:53:12,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:53:42,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:54:12,406 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:54:42,452 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:55:12,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:55:42,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:56:12,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:56:42,634 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:57:12,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:57:42,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:58:12,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:58:42,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:59:12,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-05 23:59:42,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:00:10,531 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:00:12,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:00:43,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:01:13,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:01:43,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:02:13,143 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:02:43,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:03:13,234 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:03:43,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:04:13,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:04:43,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:05:13,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:05:43,466 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:06:13,511 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:06:43,557 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:07:13,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:07:43,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:08:13,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:08:43,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:09:13,785 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:09:43,831 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:10:13,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:10:43,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:11:13,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:11:44,016 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:12:14,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:12:44,108 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:13:14,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:13:44,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:14:14,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:14:44,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:15:10,533 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:15:14,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:15:44,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:16:14,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:16:44,474 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:17:14,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:17:44,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:18:14,613 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:18:44,659 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:19:14,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:19:44,753 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:20:14,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:20:44,848 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:21:14,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:21:44,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:22:14,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:22:45,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:23:15,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:23:45,124 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:24:15,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:24:45,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:25:15,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:25:45,306 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:26:15,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:26:45,397 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:27:15,441 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:27:45,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:28:15,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:28:45,578 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:29:15,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:29:45,670 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:30:10,535 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:30:15,716 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:30:45,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:31:15,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:31:45,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:32:15,904 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:32:45,952 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:33:15,997 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:33:46,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:34:16,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:34:46,136 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:35:16,182 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:35:46,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:36:16,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:36:46,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:37:16,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:37:46,416 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:38:16,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:38:46,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:39:16,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:39:46,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:40:16,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:40:46,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:41:16,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:41:46,790 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:42:16,835 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:42:46,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:43:16,929 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:43:46,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:44:17,022 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:44:47,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:45:10,537 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 00:45:17,115 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:45:47,161 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:46:17,207 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:46:47,253 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:47:17,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:47:47,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:48:17,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:48:47,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:49:17,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:49:47,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:50:17,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:50:47,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:51:17,672 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:51:47,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:52:17,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:52:47,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:53:17,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:53:47,907 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:54:17,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:54:47,999 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:55:18,044 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:55:48,091 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:56:18,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:56:48,185 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:57:18,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:57:48,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:58:18,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:58:48,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:59:18,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 00:59:48,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:00:10,539 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:00:18,510 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:00:48,556 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:01:18,602 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:01:48,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:02:18,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:02:48,743 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:03:18,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:03:48,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:04:18,884 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:04:48,930 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:05:18,979 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:05:49,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:06:19,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:06:49,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:07:19,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:07:49,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:08:19,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:08:49,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:09:19,347 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:09:49,393 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:10:19,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:10:49,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:11:19,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:11:49,576 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:12:19,624 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:12:49,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:13:19,717 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:13:49,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:14:19,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:14:49,856 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:15:10,541 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:15:19,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:15:49,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:16:19,995 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:16:50,041 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:17:20,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:17:50,134 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:18:20,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:18:50,230 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:19:20,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:19:50,323 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:20:20,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:20:50,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:21:20,459 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:21:50,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:22:20,551 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:22:50,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:23:20,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:23:50,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:24:20,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:24:50,783 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:25:20,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:25:50,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:26:20,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:26:50,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:27:21,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:27:51,061 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:28:21,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:28:51,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:29:21,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:29:51,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:30:10,542 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:30:21,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:30:51,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:31:21,382 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:31:51,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:32:21,476 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:32:51,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:33:21,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:33:51,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:34:21,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:34:51,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:35:21,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:35:51,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:36:21,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:36:51,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:37:21,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:37:51,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:38:22,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:38:52,077 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:39:22,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:39:52,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:40:22,218 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:40:52,263 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:41:22,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:41:52,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:42:22,400 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:42:52,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:43:22,493 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:43:52,539 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:44:22,584 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:44:52,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:45:10,544 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 01:45:22,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:45:52,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:46:22,767 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:46:52,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:47:22,860 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:47:52,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:48:22,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:48:53,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:49:23,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:49:53,093 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:50:23,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:50:53,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:51:23,232 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:51:53,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:52:23,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:52:53,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:53:23,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:53:53,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:54:23,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:54:53,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:55:23,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:55:53,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:56:23,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:56:53,749 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:57:23,796 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:57:53,842 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:58:23,891 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:58:53,937 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:59:23,983 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 01:59:54,029 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:00:10,546 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:00:24,076 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:00:54,121 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:01:24,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:01:54,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:02:24,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:02:54,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:03:24,356 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:03:54,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:04:24,457 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:04:54,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:05:24,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:05:54,593 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:06:24,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:06:54,685 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:07:24,731 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:07:54,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:08:24,824 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:08:54,874 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:09:24,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:09:54,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:10:25,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:10:55,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:11:25,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:11:55,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:12:25,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:12:55,250 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:13:25,298 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:13:55,343 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:14:25,389 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:14:55,438 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:15:10,549 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:15:25,483 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:15:55,529 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:16:25,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:16:55,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:17:25,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:17:55,714 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:18:25,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:18:55,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:19:25,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:19:55,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:20:25,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:20:55,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:21:26,042 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:21:56,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:22:26,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:22:56,179 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:23:26,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:23:56,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:24:26,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:24:56,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:25:26,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:25:56,457 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:26:26,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:26:56,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:27:26,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:27:56,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:28:26,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:28:56,732 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:29:26,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:29:56,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:30:10,551 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:30:26,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:30:56,916 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:31:26,962 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:31:57,008 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:32:27,054 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:32:57,100 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:33:27,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:33:57,192 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:34:27,238 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:34:57,285 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:35:27,330 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:35:57,377 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:36:27,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:36:57,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:37:27,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:37:57,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:38:27,604 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:38:57,650 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:39:27,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:39:57,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:40:27,789 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:40:57,835 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:41:27,881 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:41:57,927 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:42:27,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:42:58,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:43:28,067 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:43:58,113 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:44:28,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:44:58,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:45:10,553 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 02:45:28,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:45:58,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:46:28,341 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:46:58,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:47:28,434 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:47:58,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:48:28,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:48:58,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:49:28,620 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:49:58,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:50:28,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:50:58,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:51:28,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:51:58,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:52:28,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:52:58,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:53:28,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:53:59,036 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:54:29,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:54:59,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:55:29,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:55:59,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:56:29,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:56:59,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:57:29,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:57:59,410 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:58:29,456 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:58:59,502 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:59:29,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 02:59:59,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:00:10,555 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:00:29,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:00:59,687 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:01:29,733 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:01:59,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:02:29,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:02:59,875 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:03:29,920 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:03:59,968 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:04:30,013 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:05:00,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:05:30,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:06:00,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:06:30,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:07:00,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:07:30,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:08:00,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:08:30,386 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:09:00,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:09:30,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:10:00,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:10:30,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:11:00,616 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:11:30,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:12:00,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:12:30,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:13:00,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:13:30,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:14:00,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:14:30,942 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:15:00,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:15:10,557 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:15:31,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:16:01,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:16:31,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:17:01,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:17:31,226 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:18:01,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:18:31,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:19:01,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:19:31,415 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:20:01,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:20:31,509 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:21:01,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:21:31,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:22:01,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:22:31,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:23:01,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:23:31,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:24:01,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:24:31,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:25:01,931 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:25:31,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:26:02,024 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:26:32,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:27:02,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:27:32,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:28:02,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:28:32,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:29:02,302 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:29:32,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:30:02,394 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:30:10,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:30:32,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:31:02,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:31:32,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:32:02,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:32:32,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:33:02,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:33:32,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:34:02,765 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:34:32,811 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:35:02,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:35:32,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:36:02,951 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:36:32,997 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:37:03,043 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:37:33,091 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:38:03,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:38:33,183 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:39:03,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:39:33,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:40:03,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:40:33,369 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:41:03,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:41:33,462 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:42:03,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:42:33,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:43:03,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:43:33,646 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:44:03,695 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:44:33,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:45:03,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:45:10,561 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 03:45:33,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:46:03,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:46:33,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:47:03,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:47:34,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:48:04,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:48:34,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:49:04,152 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:49:34,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:50:04,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:50:34,288 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:51:04,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:51:34,378 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:52:04,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:52:34,470 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:53:04,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:53:34,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:54:04,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:54:34,653 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:55:04,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:55:34,747 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:56:04,794 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:56:34,841 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:57:04,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:57:34,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:58:04,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:58:35,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:59:05,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 03:59:35,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:00:05,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:00:10,562 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:00:35,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:01:05,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:01:35,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:02:05,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:02:35,405 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:03:05,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:03:35,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:04:05,542 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:04:35,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:05:05,634 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:05:35,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:06:05,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:06:35,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:07:05,820 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:07:35,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:08:05,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:08:35,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:09:06,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:09:36,050 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:10:06,095 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:10:36,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:11:06,186 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:11:36,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:12:06,277 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:12:36,326 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:13:06,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:13:36,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:14:06,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:14:36,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:15:06,560 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:15:10,564 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:15:36,607 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:16:06,652 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:16:36,697 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:17:06,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:17:36,788 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:18:06,836 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:18:36,882 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:19:06,930 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:19:36,977 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:20:07,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:20:37,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:21:07,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:21:37,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:22:07,210 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:22:37,255 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:23:07,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:23:37,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:24:07,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:24:37,440 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:25:07,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:25:37,536 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:26:07,583 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:26:37,629 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:27:07,676 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:27:37,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:28:07,769 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:28:37,817 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:29:07,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:29:37,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:30:07,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:30:10,566 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:30:38,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:31:08,048 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:31:38,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:32:08,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:32:38,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:33:08,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:33:38,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:34:08,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:34:38,371 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:35:08,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:35:38,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:36:08,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:36:38,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:37:08,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:37:38,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:38:08,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:38:38,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:39:08,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:39:38,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:40:08,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:40:38,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:41:08,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:41:39,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:42:09,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:42:39,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:43:09,156 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:43:39,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:44:09,247 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:44:39,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:45:09,338 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:45:10,568 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 04:45:39,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:46:09,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:46:39,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:47:09,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:47:39,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:48:09,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:48:39,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:49:09,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:49:39,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:50:09,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:50:39,859 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:51:09,905 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:51:39,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:52:09,999 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:52:40,047 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:53:10,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:53:40,140 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:54:10,185 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:54:40,231 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:55:10,277 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:55:40,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:56:10,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:56:40,416 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:57:10,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:57:40,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:58:10,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:58:40,600 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:59:10,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 04:59:40,692 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:00:10,570 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:00:10,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:00:40,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:01:10,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:01:40,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:02:10,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:02:40,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:03:11,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:03:41,066 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:04:11,111 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:04:41,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:05:11,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:05:41,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:06:11,297 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:06:41,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:07:11,388 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:07:41,432 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:08:11,478 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:08:41,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:09:11,568 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:09:41,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:10:11,660 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:10:41,706 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:11:11,754 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:11:41,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:12:11,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:12:41,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:13:11,941 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:13:41,986 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:14:12,034 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:14:42,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:15:10,573 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:15:12,126 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:15:42,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:16:12,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:16:42,264 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:17:12,311 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:17:42,358 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:18:12,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:18:42,449 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:19:12,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:19:42,542 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:20:12,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:20:42,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:21:12,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:21:42,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:22:12,773 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:22:42,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:23:12,864 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:23:42,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:24:12,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:24:43,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:25:13,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:25:43,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:26:13,139 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:26:43,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:27:13,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:27:43,280 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:28:13,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:28:43,372 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:29:13,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:29:43,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:30:10,574 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:30:13,508 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:30:43,555 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:31:13,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:31:43,648 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:32:13,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:32:43,740 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:33:13,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:33:43,831 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:34:13,877 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:34:43,923 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:35:13,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:35:44,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:36:14,060 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:36:44,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:37:14,153 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:37:44,199 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:38:14,244 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:38:44,290 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:39:14,336 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:39:44,381 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:40:14,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:40:44,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:41:14,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:41:44,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:42:14,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:42:44,656 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:43:14,701 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:43:44,746 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:44:14,792 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:44:44,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:45:10,576 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 05:45:14,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:45:44,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:46:14,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:46:45,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:47:15,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:47:45,113 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:48:15,159 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:48:45,205 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:49:15,251 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:49:45,296 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:50:15,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:50:45,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:51:15,436 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:51:45,485 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:52:15,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:52:45,589 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:53:15,635 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:53:45,684 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:54:15,732 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:54:45,779 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:55:15,825 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:55:45,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:56:15,918 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:56:45,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:57:16,011 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:57:46,057 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:58:16,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:58:46,149 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:59:16,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 05:59:46,244 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:00:10,579 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:00:16,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:00:46,334 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:01:16,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:01:46,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:02:16,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:02:46,519 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:03:16,565 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:03:46,611 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:04:16,657 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:04:46,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:05:16,750 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:05:46,795 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:06:16,840 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:06:46,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:07:16,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:07:46,980 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:08:17,028 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:08:47,074 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:09:17,120 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:09:47,166 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:10:17,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:10:47,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:11:17,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:11:47,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:12:17,398 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:12:47,447 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:13:17,495 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:13:47,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:14:17,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:14:47,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:15:10,581 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:15:17,680 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:15:47,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:16:17,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:16:47,818 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:17:17,865 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:17:47,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:18:17,956 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:18:48,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:19:18,052 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:19:48,099 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:20:18,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:20:48,191 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:21:18,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:21:48,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:22:18,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:22:48,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:23:18,421 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:23:48,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:24:18,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:24:48,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:25:18,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:25:48,653 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:26:18,700 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:26:48,747 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:27:18,793 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:27:48,840 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:28:18,887 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:28:48,932 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:29:18,981 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:29:49,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:30:10,583 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:30:19,073 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:30:49,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:31:19,165 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:31:49,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:32:19,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:32:49,304 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:33:19,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:33:49,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:34:19,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:34:49,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:35:19,535 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:35:49,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:36:19,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:36:49,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:37:19,719 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:37:49,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:38:19,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:38:49,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:39:19,903 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:39:49,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:40:19,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:40:50,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:41:20,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:41:50,131 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:42:20,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:42:50,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:43:20,267 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:43:50,313 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:44:20,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:44:50,406 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:45:10,585 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 06:45:20,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:45:50,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:46:20,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:46:50,589 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:47:20,635 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:47:50,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:48:20,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:48:50,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:49:20,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:49:50,868 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:50:20,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:50:50,961 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:51:21,005 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:51:51,052 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:52:21,098 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:52:51,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:53:21,191 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:53:51,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:54:21,283 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:54:51,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:55:21,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:55:51,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:56:21,466 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:56:51,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:57:21,558 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:57:51,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:58:21,651 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:58:51,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:59:21,742 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 06:59:51,790 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:00:10,586 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:00:21,837 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:00:51,883 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:01:21,933 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:01:51,978 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:02:22,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:02:52,071 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:03:22,118 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:03:52,163 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:04:22,211 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:04:52,256 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:05:22,303 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:05:52,348 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:06:22,394 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:06:52,439 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:07:22,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:07:52,531 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:08:22,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:08:52,624 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:09:22,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:09:52,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:10:22,762 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:10:52,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:11:22,853 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:11:52,900 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:12:22,947 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:12:52,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:13:23,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:13:53,084 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:14:23,130 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:14:53,176 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:15:10,589 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:15:23,223 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:15:53,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:16:23,319 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:16:53,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:17:23,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:17:53,460 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:18:23,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:18:53,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:19:23,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:19:53,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:20:23,691 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:20:53,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:21:23,785 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:21:53,833 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:22:23,880 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:22:53,928 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:23:23,977 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:23:54,023 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:24:24,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:24:54,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:25:24,166 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:25:54,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:26:24,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:26:54,307 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:27:24,355 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:27:54,402 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:28:24,451 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:28:54,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:29:24,544 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:29:54,591 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:30:10,590 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:30:24,639 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:30:54,684 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:31:24,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:31:54,775 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:32:24,821 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:32:54,867 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:33:24,913 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:33:54,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:34:25,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:34:55,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:35:25,096 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:35:55,142 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:36:25,188 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:36:55,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:37:25,281 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:37:55,329 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:38:25,374 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:38:55,422 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:39:25,468 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:39:55,516 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:40:25,561 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:40:55,608 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:41:25,655 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:41:55,702 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:42:25,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:42:55,800 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:43:25,846 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:43:55,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:44:25,941 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:44:55,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:45:10,592 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 07:45:26,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:45:56,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:46:26,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:46:56,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:47:26,220 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:47:56,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:48:26,314 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:48:56,361 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:49:26,409 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:49:56,455 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:50:26,501 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:50:56,547 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:51:26,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:51:56,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:52:26,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:52:56,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:53:26,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:53:56,828 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:54:26,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:54:56,925 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:55:26,973 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:55:57,020 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:56:27,068 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:56:57,114 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:57:27,160 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:57:57,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:58:27,254 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:58:57,303 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:59:27,349 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 07:59:57,395 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:00:10,595 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:00:27,440 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:00:57,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:01:27,533 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:01:57,580 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:02:27,625 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:02:57,671 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:03:27,718 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:03:57,764 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:04:27,810 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:04:57,857 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:05:27,902 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:05:57,948 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:06:27,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:06:58,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:07:28,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:07:58,133 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:08:28,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:08:58,228 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:09:28,275 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:09:58,321 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:10:28,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:10:58,414 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:11:28,461 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:11:58,506 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:12:28,553 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:12:58,598 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:13:28,645 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:13:58,690 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:14:28,737 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:14:58,782 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:15:10,597 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:15:28,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:15:58,876 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:16:28,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:16:58,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:17:29,018 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:17:59,064 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:18:29,110 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:18:59,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:19:29,201 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:19:59,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:20:29,292 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:20:59,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:21:29,383 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:21:59,428 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:22:29,473 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:22:59,520 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:23:29,566 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:23:59,614 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:24:29,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:24:59,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:25:29,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:25:59,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:26:29,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:26:59,893 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:27:29,938 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:27:59,985 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:28:30,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:29:00,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:29:30,125 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:30:00,171 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:30:10,598 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:30:30,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:31:00,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:31:30,312 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:32:00,359 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:32:30,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:33:00,452 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:33:30,497 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:34:00,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:34:30,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:35:00,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:35:30,682 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:36:00,728 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:36:30,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:37:00,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:37:30,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:38:00,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:38:30,966 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:39:01,012 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:39:31,059 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:40:01,107 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:40:31,155 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:41:01,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:41:31,249 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:42:01,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:42:31,340 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:43:01,385 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:43:31,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:44:01,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:44:31,522 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:45:01,569 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:45:10,601 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 08:45:31,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:46:01,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:46:31,707 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:47:01,753 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:47:31,799 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:48:01,845 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:48:31,892 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:49:01,939 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:49:31,984 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:50:02,031 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:50:32,077 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:51:02,123 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:51:32,169 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:52:02,215 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:52:32,261 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:53:02,307 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:53:32,353 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:54:02,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:54:32,444 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:55:02,491 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:55:32,537 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:56:02,585 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:56:32,630 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:57:02,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:57:32,723 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:58:02,770 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:58:32,815 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:59:02,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 08:59:32,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:00:02,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:00:10,604 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:00:33,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:01:03,046 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:01:33,090 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:02:03,137 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:02:33,183 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:03:03,229 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:03:33,276 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:04:03,322 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:04:33,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:05:03,413 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:05:33,462 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:06:03,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:06:33,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:07:03,599 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:07:33,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:08:03,694 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:08:33,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:09:03,786 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:09:33,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:10:03,878 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:10:33,925 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:11:03,970 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:11:34,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:12:04,062 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:12:34,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:13:04,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:13:34,200 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:14:04,246 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:14:34,291 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:15:04,337 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:15:10,606 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:15:34,383 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:16:04,429 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:16:34,477 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:17:04,524 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:17:34,570 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:18:04,617 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:18:34,662 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:19:04,708 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:19:34,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:20:04,801 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:20:34,848 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:21:04,895 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:21:34,940 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:22:04,987 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:22:35,032 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:23:05,079 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:23:35,124 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:24:05,170 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:24:35,216 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:25:05,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:25:35,308 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:26:05,354 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:26:35,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:27:05,446 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:27:35,492 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:28:05,538 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:28:35,583 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:29:05,632 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:29:35,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:30:05,725 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:30:10,608 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:30:35,771 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:31:05,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:31:35,868 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:32:05,914 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:32:35,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:33:06,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:33:36,065 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:34:06,119 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:34:36,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:35:06,213 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:35:36,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:36:06,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:36:36,350 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:37:06,396 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:37:36,442 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:38:06,489 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:38:36,534 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:39:06,582 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:39:36,627 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:40:06,675 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:40:36,722 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:41:06,768 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:41:36,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:42:06,862 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:42:36,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:43:06,955 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:43:37,000 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:44:07,048 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:44:37,095 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:45:07,141 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:45:10,610 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 09:45:37,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:46:07,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:46:37,278 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:47:07,325 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:47:37,370 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:48:07,417 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:48:37,463 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:49:07,509 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:49:37,554 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:50:07,601 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:50:37,647 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:51:07,693 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:51:37,738 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:52:07,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:52:37,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:53:07,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:53:37,927 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:54:07,972 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:54:38,019 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:55:08,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:55:38,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:56:08,154 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:56:38,200 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:57:08,245 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:57:38,294 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:58:08,339 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:58:38,387 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:59:08,433 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 09:59:38,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:00:08,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:00:10,612 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:00:38,574 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:01:08,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:01:38,666 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:02:08,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:02:38,758 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:03:08,804 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:03:38,850 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:04:08,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:04:38,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:05:08,993 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:05:39,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:06:09,088 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:06:39,135 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:07:09,181 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:07:39,227 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:08:09,274 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:08:39,319 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:09:09,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:09:39,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:10:09,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:10:39,504 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:11:09,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:11:39,596 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:12:09,642 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:12:39,688 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:13:09,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:13:39,780 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:14:09,827 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:14:39,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:15:09,919 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:15:10,614 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:15:39,964 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:16:10,009 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:16:40,057 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:17:10,103 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:17:40,149 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:18:10,194 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:18:40,240 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:19:10,287 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:19:40,334 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:20:10,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:20:40,427 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:21:10,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:21:40,521 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:22:10,567 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:22:40,615 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:23:10,661 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:23:40,708 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:24:10,755 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:24:40,802 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:25:10,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:25:40,896 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:26:10,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:26:40,989 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:27:11,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:27:41,081 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:28:11,127 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:28:41,173 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:29:11,219 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:29:41,265 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:30:10,616 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:30:11,311 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:30:41,356 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:31:11,404 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:31:41,449 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:32:11,496 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:32:41,541 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:33:11,588 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:33:41,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:34:11,681 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:34:41,727 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:35:11,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:35:41,819 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:36:11,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:36:41,911 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:37:11,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:37:42,004 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:38:12,051 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:38:42,097 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:39:12,144 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:39:42,189 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:40:12,236 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:40:42,282 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:41:12,328 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:41:42,375 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:42:12,421 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:42:42,467 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:43:12,513 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:43:42,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:44:12,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:44:42,654 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:45:10,618 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 10:45:12,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:45:42,746 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:46:12,791 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:46:42,838 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:47:12,885 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:47:42,931 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:48:12,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:48:43,025 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:49:13,070 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:49:43,117 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:50:13,162 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:50:43,209 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:51:13,254 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:51:43,301 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:52:13,346 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:52:43,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:53:13,438 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:53:43,485 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:54:13,532 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:54:43,577 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:55:13,623 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:55:43,669 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:56:13,715 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:56:43,761 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:57:13,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:57:43,853 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:58:13,900 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:58:43,946 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:59:13,994 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 10:59:44,039 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:00:10,621 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:00:14,087 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:00:44,132 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:01:14,180 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:01:44,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:02:14,272 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:02:44,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:03:14,366 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:03:44,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:04:14,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:04:44,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:05:14,550 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:05:44,597 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:06:14,643 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:06:44,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:07:14,736 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:07:44,784 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:08:14,830 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:08:44,879 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:09:14,924 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:09:44,971 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:10:15,017 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:10:45,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:11:15,109 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:11:45,157 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:12:15,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:12:45,252 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:13:15,297 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:13:45,344 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:14:15,389 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:14:45,435 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:15:10,623 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:15:15,481 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:15:45,527 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:16:15,572 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:16:45,619 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:17:15,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:17:45,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:18:15,759 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:18:45,807 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:19:15,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:19:45,899 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:20:15,945 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:20:45,991 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:21:16,037 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:21:46,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:22:16,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:22:46,178 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:23:16,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:23:46,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:24:16,318 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:24:46,364 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:25:16,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:25:46,456 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:26:16,503 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:26:46,549 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:27:16,595 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:27:46,640 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:28:16,689 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:28:46,735 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:29:16,781 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:29:46,826 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:30:10,626 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:30:16,873 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:30:46,918 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:31:16,969 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:31:47,015 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:32:17,063 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:32:47,108 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:33:17,157 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:33:47,203 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:34:17,249 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:34:47,295 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:35:17,342 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:35:47,392 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:36:17,437 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:36:47,484 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:37:17,528 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:37:47,575 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:38:17,621 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:38:47,668 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:39:17,713 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:39:47,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:40:17,805 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:40:47,851 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:41:17,897 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:41:47,943 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:42:17,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:42:48,036 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:43:18,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:43:48,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:44:18,175 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:44:48,221 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:45:10,629 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 11:45:18,266 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:45:48,312 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:46:18,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:46:48,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:47:18,448 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:47:48,494 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:48:18,540 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:48:48,587 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:49:18,633 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:49:48,678 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:50:18,729 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:50:48,774 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:51:18,821 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:51:48,866 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:52:18,914 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:52:48,959 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:53:19,008 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:53:49,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:54:19,100 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:54:49,145 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:55:19,194 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:55:49,241 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:56:19,288 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:56:49,333 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:57:19,380 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:57:49,425 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:58:19,472 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:58:49,518 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:59:19,564 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 11:59:49,612 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:00:10,632 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:00:19,658 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:00:49,703 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:01:19,749 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:01:49,796 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:02:19,842 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:02:49,889 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:03:19,935 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:03:49,982 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:04:20,027 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:04:50,075 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:05:20,120 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:05:50,167 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:06:20,212 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:06:50,259 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:07:20,305 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:07:50,351 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:08:20,397 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:08:50,443 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:09:20,488 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:09:50,535 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:10:20,581 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:10:50,628 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:11:20,673 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:11:50,720 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:12:20,766 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:12:50,814 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:13:20,861 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:13:50,908 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:14:20,954 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:14:51,001 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:15:10,634 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:15:21,049 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:15:51,094 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:16:21,142 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:16:51,187 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:17:21,233 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:17:51,279 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:18:21,327 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:18:51,373 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:19:21,419 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:19:51,465 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:20:21,512 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:20:51,559 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:21:21,604 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:21:51,649 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:22:21,696 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:22:51,741 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:23:21,787 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:23:51,832 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:24:21,881 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:24:51,926 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:25:21,976 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:25:52,024 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:26:22,072 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:26:52,122 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:27:22,168 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:27:52,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:28:22,262 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:28:52,309 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:29:22,357 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:29:52,403 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:30:10,637 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:30:22,450 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:30:52,498 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:31:22,543 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:31:52,590 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:32:22,636 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:32:52,683 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:33:22,730 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:33:52,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:34:22,823 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:34:52,870 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:35:22,916 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:35:52,963 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:36:23,009 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:36:53,056 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:37:23,104 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:37:53,150 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:38:23,197 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:38:53,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:39:23,289 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:39:53,335 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:40:23,384 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:40:53,431 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:41:23,479 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:41:53,526 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:42:23,573 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:42:53,618 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:43:23,665 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:43:53,712 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:44:23,760 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:44:53,806 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:45:10,639 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-11-06 12:45:23,852 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:45:53,898 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:46:23,944 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:46:53,990 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:47:24,035 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:47:54,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:48:24,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:48:54,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:24,222 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:49,749 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Coffee_holder_v1_M117.gcode
2018-11-06 12:49:54,268 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:49:54,688 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:50:03,630 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.29s
2018-11-06 12:50:04,012 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.28s
2018-11-06 12:50:04,436 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.28s
2018-11-06 12:50:05,390 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.82s
2018-11-06 12:50:05,900 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.31s
2018-11-06 12:50:08,375 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Coffee_holder_v1_M117.gcode finished, needed 18.63s
2018-11-06 12:50:13,140 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:50:24,320 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:50:41,100 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.10rc1...
2018-11-06 12:50:54,368 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:51:24,420 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:51:54,475 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:52:17,082 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.10rc1 successful!
2018-11-06 12:52:18,072 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:52:18,076 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 12:52:18,224 - octoprint.server - INFO - Shutting down...
2018-11-06 12:52:18,235 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 12:52:18,244 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 12:52:18,262 - octoprint.events - INFO - Event loop shut down
2018-11-06 12:52:19,348 - octoprint.server - INFO - Goodbye!
2018-11-06 12:52:25,042 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:52:25,046 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 12:52:25,046 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:52:25,141 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 12:52:25,471 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 12:52:25,554 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:52:26,359 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 12:52:29,535 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 12:52:29,675 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 12:52:30,149 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 12:52:30,473 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:52:30,477 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 12:52:30,536 - octoprint.server - INFO - Intermediary server started
2018-11-06 12:52:30,538 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:52:31,069 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:52:31,185 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 12:52:33,392 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 12:52:33,416 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 12:52:33,417 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 12:52:33,467 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 12:52:33,948 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 12:52:38,031 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:42,058 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 12:52:42,060 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:52:42,061 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:52:42,068 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 12:52:42,109 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 12:52:42,136 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 12:52:42,157 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 12:52:42,211 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 12:52:42,836 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 12:52:43,290 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 12:52:43,295 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 12:52:43,297 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 12:52:43,361 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 12:52:44,703 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 12:52:44,812 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-11-06 12:52:47,824 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-11-06 12:52:48,627 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 12:52:48,671 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 12:52:48,823 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 12:52:48,874 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 12:52:48,957 - octoprint.plugins.pi_support - WARNING - This Raspberry Pi is reporting problems that might lead to bad performance or errors caused by overheating or insufficient power.
!!! UNDERVOLTAGE REPORTED !!! Make sure that the power supply and power cable are capable of supplying enough voltage and current to your Pi.
2018-11-06 12:52:48,978 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 12:52:48,989 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 12:52:49,007 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 12:52:49,011 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 12:52:49,012 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 12:52:49,036 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 12:52:49,083 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:52:49,281 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:52:49,313 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:52:49,845 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:52:50,527 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 12:52:51,537 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:52:52,198 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,199 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,286 - tornado.access - WARNING - 404 GET /api/plugin/octopi_support (192.168.0.25) 570.09ms
2018-11-06 12:52:52,742 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:52,875 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:52:53,131 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:53:00,746 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:53:00,799 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:53:05,202 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 12:53:09,510 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:53:09,514 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:53:09,515 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:53:19,847 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:53:23,309 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:53:23,455 - octoprint.server.preemptive_cache - INFO - ... done in 32.93s
2018-11-06 12:53:37,685 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:53:38,142 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:53:46,470 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:53:49,909 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:54:19,958 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:54:38,918 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 12:54:49,002 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:54:49,084 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:54:49,091 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 12:54:50,003 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:55:14,268 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 12:55:20,053 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:55:42,924 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:55:43,230 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:55:43,244 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 12:55:50,106 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:56:03,568 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 12:56:20,161 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:56:21,470 - octoprint.server.api.system - INFO - Performing command for core:shutdown: sudo shutdown -h now
2018-11-06 12:56:21,654 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 12:56:21,789 - octoprint.server - INFO - Shutting down...
2018-11-06 12:56:22,118 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 12:56:22,120 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 12:56:22,132 - octoprint.events - INFO - Event loop shut down
2018-11-06 12:56:23,158 - octoprint.server - INFO - Goodbye!
2018-11-06 12:56:41,595 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:56:41,598 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 12:56:41,600 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 12:56:41,757 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 12:56:41,768 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 12:56:41,915 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:56:42,892 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 12:57:38,239 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 12:57:38,452 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 12:57:39,037 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 12:57:39,496 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:57:39,506 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 12:57:39,606 - octoprint.server - INFO - Intermediary server started
2018-11-06 12:57:39,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 12:57:40,145 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 12:57:40,266 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 12:57:42,514 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 12:57:42,543 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 12:57:42,545 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 12:57:42,600 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 12:57:43,106 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-11-06 12:57:43,118 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 12:57:47,917 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:57:51,900 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 12:57:51,902 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:57:51,902 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:57:51,907 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 12:57:51,955 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 12:57:51,988 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 12:57:52,013 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 12:57:52,074 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 12:57:52,824 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 12:57:53,284 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 12:57:53,289 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 12:57:53,315 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 12:57:53,397 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 12:57:53,721 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:57:54,427 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:57:55,203 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 12:57:56,436 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 12:57:56,457 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 12:57:56,514 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 12:57:56,564 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 12:57:56,578 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 12:57:56,581 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 12:57:56,639 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 12:57:56,642 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 12:57:56,644 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 12:57:56,737 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 12:57:56,745 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:57:57,045 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 12:57:57,195 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 12:57:57,752 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 12:58:02,210 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 12:58:02,212 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 12:58:02,213 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 12:58:04,415 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:58:04,894 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:04,917 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:58:10,531 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:27,243 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:58:43,589 - octoprint.server.preemptive_cache - INFO - ... done in 45.84s
2018-11-06 12:58:43,651 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 12:58:46,051 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 12:58:46,517 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 12:58:52,284 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 12:58:57,910 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:27,953 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:57,996 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 12:59:59,328 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 12:59:59,609 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 12:59:59,619 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:00:25,759 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:00:28,038 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:00:40,396 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-11-06 13:00:40,412 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:00:58,082 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:01:10,462 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:01:28,128 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:01:57,308 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:01:57,471 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:01:57,492 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:01:58,172 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:02:11,961 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:02:16,318 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:02:16,394 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2018-11-06 13:02:16,408 - octoprint.plugins.filamentreload - INFO - Error: Disabling filament sensor.
2018-11-06 13:02:16,411 - octoprint.plugin - ERROR - Error while calling plugin filamentreload
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 226, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload/__init__.py", line 113, in on_event
GPIO.remove_event_detect(self.pin)
RuntimeError: Please set pin numbering mode using GPIO.setmode(GPIO.BOARD) or GPIO.setmode(GPIO.BCM)
2018-11-06 13:02:28,217 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:02:58,260 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:03:28,306 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:03:58,352 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:04:28,399 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:04:33,647 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:04:41,711 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:04:41,713 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:04:42,019 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:04:46,926 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:04:51,186 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.9...
2018-11-06 13:04:58,486 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:05:28,545 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:05:33,544 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.9 successful!
2018-11-06 13:05:34,616 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:05:34,620 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 13:05:34,825 - octoprint.server - INFO - Shutting down...
2018-11-06 13:05:35,339 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 13:05:35,341 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 13:05:35,353 - octoprint.events - INFO - Event loop shut down
2018-11-06 13:05:36,404 - octoprint.server - INFO - Goodbye!
2018-11-06 13:05:42,433 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:05:42,436 - octoprint.startup - INFO - Starting OctoPrint 1.3.9
2018-11-06 13:05:42,437 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:05:42,527 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 13:05:42,534 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 13:05:42,613 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:05:43,392 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 13:05:46,374 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 13:05:46,512 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 13:05:46,881 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 13:05:47,201 - octoprint.plugin.core - INFO - Found 30 plugin(s) providing 26 mixin implementations, 31 hook handlers
2018-11-06 13:05:47,205 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 13:05:47,264 - octoprint.server - INFO - Intermediary server started
2018-11-06 13:05:47,266 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:05:47,918 - octoprint.plugin.core - INFO - Found 30 plugin(s) providing 26 mixin implementations, 31 hook handlers
2018-11-06 13:05:48,037 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 13:05:50,265 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 13:05:50,289 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 13:05:50,290 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 13:05:50,332 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 13:05:50,813 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 13:05:54,946 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:05:58,994 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 13:05:58,996 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:05:58,998 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:05:59,000 - octoprint.plugin.core - INFO - Initialized 26 plugin implementation(s)
2018-11-06 13:05:59,042 - octoprint.plugin.core - INFO - 30 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 13:05:59,069 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 13:05:59,091 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 13:05:59,150 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 13:05:59,585 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 13:05:59,645 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 13:05:59,649 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 13:05:59,700 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 13:05:59,710 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 13:05:59,943 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:06:00,505 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:06:01,604 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 13:06:03,995 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-11-06 13:06:04,070 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-11-06 13:06:04,149 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 13:06:04,178 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 13:06:04,192 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 13:06:04,238 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 13:06:04,293 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 13:06:04,295 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 13:06:04,296 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 13:06:04,320 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 13:06:04,331 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:06:04,362 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:06:05,351 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:06:06,344 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:06:06,492 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 13:06:07,466 - tornado.access - WARNING - 404 GET /api/plugin/pi_support (192.168.0.25) 82.50ms
2018-11-06 13:06:08,851 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,328 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,598 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:09,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:10,267 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:06:17,799 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:06:17,800 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:06:21,816 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:06:34,984 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:06:41,911 - octoprint.server.preemptive_cache - INFO - ... done in 35.42s
2018-11-06 13:06:51,010 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.25
2018-11-06 13:06:54,687 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:07:05,040 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:07:33,539 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:07:33,586 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Error: Failed to autodetect serial port, please set it manually."
2018-11-06 13:07:33,618 - octoprint.plugins.filamentreload - INFO - Error: Disabling filament sensor.
2018-11-06 13:07:33,621 - octoprint.plugin - ERROR - Error while calling plugin filamentreload
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload/__init__.py", line 113, in on_event
GPIO.remove_event_detect(self.pin)
RuntimeError: Please set pin numbering mode using GPIO.setmode(GPIO.BOARD) or GPIO.setmode(GPIO.BCM)
2018-11-06 13:07:35,085 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:07:57,212 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:07:57,297 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:07:57,304 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:07:57,320 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-11-06 13:07:57,431 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-11-06 13:07:57,493 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-11-06 13:07:57,580 - octoprint.util.comm - INFO - Printer reports firmware name "Smoothieware,"
2018-11-06 13:08:05,129 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:08:35,177 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:09:05,225 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:09:35,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:10:05,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:10:35,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:05,411 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:35,458 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:11:36,175 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:12:05,507 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:12:35,555 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:05,606 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:35,652 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:13:54,593 - octoprint.plugins.softwareupdate - INFO - Starting update of octoprint to 1.3.10rc1...
2018-11-06 13:14:05,699 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:14:33,682 - octoprint.plugins.softwareupdate - INFO - Update of octoprint to 1.3.10rc1 successful!
2018-11-06 13:14:34,691 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:14:34,695 - octoprint.plugins.softwareupdate - INFO - Restarting...
2018-11-06 13:14:34,845 - octoprint.server - INFO - Shutting down...
2018-11-06 13:14:35,302 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-11-06 13:14:35,312 - octoprint.plugins.HeaterTimeout - INFO - Shutting down...
2018-11-06 13:14:35,315 - octoprint.events - INFO - Event loop shut down
2018-11-06 13:14:35,752 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:14:36,360 - octoprint.server - INFO - Goodbye!
2018-11-06 13:14:42,054 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:14:42,058 - octoprint.startup - INFO - Starting OctoPrint 1.3.10rc1
2018-11-06 13:14:42,059 - octoprint.startup - INFO - ******************************************************************************
2018-11-06 13:14:42,149 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-11-06 13:14:42,495 - octoprint.startup - INFO - Blacklist processing done
2018-11-06 13:14:42,574 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:14:43,367 - octoprint.plugin.core - INFO - Plugin CuraEngine (<= 15.04) is disabled.
2018-11-06 13:14:46,581 - octoprint.plugin.core - INFO - Plugin Firmware Updater (0.1.0) is disabled.
2018-11-06 13:14:46,722 - octoprint.plugin.core - INFO - Plugin EEPROM Marlin Editor Plugin (1.0.4) is disabled.
2018-11-06 13:14:47,196 - octoprint.plugin.core - INFO - Plugin Simple Emergency Stop (0.2.1) is disabled.
2018-11-06 13:14:47,659 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 13:14:47,664 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-11-06 13:14:47,722 - octoprint.server - INFO - Intermediary server started
2018-11-06 13:14:47,723 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-11-06 13:14:48,253 - octoprint.plugin.core - INFO - Found 34 plugin(s) providing 30 mixin implementations, 39 hook handlers
2018-11-06 13:14:48,369 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-11-06 13:14:50,581 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-11-06 13:14:50,605 - octoprint.printer.standard - INFO - Using print time estimator provided by PrintTimeGenius
2018-11-06 13:14:50,606 - octoprint.printer.standard - INFO - Using print time estimator provided by gcodestatEstimator
2018-11-06 13:14:50,654 - octoprint.plugins.filamentreload - INFO - Running RPi.GPIO version '0.6.3'
2018-11-06 13:14:51,131 - octoprint.plugins.softwareupdate - INFO - Version cache was created for another version of OctoPrint, not using it
2018-11-06 13:14:51,143 - octoprint.plugins.tracking - INFO - Initialized anonymous tracking
2018-11-06 13:14:55,223 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:14:59,255 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-11-06 13:14:59,258 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:14:59,259 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:14:59,266 - octoprint.plugin.core - INFO - Initialized 30 plugin implementation(s)
2018-11-06 13:14:59,308 - octoprint.plugin.core - INFO - 34 plugin(s) registered with the system:
| Action Command Prompt Support (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/action_command_prompt
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Anonymous Usage Tracking (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/tracking
| Application Keys Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/appkeys
| Backup & Restore (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/backup
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Custom Control Editor (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_customControl
| Detailed Progress Plugin (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_detailedprogress
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| DisplayZ (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_displayz
| !EEPROM Marlin Editor Plugin (1.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_eeprom_marlin
| Filament Sensor Reloaded (1.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filamentreload
| FileManager (0.1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_filemanager
| !Firmware Updater (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_firmwareupdater
| Force Login (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/forcelogin
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| HeaterTimeout (0.0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_HeaterTimeout
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| MQTT (0.7.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_mqtt
| Navbar Temperature Plugin (0.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_navbartemp
| OctoPrint-gcodestatEstimator (0.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_gcodestatEstimator
| Pi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Print History Plugin (1.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_printhistory
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| PrintTimeGenius Plugin (1.3) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_PrintTimeGenius
| !Simple Emergency Stop (0.2.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_simpleemergencystop
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Terminal Commands (0.1.5) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_TerminalCommands
| Title Status (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_title_status
| TouchUI (0.3.12) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
| Yamlpatcher (0.1.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_yamlpatcher
2018-11-06 13:14:59,334 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901685248
| os:
| id: linux
| platform: linux2
| plugins:
| pi_support:
| model: Raspberry Pi 3 Model B Rev 1.2
| octopi_version: 0.14.0
| python:
| pip: 10.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-11-06 13:14:59,355 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-11-06 13:14:59,410 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-11-06 13:15:00,009 - octoprint.server - INFO - Shutting down intermediary server...
2018-11-06 13:15:00,167 - octoprint.server - INFO - Intermediary server shut down
2018-11-06 13:15:00,172 - octoprint.events - INFO - Processing startup event, this is our first event
2018-11-06 13:15:00,173 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-11-06 13:15:00,249 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-11-06 13:15:00,287 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:15:02,177 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-11-06 13:15:02,179 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:15:04,167 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _http._tcp
2018-11-06 13:15:04,247 - octoprint.plugins.discovery - INFO - Registered 'OctoPrint instance on octopi' for _octoprint._tcp
2018-11-06 13:15:04,280 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-11-06 13:15:04,399 - octoprint.plugins.mqtt - INFO - Connected to mqtt broker
2018-11-06 13:15:04,515 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-11-06 13:15:04,531 - octoprint.plugins.HeaterTimeout - INFO - Starting up...
2018-11-06 13:15:04,551 - octoprint.plugins.filamentreload - INFO - Filament Sensor Reloaded started
2018-11-06 13:15:04,553 - octoprint.plugins.filamentreload - INFO - Pin not configured, won't work unless configured!
2018-11-06 13:15:04,554 - octoprint.plugins.gcodestatEstimator - INFO - Started up gcodestatEstimator
2018-11-06 13:15:04,632 - octoprint.plugins.navbartemp - INFO - Broadcom detected
2018-11-06 13:15:04,777 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:15:04,911 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-11-06 13:15:05,118 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:15:06,562 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.8/'}
2018-11-06 13:15:06,758 - octoprint.server.preemptive_cache - INFO - ... done in 0.20s
2018-11-06 13:15:06,785 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-11-06 13:15:07,783 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:07,887 - tornado.access - WARNING - 404 GET /api/plugin/octopi_support (192.168.0.25) 46.12ms
2018-11-06 13:15:09,395 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:09,953 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,151 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,239 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:10,566 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:15,317 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:18,127 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:15:18,128 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:15:22,970 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-11-06 13:15:27,304 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-11-06 13:15:27,306 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-11-06 13:15:27,308 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-11-06 13:15:35,078 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:15:42,683 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.25
2018-11-06 13:15:43,144 - octoprint.server.util.flask - INFO - Passively logging in user admin from 192.168.0.25
2018-11-06 13:15:51,233 - octoprint.server.util.sockjs - INFO - User admin logged in on the socket from client 192.168.0.25
2018-11-06 13:15:55,391 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Detecting serial port"
2018-11-06 13:15:55,466 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting serial port" to "Opening serial port"
2018-11-06 13:15:55,472 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-11-06 13:16:05,178 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:16:13,352 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-11-06 13:16:35,224 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:17:05,271 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:17:35,317 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:18:05,365 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:18:35,412 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
2018-11-06 13:19:05,459 - octoprint.plugins.navbartemp - INFO - Checking SoC internal temperature
|
RuntimeError
|
def render_unrendered_timelapse(name, gcode=None, postfix=None, fps=None):
capture_dir = settings().getBaseFolder("timelapse_tmp")
output_dir = settings().getBaseFolder("timelapse")
if fps is None:
fps = settings().getInt(["webcam", "timelapse", "fps"])
threads = settings().get(["webcam", "ffmpegThreads"])
job = TimelapseRenderJob(
capture_dir,
output_dir,
name,
postfix=postfix,
capture_format=_capture_format,
output_format=_output_format,
fps=fps,
threads=threads,
on_start=_create_render_start_handler(name, gcode=gcode),
on_success=_create_render_success_handler(name, gcode=gcode),
on_fail=_create_render_fail_handler(name, gcode=gcode),
on_always=_create_render_always_handler(name, gcode=gcode),
)
job.process()
|
def render_unrendered_timelapse(name, gcode=None, postfix=None, fps=25):
capture_dir = settings().getBaseFolder("timelapse_tmp")
output_dir = settings().getBaseFolder("timelapse")
threads = settings().get(["webcam", "ffmpegThreads"])
job = TimelapseRenderJob(
capture_dir,
output_dir,
name,
postfix=postfix,
capture_format=_capture_format,
output_format=_output_format,
fps=fps,
threads=threads,
on_start=_create_render_start_handler(name, gcode=gcode),
on_success=_create_render_success_handler(name, gcode=gcode),
on_fail=_create_render_fail_handler(name, gcode=gcode),
on_always=_create_render_always_handler(name, gcode=gcode),
)
job.process()
|
https://github.com/OctoPrint/OctoPrint/issues/2621
|
2018-04-29 04:54:08,395 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 04:54:08,408 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 04:54:08,413 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 04:54:08,705 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 04:54:10,255 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 04:54:12,195 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 04:54:26,585 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 04:54:27,036 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 04:54:27,189 - octoprint.server - INFO - Intermediary server started
2018-04-29 04:54:27,192 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 04:54:30,743 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 04:54:30,972 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 04:54:35,379 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 04:54:36,920 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 04:54:47,163 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 04:54:56,821 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 04:54:56,827 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 04:54:56,830 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 04:54:56,848 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 04:54:56,890 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 04:54:56,924 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 04:54:57,024 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 04:54:57,067 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 04:54:57,150 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 04:54:58,148 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 04:54:58,394 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 04:54:58,401 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 04:54:58,409 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 04:54:58,426 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 04:54:58,518 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 04:54:59,622 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 04:54:59,663 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 04:54:59,770 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 04:54:59,959 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 04:55:00,202 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 04:55:00,270 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 04:55:00,305 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 04:55:00,392 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 04:55:00,425 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 04:55:01,557 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-04-29 04:55:02,221 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 2.9s
2018-04-29 04:55:03,271 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-04-29 04:55:03,260 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 2.7s
2018-04-29 04:55:04,866 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 04:55:18,028 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 3.3s
2018-04-29 04:55:18,071 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 2.7s
2018-04-29 04:55:20,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-04-29 04:55:21,169 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-04-29 04:55:23,754 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 2.0s
2018-04-29 04:55:23,856 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 2.0s
2018-04-29 04:55:28,780 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 2.0s
2018-04-29 04:55:28,778 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 2.0s
2018-04-29 04:55:29,894 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-04-29 04:55:35,216 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 2.0s
2018-04-29 04:55:35,266 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 2.0s
2018-04-29 04:55:59,522 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 04:56:00,427 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 04:56:00,719 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 04:57:06,430 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 04:57:06,438 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 04:57:06,960 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-04-29 04:57:26,822 - octoprint.server.preemptive_cache - INFO - ... done in 141.96s
2018-04-29 04:57:26,826 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 04:57:56,453 - octoprint.server.preemptive_cache - INFO - ... done in 29.63s
2018-04-29 04:57:56,457 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 04:58:26,148 - octoprint.server.preemptive_cache - INFO - ... done in 29.69s
2018-04-29 05:09:27,047 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 05:24:27,052 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 05:39:27,056 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 05:54:27,061 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 06:09:27,066 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 06:24:27,071 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 06:39:27,081 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 06:54:27,086 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 07:09:27,090 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 07:24:27,097 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 07:39:27,104 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 07:54:27,109 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 08:09:27,113 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 08:24:27,118 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 08:39:27,123 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 08:54:27,127 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 09:09:27,130 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 09:24:27,134 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 09:39:27,139 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 09:54:27,144 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 10:09:27,148 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 10:24:27,152 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 10:39:12,066 - octoprint.util.connectivity_checker - INFO - Connectivity changed from online to offline
2018-04-29 10:39:27,157 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 10:54:12,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 10:54:12,192 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 10:54:14,702 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 10:54:27,161 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 11:09:27,165 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 11:24:27,170 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 11:39:27,175 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 11:54:27,179 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 12:09:27,184 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 12:24:27,188 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 12:39:27,193 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 12:54:27,197 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 13:09:27,202 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 13:24:27,206 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 13:39:27,211 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 13:54:27,216 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 14:09:27,220 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 14:24:27,224 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 14:39:27,229 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 14:54:27,234 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 15:09:27,238 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 15:24:27,243 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 15:39:27,248 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 15:54:27,252 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 16:09:27,256 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 16:24:27,261 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 16:39:27,266 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 16:54:27,270 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 17:09:27,274 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 17:24:27,279 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 17:39:27,283 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 17:54:27,288 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 18:09:27,292 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 18:24:27,296 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 18:39:27,301 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 18:54:27,305 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 19:09:27,309 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 19:24:27,313 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 19:39:27,317 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 19:54:27,321 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 20:09:27,325 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 19:58:39,608 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 19:58:39,612 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 19:58:39,615 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 19:58:39,802 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 19:58:41,329 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 19:58:41,575 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 20:12:40,663 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 20:12:41,135 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 20:12:41,293 - octoprint.server - INFO - Intermediary server started
2018-04-29 20:12:41,296 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 20:12:44,879 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 20:12:45,105 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 20:12:49,820 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 20:12:50,320 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 20:13:00,455 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 20:13:10,285 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 20:13:10,290 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 20:13:10,293 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 20:13:10,312 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 20:13:10,355 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 20:13:10,390 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 20:13:10,494 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 20:13:10,534 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 20:13:10,616 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 20:13:11,581 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 20:13:11,847 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 20:13:11,868 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 20:13:11,876 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 20:13:11,894 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 20:13:11,983 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 20:13:12,750 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 20:13:12,774 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 20:13:12,811 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 20:13:12,880 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 20:13:12,983 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 20:13:13,084 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 20:13:13,082 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 20:13:13,088 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 20:13:13,156 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 20:13:13,168 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 20:13:13,328 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 20:13:14,200 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 20:13:15,690 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 2.5s
2018-04-29 20:13:15,775 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 2.5s
2018-04-29 20:13:21,603 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-04-29 20:13:21,623 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-04-29 20:13:23,261 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.3s
2018-04-29 20:13:23,267 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.3s
2018-04-29 20:13:26,035 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 1.3s
2018-04-29 20:13:26,035 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 1.3s
2018-04-29 20:13:28,716 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 1.3s
2018-04-29 20:13:28,722 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 1.3s
2018-04-29 20:13:32,180 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 1.3s
2018-04-29 20:13:32,187 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 1.3s
2018-04-29 20:13:42,876 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-04-29 20:14:27,840 - octoprint.server.preemptive_cache - INFO - ... done in 73.64s
2018-04-29 20:14:27,843 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 20:14:56,753 - octoprint.server.preemptive_cache - INFO - ... done in 28.91s
2018-04-29 20:14:56,757 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 20:15:25,863 - octoprint.server.preemptive_cache - INFO - ... done in 29.11s
2018-04-29 20:27:59,485 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 20:27:59,495 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 20:27:59,498 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 20:27:59,675 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 20:27:59,693 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 20:27:59,911 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 20:34:58,587 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 20:34:59,042 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 20:34:59,198 - octoprint.server - INFO - Intermediary server started
2018-04-29 20:34:59,201 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 20:35:02,735 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 20:35:03,253 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 20:35:07,687 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 20:35:08,177 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 20:35:18,398 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 20:35:28,154 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 20:35:28,160 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 20:35:28,162 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 20:35:28,181 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 20:35:28,222 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 20:35:28,258 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 20:35:28,359 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 20:35:28,403 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 20:35:28,486 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 20:35:29,444 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 20:35:29,759 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 20:35:29,765 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 20:35:29,774 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 20:35:29,790 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 20:35:29,876 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 20:35:30,685 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 20:35:30,713 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 20:35:30,784 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 20:35:30,876 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 20:35:30,952 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 20:35:31,119 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 20:35:31,190 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 20:35:31,194 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 20:35:31,269 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 20:35:31,281 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 20:35:31,425 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 20:35:32,767 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 20:35:37,837 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 20:35:38,324 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 20:36:00,844 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-04-29 20:36:40,129 - octoprint.server.preemptive_cache - INFO - ... done in 67.36s
2018-04-29 20:36:40,132 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 20:37:08,962 - octoprint.server.preemptive_cache - INFO - ... done in 28.83s
2018-04-29 20:37:08,965 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 20:37:37,769 - octoprint.server.preemptive_cache - INFO - ... done in 28.80s
2018-04-29 20:49:59,054 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 21:04:59,058 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 20:51:53,528 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 20:51:53,533 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 20:51:53,536 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 20:51:53,717 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 20:51:55,094 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 20:51:55,319 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:09:29,427 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:09:29,898 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 21:09:30,060 - octoprint.server - INFO - Intermediary server started
2018-04-29 21:09:30,064 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:09:34,069 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:09:34,301 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 21:09:39,257 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 21:09:39,786 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 21:09:50,990 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 21:10:01,767 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 21:10:01,773 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 21:10:01,776 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 21:10:01,794 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 21:10:01,840 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 21:10:01,874 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 21:10:01,977 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 21:10:02,019 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 21:10:02,113 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 21:10:03,153 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 21:10:03,242 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 21:10:03,249 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 21:10:03,258 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 21:10:03,291 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 21:10:03,390 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 21:10:04,301 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:10:04,465 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 21:10:04,535 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 21:10:04,640 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:10:04,750 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 21:10:04,878 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 21:10:04,925 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 21:10:04,936 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 21:10:05,006 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 21:10:05,020 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 21:10:05,203 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:10:05,584 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525036202947 (127.0.0.1) 408.83ms
2018-04-29 21:10:06,057 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525036205450 (127.0.0.1) 185.18ms
2018-04-29 21:10:06,863 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 21:10:07,827 - tornado.access - WARNING - 404 GET /cached.gif?_=1525036205463 (127.0.0.1) 1685.02ms
2018-04-29 21:10:11,021 - tornado.access - WARNING - 404 GET /cached.gif?_=1525036207966 (127.0.0.1) 1162.18ms
2018-04-29 21:10:12,270 - tornado.access - WARNING - 404 GET /cached.gif?_=1525036210468 (127.0.0.1) 1150.17ms
2018-04-29 21:10:12,729 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:10:13,647 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:10:34,762 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-04-29 21:12:33,723 - octoprint.server.preemptive_cache - INFO - ... done in 146.86s
2018-04-29 21:12:33,731 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 21:12:38,127 - tornado.access - WARNING - 404 GET /plugin/announcements/static/img/icon-sd-black-14.png (127.0.0.1) 78.57ms
2018-04-29 21:12:40,717 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:14:37,871 - octoprint.server.preemptive_cache - INFO - ... done in 124.14s
2018-04-29 21:14:37,886 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 21:16:59,334 - octoprint.server.preemptive_cache - INFO - ... done in 141.45s
2018-04-29 21:18:09,195 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 21:18:09,323 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 21:18:09,381 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:18:09,412 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 21:18:09,494 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:18:09,562 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 21:18:09,642 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Offline"
2018-04-29 21:18:12,300 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 21:18:12,467 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 21:18:12,642 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:18:12,757 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 21:18:13,171 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:18:13,389 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 21:22:06,365 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-04-29 21:23:06,289 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/BillyBlaze/OctoPrint-FullScreen/archive/master.zip
2018-04-29 21:24:12,805 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:24:16,437 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:24:16,454 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 21:24:16,457 - octoprint.plugins.pluginmanager - INFO - The plugin was installed successfully: Fullscreen Plugin, version 0.0.4
2018-04-29 21:24:29,911 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 21:24:54,666 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2018-04-29 21:24:55,275 - octoprint.server - INFO - Shutting down...
2018-04-29 21:24:55,622 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 21:24:56,182 - octoprint.events - INFO - Event loop shut down
2018-04-29 21:24:56,223 - octoprint.server - INFO - Goodbye!
2018-04-29 21:25:13,191 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:25:13,194 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 21:25:13,197 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:25:13,331 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 21:25:14,612 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 21:25:14,776 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:25:23,438 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 21:25:23,854 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 21:25:23,983 - octoprint.server - INFO - Intermediary server started
2018-04-29 21:25:23,986 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:25:27,513 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 21:25:27,731 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 21:25:32,100 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 21:25:32,636 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 21:25:42,177 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 21:25:51,783 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 21:25:51,790 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 21:25:51,792 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 21:25:51,810 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 21:25:51,849 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 21:25:51,882 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 21:25:51,978 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 21:25:52,019 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 21:25:52,100 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 21:25:52,984 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 21:25:53,200 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 21:25:53,207 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 21:25:53,215 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 21:25:53,232 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 21:25:53,317 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 21:25:54,065 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:25:54,566 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 21:25:54,624 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 21:25:54,721 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:25:54,785 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 21:25:54,873 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 21:25:54,962 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:25:55,083 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 21:25:55,129 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 21:25:55,213 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 21:25:55,222 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 21:25:55,307 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 21:25:55,328 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 21:25:55,534 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:25:57,521 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 21:26:03,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:26:04,496 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:26:05,245 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:26:08,386 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:26:15,058 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 21:26:38,944 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 21:28:10,293 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 21:28:10,302 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 21:28:11,235 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-04-29 21:28:53,519 - octoprint.server.preemptive_cache - INFO - ... done in 176.00s
2018-04-29 21:28:53,522 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 21:28:55,602 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 21:28:58,027 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:29:34,906 - octoprint.server.preemptive_cache - INFO - ... done in 41.38s
2018-04-29 21:29:34,910 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 21:30:03,991 - octoprint.server.preemptive_cache - INFO - ... done in 29.08s
2018-04-29 21:32:00,862 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 21:32:02,012 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:34:23,848 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2018-04-29 21:34:25,051 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 21:34:26,172 - octoprint.server - INFO - Shutting down...
2018-04-29 21:34:26,659 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 21:34:31,829 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb0cd5290>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-04-29 21:34:31,860 - octoprint.events - INFO - Event loop shut down
2018-04-29 21:34:31,894 - octoprint.server - INFO - Goodbye!
2018-04-29 21:35:06,294 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:35:06,300 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 21:35:06,303 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:35:06,484 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 21:35:06,503 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 21:35:06,725 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:35:31,436 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 21:35:31,893 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 21:35:32,052 - octoprint.server - INFO - Intermediary server started
2018-04-29 21:35:32,055 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:35:35,742 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 21:35:35,975 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 21:35:40,133 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 21:35:40,768 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 21:35:51,013 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 21:36:00,774 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 21:36:00,780 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 21:36:00,783 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 21:36:00,802 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 21:36:00,845 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 21:36:00,881 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 21:36:00,983 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 21:36:01,027 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 21:36:01,112 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 21:36:02,104 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 21:36:02,181 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 21:36:02,188 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 21:36:02,196 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 21:36:02,211 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 21:36:02,279 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 21:36:03,115 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:36:03,575 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 21:36:03,621 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 21:36:03,699 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:36:03,756 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 21:36:03,836 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 21:36:03,916 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:36:04,001 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 21:36:04,066 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 21:36:04,129 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 21:36:04,145 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 21:36:04,207 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 21:36:04,228 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 21:36:04,469 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:36:06,426 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 21:36:11,435 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:36:12,532 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:36:32,885 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:37:19,705 - octoprint.server.preemptive_cache - INFO - ... done in 73.28s
2018-04-29 21:37:19,709 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 21:37:49,336 - octoprint.server.preemptive_cache - INFO - ... done in 29.63s
2018-04-29 21:37:49,340 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 21:38:18,942 - octoprint.server.preemptive_cache - INFO - ... done in 29.60s
2018-04-29 21:50:31,907 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 21:52:42,582 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 21:52:44,781 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:53:15,190 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:53:18,885 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 21:53:27,317 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2018-04-29 21:53:27,907 - octoprint.server - INFO - Shutting down...
2018-04-29 21:53:28,587 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 21:53:29,058 - octoprint.events - INFO - Event loop shut down
2018-04-29 21:53:29,086 - octoprint.server - INFO - Goodbye!
2018-04-29 21:53:45,988 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:53:45,991 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 21:53:45,993 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:53:46,127 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 21:53:47,386 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 21:53:47,545 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:53:56,094 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:53:56,521 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 21:53:56,652 - octoprint.server - INFO - Intermediary server started
2018-04-29 21:53:56,655 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:54:00,088 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:54:00,307 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 21:54:04,191 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 21:54:04,772 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 21:54:14,517 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 21:54:24,031 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 21:54:24,037 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 21:54:24,040 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 21:54:24,058 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 21:54:24,096 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 21:54:24,129 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 21:54:24,226 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 21:54:24,267 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 21:54:24,350 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 21:54:25,216 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 21:54:25,575 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 21:54:25,581 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 21:54:25,589 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 21:54:25,605 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 21:54:25,666 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 21:54:26,359 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:54:26,972 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 21:54:27,020 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 21:54:27,090 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:54:27,147 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 21:54:27,238 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 21:54:27,300 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 21:54:27,399 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 21:54:27,452 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 21:54:27,514 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 21:54:27,522 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 21:54:27,581 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 21:54:27,597 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 21:54:27,794 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 21:54:29,691 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 21:54:34,275 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:54:35,492 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 21:56:36,670 - octoprint.server.preemptive_cache - INFO - ... done in 126.98s
2018-04-29 21:56:36,677 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 21:56:40,655 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 21:57:18,438 - octoprint.server.preemptive_cache - INFO - ... done in 41.76s
2018-04-29 21:57:18,441 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 21:57:48,104 - octoprint.server.preemptive_cache - INFO - ... done in 29.66s
2018-04-29 21:52:17,941 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:52:17,946 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 21:52:17,948 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 21:52:18,115 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 21:52:18,131 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 21:52:18,332 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:52:27,331 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:52:27,737 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 21:52:29,023 - octoprint.server - INFO - Intermediary server started
2018-04-29 21:52:29,027 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 21:52:32,215 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 21:52:32,411 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 21:59:54,008 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 21:59:54,543 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 22:00:04,028 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 22:00:12,813 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 22:00:12,819 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 22:00:12,821 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 22:00:12,838 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 22:00:12,874 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 22:00:12,905 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 22:00:12,995 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 22:00:13,029 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 22:00:13,096 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 22:00:13,964 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 22:00:14,299 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 22:00:14,304 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 22:00:14,317 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 22:00:14,328 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 22:00:14,379 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 22:00:15,085 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 22:00:15,103 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 22:00:15,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 22:00:15,283 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:00:15,348 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 22:00:15,507 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 22:00:15,554 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 22:00:15,558 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 22:00:15,628 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 22:00:15,631 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 22:00:15,768 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:00:16,809 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 22:00:17,041 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 22:00:21,909 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:00:22,762 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:00:45,257 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-04-29 22:00:49,719 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 91.96ms
2018-04-29 22:01:19,518 - octoprint.server.preemptive_cache - INFO - ... done in 62.48s
2018-04-29 22:01:19,521 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 22:01:45,789 - octoprint.server.preemptive_cache - INFO - ... done in 26.27s
2018-04-29 22:01:45,792 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 22:02:12,391 - octoprint.server.preemptive_cache - INFO - ... done in 26.60s
2018-04-29 22:08:22,525 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 22:08:22,532 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 22:08:22,538 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 22:08:22,828 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 22:08:22,873 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 22:08:23,282 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:16:35,264 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 22:16:35,724 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 22:16:35,907 - octoprint.server - INFO - Intermediary server started
2018-04-29 22:16:35,910 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:16:39,585 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 22:16:39,817 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 22:16:44,021 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 22:16:44,643 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 22:16:55,124 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 22:17:05,035 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 22:17:05,041 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 22:17:05,044 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 22:17:05,063 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 22:17:05,105 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 22:17:05,142 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 22:17:05,244 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 22:17:05,283 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 22:17:05,365 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 22:17:06,344 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 22:17:06,667 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 22:17:06,673 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 22:17:06,680 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 22:17:06,696 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 22:17:06,756 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 22:17:07,649 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:17:07,870 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 22:17:07,939 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 22:17:08,027 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 22:17:08,132 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 22:17:08,260 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 22:17:08,307 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 22:17:08,317 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 22:17:08,384 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 22:17:08,395 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 22:17:08,532 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:17:09,955 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 22:17:15,055 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:17:15,890 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:17:38,140 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Offline"
2018-04-29 22:19:26,777 - octoprint.server.preemptive_cache - INFO - ... done in 136.82s
2018-04-29 22:19:26,821 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 22:19:31,118 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 22:20:09,493 - octoprint.server.preemptive_cache - INFO - ... done in 42.67s
2018-04-29 22:20:09,496 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 22:20:39,564 - octoprint.server.preemptive_cache - INFO - ... done in 30.07s
2018-04-29 22:31:35,735 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 22:32:23,444 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 22:32:25,174 - octoprint.server - INFO - Shutting down...
2018-04-29 22:32:25,246 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 22:32:40,650 - octoprint.server - WARNING - Event loop was still busy processing after 15.0s, shutting down anyhow
2018-04-29 22:32:40,653 - octoprint.server - INFO - Goodbye!
2018-04-29 22:33:16,832 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 22:33:16,839 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 22:33:16,841 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 22:33:17,025 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 22:33:18,284 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 22:33:18,516 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:33:44,746 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 22:33:45,200 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 22:33:45,354 - octoprint.server - INFO - Intermediary server started
2018-04-29 22:33:45,357 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:33:48,846 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 22:33:49,104 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 22:33:53,159 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 22:33:53,764 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 22:34:04,084 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 22:34:13,781 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 22:34:13,786 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 22:34:13,789 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 22:34:13,808 - octoprint.plugin.core - INFO - Initialized 12 plugin implementation(s)
2018-04-29 22:34:13,849 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 22:34:13,883 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 22:34:13,982 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 22:34:14,025 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 22:34:14,109 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 22:34:15,060 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 22:34:15,466 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 22:34:15,472 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 22:34:15,479 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 22:34:15,496 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 22:34:15,556 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 22:34:16,429 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:34:16,682 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 22:34:16,735 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 22:34:16,819 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 22:34:16,865 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 22:34:16,930 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 22:34:16,962 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 22:34:17,065 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 22:34:17,166 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 22:34:17,234 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 22:34:17,241 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 22:34:17,319 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 22:34:17,335 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 22:34:17,579 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:34:19,527 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 22:34:24,717 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:34:25,480 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:34:29,101 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 22:35:07,003 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-04-29 22:35:32,177 - octoprint.server.preemptive_cache - INFO - ... done in 72.65s
2018-04-29 22:35:32,181 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 22:36:01,143 - octoprint.server.preemptive_cache - INFO - ... done in 28.96s
2018-04-29 22:36:01,146 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 22:36:30,418 - octoprint.server.preemptive_cache - INFO - ... done in 29.27s
2018-04-29 22:41:36,459 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 22:41:46,270 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 22:43:41,203 - octoprint.plugins.pluginmanager - INFO - Installing plugin from https://github.com/BillyBlaze/OctoPrint-FullScreen/archive/master.zip
2018-04-29 22:44:48,517 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:44:52,157 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 12 mixin implementations, 7 hook handlers
2018-04-29 22:44:52,174 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| !Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 22:44:52,177 - octoprint.plugins.pluginmanager - INFO - The plugin was installed successfully: Fullscreen Plugin, version 0.0.4
2018-04-29 22:45:47,267 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2018-04-29 22:45:47,858 - octoprint.server - INFO - Shutting down...
2018-04-29 22:45:47,913 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 22:45:48,413 - octoprint.events - INFO - Event loop shut down
2018-04-29 22:45:48,463 - octoprint.server - INFO - Goodbye!
2018-04-29 22:46:05,491 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 22:46:05,494 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 22:46:05,497 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 22:46:05,625 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 22:46:05,640 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 22:46:05,801 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:46:14,552 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 22:46:14,967 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 22:46:15,099 - octoprint.server - INFO - Intermediary server started
2018-04-29 22:46:15,102 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 22:46:18,652 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 22:46:18,871 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 22:46:22,972 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 22:46:23,573 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 22:46:33,288 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 22:46:42,788 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 22:46:42,794 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 22:46:42,796 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 22:46:42,814 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 22:46:42,854 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 22:46:42,890 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 22:46:42,990 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 22:46:43,031 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 22:46:43,113 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 22:46:44,040 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 22:46:44,220 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 22:46:44,227 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 22:46:44,235 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 22:46:44,251 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 22:46:44,314 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 22:46:45,093 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 22:46:45,112 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 22:46:45,158 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 22:46:45,206 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 22:46:45,282 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 22:46:45,322 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 22:46:45,434 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:46:45,424 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 22:46:45,499 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 22:46:45,559 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 22:46:45,584 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 22:46:45,660 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 22:46:45,674 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 22:46:45,880 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 22:46:47,900 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 22:46:53,936 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:46:54,220 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 22:47:00,809 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 22:47:57,229 - octoprint.server.preemptive_cache - INFO - ... done in 69.33s
2018-04-29 22:47:57,232 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 22:48:26,273 - octoprint.server.preemptive_cache - INFO - ... done in 29.04s
2018-04-29 22:48:26,276 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 22:48:29,370 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 22:48:31,397 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 22:49:09,215 - octoprint.server.preemptive_cache - INFO - ... done in 42.94s
2018-04-29 23:01:14,979 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 23:08:21,078 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:08:22,239 - octoprint.server - INFO - Shutting down...
2018-04-29 23:08:22,543 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 23:08:37,913 - octoprint.server - WARNING - Event loop was still busy processing after 15.0s, shutting down anyhow
2018-04-29 23:08:37,917 - octoprint.server - INFO - Goodbye!
2018-04-29 23:09:11,803 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:09:11,815 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 23:09:11,818 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:09:11,997 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 23:09:13,318 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 23:09:13,611 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:09:39,407 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:09:39,865 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 23:09:40,020 - octoprint.server - INFO - Intermediary server started
2018-04-29 23:09:40,022 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:09:43,705 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:09:43,930 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 23:09:48,119 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 23:09:48,736 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 23:09:59,078 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:10:09,197 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 23:10:09,203 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 23:10:09,206 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 23:10:09,224 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 23:10:09,267 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 23:10:09,302 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 23:10:09,403 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388599808
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 23:10:09,448 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 23:10:09,533 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 23:10:10,518 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 23:10:10,894 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 23:10:10,901 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 23:10:10,909 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 23:10:10,925 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 23:10:10,993 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 23:10:11,940 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:10:12,003 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 23:10:12,063 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 23:10:12,173 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:10:12,246 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 23:10:12,326 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 23:10:12,432 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:10:12,562 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 23:10:12,572 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 23:10:12,640 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 23:10:12,649 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 23:10:12,723 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 23:10:12,751 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 23:10:12,957 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:10:14,918 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 23:10:20,753 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:10:21,344 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:10:39,120 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:11:28,632 - octoprint.server.preemptive_cache - INFO - ... done in 73.72s
2018-04-29 23:11:28,635 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 23:11:42,482 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:11:45,523 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:12:14,385 - octoprint.server.preemptive_cache - INFO - ... done in 45.75s
2018-04-29 23:12:14,391 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 23:12:45,189 - octoprint.server.preemptive_cache - INFO - ... done in 30.80s
2018-04-29 23:19:37,560 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:19:38,238 - octoprint.server - INFO - Shutting down...
2018-04-29 23:19:39,061 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 23:19:44,414 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb25ca430>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-04-29 23:19:44,447 - octoprint.events - INFO - Event loop shut down
2018-04-29 23:19:44,474 - octoprint.server - INFO - Goodbye!
2018-04-29 23:20:19,865 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:20:19,871 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 23:20:19,874 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:20:20,050 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 23:20:20,069 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 23:20:20,289 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:20:46,271 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:20:46,725 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 23:20:46,883 - octoprint.server - INFO - Intermediary server started
2018-04-29 23:20:46,886 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:20:50,459 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:20:50,684 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 23:20:54,840 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 23:20:55,459 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 23:21:05,980 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:21:15,938 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 23:21:15,944 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 23:21:15,947 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 23:21:15,965 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 23:21:16,007 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 23:21:16,043 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 23:21:16,145 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 23:21:16,188 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 23:21:16,273 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 23:21:17,268 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 23:21:17,291 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 23:21:17,298 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 23:21:17,306 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 23:21:17,322 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 23:21:17,382 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 23:21:18,243 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:21:18,534 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 23:21:18,598 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 23:21:18,692 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:21:18,759 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 23:21:18,817 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 23:21:18,917 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:21:19,036 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 23:21:19,037 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 23:21:19,110 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 23:21:19,114 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 23:21:19,198 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 23:21:19,213 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 23:21:19,462 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:21:21,519 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 23:21:26,748 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:21:27,781 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:21:37,873 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:22:37,511 - octoprint.server.preemptive_cache - INFO - ... done in 75.99s
2018-04-29 23:22:37,518 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 23:23:38,973 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:23:43,048 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:23:45,254 - octoprint.server.preemptive_cache - INFO - ... done in 67.74s
2018-04-29 23:23:45,260 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 23:24:13,654 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:24:16,009 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:24:36,851 - octoprint.server.preemptive_cache - INFO - ... done in 51.59s
2018-04-29 23:30:59,289 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:31:00,783 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:31:01,056 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:31:01,451 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:31:31,210 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 23:31:31,214 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 23:31:31,548 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-04-29 23:33:30,603 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:33:31,879 - octoprint.server - INFO - Shutting down...
2018-04-29 23:33:31,962 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 23:33:47,547 - octoprint.server - WARNING - Event loop was still busy processing after 15.0s, shutting down anyhow
2018-04-29 23:33:47,551 - octoprint.server - INFO - Goodbye!
2018-04-29 23:35:02,597 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:35:02,606 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 23:35:02,616 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:35:02,994 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 23:35:05,137 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 23:35:05,612 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:35:28,322 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:35:29,339 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 23:35:29,705 - octoprint.server - INFO - Intermediary server started
2018-04-29 23:35:29,719 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:35:38,920 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:35:39,534 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 23:35:48,706 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 23:35:50,085 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 23:36:16,337 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:36:43,506 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 23:36:43,524 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 23:36:43,532 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 23:36:43,583 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 23:36:43,703 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 23:36:43,806 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 23:36:44,098 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 23:36:44,203 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 23:36:44,395 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 23:36:46,549 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 23:36:46,696 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 23:36:46,702 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 23:36:46,732 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 23:36:46,757 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 23:36:46,913 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 23:36:48,385 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:36:50,227 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 23:36:50,305 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 23:36:50,561 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:36:50,755 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 23:36:50,801 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 23:36:50,924 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:36:51,205 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 23:36:51,263 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 23:36:51,453 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 23:36:51,464 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 23:36:51,623 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 23:36:51,672 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 23:36:52,304 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:36:57,032 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 23:37:09,441 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:37:13,080 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:37:31,930 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:42:21,426 - octoprint.server.preemptive_cache - INFO - ... done in 324.39s
2018-04-29 23:42:21,459 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 23:42:29,212 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:42:36,376 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:45:35,032 - octoprint.server.preemptive_cache - INFO - ... done in 193.57s
2018-04-29 23:45:35,042 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 23:48:52,929 - octoprint.server.preemptive_cache - INFO - ... done in 197.89s
2018-04-29 23:50:28,795 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:50:29,360 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-29 23:50:31,609 - octoprint.server - INFO - Shutting down...
2018-04-29 23:50:32,288 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-29 23:50:33,019 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xaa687a10>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-04-29 23:50:33,044 - octoprint.events - INFO - Event loop shut down
2018-04-29 23:50:33,075 - octoprint.server - INFO - Goodbye!
2018-04-29 23:51:11,813 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:51:11,820 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-29 23:51:11,823 - octoprint.startup - INFO - ******************************************************************************
2018-04-29 23:51:22,613 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-29 23:51:24,209 - octoprint.startup - INFO - Blacklist processing done
2018-04-29 23:51:24,490 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:51:40,211 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:51:40,777 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-29 23:51:41,687 - octoprint.server - INFO - Intermediary server started
2018-04-29 23:51:41,690 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-29 23:51:46,411 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-29 23:51:46,711 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-29 23:51:52,188 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-29 23:51:53,041 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-29 23:52:06,450 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-29 23:52:18,971 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-29 23:52:18,977 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-29 23:52:18,980 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-29 23:52:18,998 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-29 23:52:19,057 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-29 23:52:19,098 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-29 23:52:19,220 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-29 23:52:19,284 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-29 23:52:19,400 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-29 23:52:20,714 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-29 23:52:20,802 - octoprint.server - INFO - Intermediary server shut down
2018-04-29 23:52:20,809 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-29 23:52:20,818 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-29 23:52:20,835 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-29 23:52:20,909 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-29 23:52:22,082 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:52:22,519 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-29 23:52:22,607 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-29 23:52:22,723 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:52:22,814 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-29 23:52:22,884 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-29 23:52:23,010 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-29 23:52:23,147 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-29 23:52:23,174 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-29 23:52:23,274 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-29 23:52:23,286 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-29 23:52:23,394 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-29 23:52:23,407 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-29 23:52:23,691 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-29 23:52:25,703 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-29 23:52:31,173 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-29 23:52:32,373 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:52:33,810 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-29 23:54:03,421 - octoprint.server.preemptive_cache - INFO - ... done in 97.72s
2018-04-29 23:54:03,444 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-29 23:54:45,743 - octoprint.server.preemptive_cache - INFO - ... done in 42.30s
2018-04-29 23:54:45,746 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-29 23:55:27,083 - octoprint.server.preemptive_cache - INFO - ... done in 41.34s
2018-04-29 23:58:38,314 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-29 23:58:41,693 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-30 00:02:14,394 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-30 00:02:14,410 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:603: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if source == target:
2018-04-30 00:02:51,794 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing"
2018-04-30 00:02:52,143 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-30 00:03:51,444 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-30 00:06:40,790 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 00:07:07,862 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-04-30 00:16:59,504 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.198
2018-04-30 00:18:21,695 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.198
2018-04-30 00:21:40,793 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 00:36:40,796 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 00:51:40,799 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 00:58:48,525 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.222
2018-04-30 00:59:57,213 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.222
2018-04-30 01:05:11,284 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.131
2018-04-30 01:06:40,806 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 01:06:43,244 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.131
2018-04-30 01:21:40,809 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 01:36:40,813 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 01:51:40,818 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 02:06:40,826 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 02:21:40,829 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 02:36:40,833 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 02:51:40,837 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 03:06:40,841 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 03:21:40,844 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 03:36:40,848 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 03:51:40,854 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 04:06:40,873 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 04:21:40,889 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 04:36:40,894 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 04:51:40,901 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 05:06:40,907 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 05:21:40,913 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 05:36:40,919 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 05:51:40,923 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 06:06:40,928 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 06:21:40,932 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 06:36:40,937 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 06:51:40,943 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 07:06:40,946 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 07:21:40,950 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 07:36:40,956 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 07:51:40,962 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 08:06:40,966 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 08:21:40,969 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 08:36:40,974 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 08:51:40,977 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 09:06:40,982 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 09:21:40,986 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 09:36:40,993 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 09:51:40,997 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 10:06:41,000 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 10:21:41,009 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 10:36:41,014 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 10:51:41,020 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 11:06:41,032 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 11:21:41,037 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 11:36:41,043 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 11:51:41,047 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 11:57:25,631 - octoprint.util.comm - INFO - Finished in 42873.853 s.
2018-04-30 11:57:25,677 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2018-04-30 12:06:41,051 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 12:21:41,056 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 12:36:41,061 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 12:51:41,065 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 13:06:41,070 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 13:21:41,075 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 13:36:41,079 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 13:51:41,082 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 14:06:41,087 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 14:21:41,091 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 14:36:41,098 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 14:51:41,103 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 15:06:41,107 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 15:21:41,111 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 15:36:41,116 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 15:51:41,120 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 16:06:41,124 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 16:21:41,129 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 16:36:41,133 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 16:51:41,138 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 17:06:41,144 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 17:08:49,924 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-04-30 17:09:33,747 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.2s
2018-04-30 17:09:36,149 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.84s
2018-04-30 17:09:37,632 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.89s
2018-04-30 17:09:39,735 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 1.4s
2018-04-30 17:09:41,735 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 1.0s
2018-04-30 17:21:41,149 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 17:27:49,334 - octoprint.filemanager.analysis - INFO - Starting analysis of local:CableClip_PET.gcode
2018-04-30 17:27:49,518 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/CableClip_PET.gcode
2018-04-30 17:28:40,358 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing"
2018-04-30 17:28:40,747 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-30 17:36:41,153 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 17:44:51,910 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-04-30 17:51:41,161 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 18:06:41,169 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 18:21:41,177 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 18:36:41,191 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 18:51:41,207 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 19:06:41,231 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 19:12:26,045 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-04-30 19:13:15,232 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Cancelling"
2018-04-30 19:13:15,238 - octoprint.filemanager.analysis - INFO - Starting analysis of local:CableClip_PET.gcode
2018-04-30 19:13:15,312 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/CableClip_PET.gcode
2018-04-30 19:19:51,922 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-04-30 19:19:52,616 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-04-30 19:20:57,447 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2018-04-30 19:20:59,604 - octoprint.server - INFO - Shutting down...
2018-04-30 19:20:59,691 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-30 19:21:01,487 - octoprint.events - INFO - Event loop shut down
2018-04-30 19:21:01,515 - octoprint.server - INFO - Goodbye!
2018-04-30 19:21:47,696 - octoprint.startup - INFO - ******************************************************************************
2018-04-30 19:21:47,702 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-04-30 19:21:47,709 - octoprint.startup - INFO - ******************************************************************************
2018-04-30 19:21:48,072 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-30 19:21:49,816 - octoprint.startup - INFO - Blacklist processing done
2018-04-30 19:21:50,320 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-30 19:22:14,279 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-30 19:22:15,373 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-30 19:22:15,730 - octoprint.server - INFO - Intermediary server started
2018-04-30 19:22:15,737 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-04-30 19:22:25,110 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-04-30 19:22:25,682 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-04-30 19:22:35,172 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-04-30 19:22:36,772 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-30 19:23:03,128 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-04-30 19:23:28,268 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-04-30 19:23:28,273 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-30 19:23:28,284 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-30 19:23:28,323 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-04-30 19:23:28,425 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-04-30 19:23:28,514 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-04-30 19:23:28,779 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-04-30 19:23:28,892 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-04-30 19:23:29,117 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-04-30 19:23:31,552 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-30 19:23:31,777 - octoprint.server - INFO - Intermediary server shut down
2018-04-30 19:23:31,790 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-30 19:23:31,806 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-30 19:23:31,843 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-30 19:23:33,667 - octoprint.filemanager.analysis - INFO - Starting analysis of local:CableClip_PET.gcode
2018-04-30 19:23:33,698 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue
2018-04-30 19:23:33,776 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/CableClip_PET.gcode
2018-04-30 19:23:38,410 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-04-30 19:23:39,320 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-30 19:23:39,783 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-04-30 19:23:40,096 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-04-30 19:23:40,110 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-30 19:23:40,344 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-04-30 19:23:40,482 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-30 19:23:40,797 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-04-30 19:23:41,008 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-04-30 19:23:41,105 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-04-30 19:23:41,149 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-04-30 19:23:41,486 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-04-30 19:23:41,488 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-04-30 19:23:47,565 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-04-30 19:23:49,246 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-04-30 19:24:24,618 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-04-30 19:24:27,059 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-30 19:24:51,762 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-04-30 19:33:40,787 - octoprint.server.preemptive_cache - INFO - ... done in 591.54s
2018-04-30 19:33:40,798 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-04-30 19:36:12,119 - octoprint.server.preemptive_cache - INFO - ... done in 151.32s
2018-04-30 19:36:12,126 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-04-30 19:37:15,406 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 19:38:29,863 - octoprint.server.preemptive_cache - INFO - ... done in 137.74s
2018-04-30 19:51:28,585 - octoprint.filemanager.analysis - INFO - Analysis of entry local:CableClip_PET.gcode finished, needed 1674.92s
2018-04-30 19:52:15,410 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 20:01:36,173 - octoprint.filemanager.analysis - INFO - Starting analysis of local:mag_well_wall_mount_-_no_catch_x2_PET.gcode
2018-04-30 20:01:36,232 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/mag_well_wall_mount_-_no_catch_x2_PET.gcode
2018-04-30 20:07:02,595 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-04-30 20:07:15,423 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 20:09:46,989 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-04-30 20:09:47,634 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-04-30 20:11:11,462 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing"
2018-04-30 20:11:11,578 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-30 20:11:22,454 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-04-30 20:22:15,448 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 20:37:15,452 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 20:52:15,458 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 21:07:15,463 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 21:22:15,473 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 21:37:15,479 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 21:52:15,487 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 22:07:15,498 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 22:22:15,511 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 22:37:15,535 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 22:52:15,559 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 23:07:15,571 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 23:22:15,575 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 23:37:16,613 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-04-30 23:52:16,625 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 00:07:16,994 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 00:22:17,001 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 00:37:17,009 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 00:52:17,015 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 01:07:17,040 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 01:22:17,064 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 01:37:17,071 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 01:52:17,076 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 02:07:17,086 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 02:22:17,092 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 02:37:17,102 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 02:52:17,108 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 03:07:17,114 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 03:22:17,126 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 03:37:17,147 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 03:52:17,170 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 04:07:17,192 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 04:22:17,224 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 04:37:17,227 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 04:52:17,236 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 05:07:17,247 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 05:22:17,268 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 05:37:17,281 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 05:52:17,291 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 06:07:17,297 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 06:22:17,303 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 06:35:02,788 - octoprint.util.comm - INFO - Finished in 37431.335 s.
2018-05-01 06:35:02,934 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2018-05-01 06:35:02,941 - octoprint.filemanager.analysis - INFO - Starting analysis of local:mag_well_wall_mount_-_no_catch_x2_PET.gcode
2018-05-01 06:35:03,003 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/mag_well_wall_mount_-_no_catch_x2_PET.gcode
2018-05-01 06:35:51,149 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 06:37:13,542 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 2.6s
2018-05-01 06:37:17,307 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 06:37:23,279 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 1.8s
2018-05-01 06:37:27,424 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 1.6s
2018-05-01 06:37:31,820 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 1.9s
2018-05-01 06:37:46,183 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 2.1s
2018-05-01 06:37:58,148 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 06:38:01,696 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 06:41:22,927 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 06:41:22,991 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 06:41:23,499 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 06:41:24,050 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 06:44:26,172 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/ (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-01 06:44:26,185 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-01 06:44:28,085 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-05-01 06:52:18,881 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 06:55:34,530 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 07:07:18,893 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 07:08:06,138 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 07:22:18,940 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 07:23:37,991 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 07:24:35,467 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 07:28:27,026 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 07:28:27,618 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 07:35:13,337 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 07:35:13,937 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 07:37:18,960 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 07:46:40,025 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 07:46:40,555 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 07:49:05,561 - octoprint.filemanager.analysis - INFO - Analysis of entry local:mag_well_wall_mount_-_no_catch_x2_PET.gcode finished, needed 4442.60s
2018-05-01 07:52:18,966 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 07:53:08,571 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 07:53:09,189 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 08:07:18,973 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 08:07:44,488 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 08:07:45,067 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 08:08:07,370 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 08:22:18,989 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 08:37:18,999 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 08:52:19,015 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 09:07:19,022 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 09:22:19,030 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 09:37:19,037 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 09:52:19,041 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 10:07:19,044 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 10:22:19,048 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 10:37:19,055 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 10:52:19,059 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 11:07:19,063 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 11:22:19,068 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 11:37:19,073 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 11:52:19,076 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 12:07:19,080 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 12:22:19,084 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 12:37:19,089 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 12:52:19,093 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 13:07:19,097 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 13:22:19,101 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 13:37:19,105 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 13:52:19,108 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 14:07:19,113 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 14:22:19,128 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 14:37:19,132 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 14:52:19,140 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 15:07:19,144 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 15:13:39,243 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 15:13:45,233 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.3s
2018-05-01 15:13:47,413 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.84s
2018-05-01 15:13:48,846 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.82s
2018-05-01 15:13:50,401 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.97s
2018-05-01 15:13:52,081 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.85s
2018-05-01 15:22:19,147 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 15:37:19,152 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 15:52:19,155 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 16:07:19,160 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 16:22:19,167 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 16:37:19,172 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 16:41:39,404 - octoprint - ERROR - Exception on /api/util/test [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/util/flask.py", line 1132, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/flask_principal/__init__.py", line 198, in _decorated
rv = f(*args, **kw)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/api/__init__.py", line 384, in utilTestPath
content = base64.standard_b64encode(response.content)
AttributeError: 'NoneType' object has no attribute 'content'
2018-05-01 16:41:39,462 - tornado.access - ERROR - 500 POST /api/util/test (127.0.0.1) 209.18ms
2018-05-01 16:52:19,177 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 16:53:15,120 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2018-05-01 16:53:16,104 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 16:53:18,366 - octoprint.server - INFO - Shutting down...
2018-05-01 16:53:19,359 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-01 16:53:24,494 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb2581430>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-05-01 16:53:24,540 - octoprint.events - INFO - Event loop shut down
2018-05-01 16:53:24,563 - octoprint.server - INFO - Goodbye!
2018-05-01 17:08:04,927 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 17:08:04,931 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-01 17:08:04,935 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 17:08:05,141 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-01 17:08:06,408 - octoprint.startup - INFO - Blacklist processing done
2018-05-01 17:08:06,636 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 17:08:16,832 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 17:08:17,322 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-01 17:08:17,482 - octoprint.server - INFO - Intermediary server started
2018-05-01 17:08:17,485 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 17:08:21,230 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 17:08:21,456 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-01 17:08:25,604 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-01 17:08:26,247 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-01 17:08:36,807 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 17:08:46,798 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-01 17:08:46,805 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-01 17:08:46,809 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-01 17:08:46,828 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-01 17:08:46,874 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-01 17:08:46,910 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-01 17:08:47,035 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-01 17:08:47,077 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-01 17:08:47,165 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-01 17:08:48,174 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-01 17:08:48,659 - octoprint.server - INFO - Intermediary server shut down
2018-05-01 17:08:48,667 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-01 17:08:48,676 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-01 17:08:48,692 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-01 17:08:48,751 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-01 17:08:49,570 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-01 17:08:50,222 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-01 17:08:50,335 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-01 17:08:50,471 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 17:08:50,537 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-01 17:08:50,624 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-01 17:08:50,703 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 17:08:50,796 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-01 17:08:50,851 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-01 17:08:50,905 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-01 17:08:50,912 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-01 17:08:51,020 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-01 17:08:51,034 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-01 17:08:51,223 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-01 17:08:53,350 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-01 17:09:01,072 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-05-01 17:09:02,504 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-05-01 17:10:14,604 - octoprint.server.preemptive_cache - INFO - ... done in 81.25s
2018-05-01 17:10:14,610 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-01 17:11:09,774 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 17:11:20,220 - octoprint.server.preemptive_cache - INFO - ... done in 65.61s
2018-05-01 17:11:20,228 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-01 17:12:08,260 - octoprint.server.preemptive_cache - INFO - ... done in 48.03s
2018-05-01 17:13:56,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Shelf_2.gcode
2018-05-01 17:13:57,081 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Shelf_2.gcode
2018-05-01 17:15:24,302 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 17:15:24,672 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 17:16:01,216 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Shelf_2.gcode finished, needed 124.33s
2018-05-01 17:16:02,395 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Shelf_1.gcode
2018-05-01 17:16:02,410 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Shelf_1.gcode
2018-05-01 17:17:21,156 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Shelf_1.gcode finished, needed 78.76s
2018-05-01 17:17:22,424 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Shelf_3.gcode
2018-05-01 17:17:22,439 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Shelf_3.gcode
2018-05-01 17:20:05,151 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Shelf_3.gcode finished, needed 162.73s
2018-05-01 17:20:06,484 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Supports.gcode
2018-05-01 17:20:06,498 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Supports.gcode
2018-05-01 17:20:48,246 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 17:23:17,338 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 17:26:10,656 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Supports.gcode finished, needed 364.17s
2018-05-01 17:26:12,084 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Walls_front_left.gcode
2018-05-01 17:26:12,096 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Walls_front_left.gcode
2018-05-01 17:29:18,815 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Walls_front_left.gcode finished, needed 186.73s
2018-05-01 17:29:20,299 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Walls_front_right.gcode
2018-05-01 17:29:20,312 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Walls_front_right.gcode
2018-05-01 17:32:23,329 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 17:32:36,580 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Walls_front_right.gcode finished, needed 196.28s
2018-05-01 17:32:38,855 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Walls_rear_with_backstop_left.gcode
2018-05-01 17:32:38,880 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Walls_rear_with_backstop_left.gcode
2018-05-01 17:35:06,841 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Walls_rear_with_backstop_left.gcode finished, needed 147.99s
2018-05-01 17:35:08,546 - octoprint.filemanager.analysis - INFO - Starting analysis of local:can_dispenser/Can_Holder_Walls_rear_with_backstop_right.gcode
2018-05-01 17:35:08,570 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/can_dispenser/Can_Holder_Walls_rear_with_backstop_right.gcode
2018-05-01 17:38:17,350 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 17:39:19,797 - octoprint.filemanager.analysis - INFO - Analysis of entry local:can_dispenser/Can_Holder_Walls_rear_with_backstop_right.gcode finished, needed 251.25s
2018-05-01 17:39:43,787 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing"
2018-05-01 17:39:43,897 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 17:43:49,243 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-05-01 17:53:17,382 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 18:08:17,385 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 18:23:17,391 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 18:38:17,398 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 18:53:17,405 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 19:08:17,409 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 19:23:17,416 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 19:38:17,420 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 19:53:17,426 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 20:08:17,430 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 20:23:17,437 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 20:38:17,443 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 20:53:17,456 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 21:08:17,460 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 21:23:17,466 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 21:35:32,117 - octoprint.util.comm - INFO - Finished in 14148.332 s.
2018-05-01 21:35:32,183 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2018-05-01 21:38:10,672 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [image2 @ 0x2421800] Could find no file with path '/mnt/nfs/tl/tmp/Can_Holder_Walls_rear_with_backstop_right_20180501173943-%d.jpg' and index in the range 0-4
/mnt/nfs/tl/tmp/Can_Holder_Walls_rear_with_backstop_right_20180501173943-%d.jpg: No such file or directory
/home/pi/timelapse.sh: line 3: [: missing `]'
2018-05-01 21:38:17,469 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 21:46:50,546 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 21:46:51,198 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 21:47:01,244 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 1.2s
2018-05-01 21:47:03,372 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.82s
2018-05-01 21:47:04,659 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.8s
2018-05-01 21:47:06,060 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.97s
2018-05-01 21:47:07,589 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.84s
2018-05-01 21:48:18,496 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 21:48:19,657 - octoprint.server - INFO - Shutting down...
2018-05-01 21:48:19,745 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-01 21:48:21,060 - octoprint.events - INFO - Event loop shut down
2018-05-01 21:48:21,097 - octoprint.server - INFO - Goodbye!
2018-05-01 21:49:43,346 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 21:49:43,351 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-01 21:49:43,354 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 21:49:43,536 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-01 21:49:45,781 - octoprint.startup - INFO - Blacklist processing done
2018-05-01 21:49:46,058 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 21:49:56,215 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 21:49:56,712 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-01 21:49:56,864 - octoprint.server - INFO - Intermediary server started
2018-05-01 21:49:56,867 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 21:50:00,529 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 21:50:00,773 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-01 21:50:06,062 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-01 21:50:06,703 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-01 21:50:17,359 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 21:50:27,352 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-01 21:50:27,358 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-01 21:50:27,361 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-01 21:50:27,379 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-01 21:50:27,423 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-01 21:50:27,458 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-01 21:50:27,561 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-01 21:50:27,635 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-01 21:50:27,719 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-01 21:50:28,732 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-01 21:50:28,876 - octoprint.server - INFO - Intermediary server shut down
2018-05-01 21:50:28,883 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-01 21:50:28,891 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-01 21:50:28,909 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-01 21:50:29,049 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-01 21:50:30,285 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-01 21:50:30,334 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-01 21:50:30,408 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 21:50:30,485 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-01 21:50:30,544 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-01 21:50:30,653 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 21:50:30,746 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-01 21:50:30,783 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-01 21:50:30,823 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-01 21:50:30,838 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-01 21:50:30,893 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-01 21:50:30,902 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-01 21:50:31,542 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-05-01 21:50:32,957 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-01 21:50:33,145 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-05-01 21:50:42,630 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-01 21:50:43,433 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-01 21:51:47,724 - octoprint.server.preemptive_cache - INFO - ... done in 74.77s
2018-05-01 21:51:47,728 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-01 21:52:07,080 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 21:52:23,678 - octoprint.server.preemptive_cache - INFO - ... done in 35.95s
2018-05-01 21:52:23,681 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-01 21:52:54,995 - octoprint.server.preemptive_cache - INFO - ... done in 31.31s
2018-05-01 21:54:18,566 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [image2 @ 0x8a3800] Could find no file with path '/mnt/nfs/tl/tmp/Can_Holder_Walls_rear_with_backstop_right_20180501173943-%d.jpg' and index in the range 0-4
/mnt/nfs/tl/tmp/Can_Holder_Walls_rear_with_backstop_right_20180501173943-%d.jpg: No such file or directory
2018-05-01 22:02:23,848 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 22:02:25,254 - octoprint.server - INFO - Shutting down...
2018-05-01 22:02:26,250 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-01 22:02:31,478 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xa9bd7390>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-05-01 22:02:31,512 - octoprint.events - INFO - Event loop shut down
2018-05-01 22:02:31,551 - octoprint.server - INFO - Goodbye!
2018-05-01 22:03:35,164 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 22:03:35,170 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-01 22:03:35,173 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 22:03:35,347 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-01 22:03:35,365 - octoprint.startup - INFO - Blacklist processing done
2018-05-01 22:03:35,586 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 22:03:45,765 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 22:03:46,219 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-01 22:03:46,376 - octoprint.server - INFO - Intermediary server started
2018-05-01 22:03:46,379 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 22:03:50,107 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 22:03:50,326 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-01 22:03:55,629 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-01 22:03:56,302 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-01 22:04:07,064 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 22:04:17,183 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-01 22:04:17,189 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-01 22:04:17,192 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-01 22:04:17,210 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-01 22:04:17,253 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-01 22:04:17,289 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-01 22:04:17,391 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-01 22:04:17,434 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-01 22:04:17,520 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-01 22:04:18,556 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-01 22:04:18,809 - octoprint.server - INFO - Intermediary server shut down
2018-05-01 22:04:18,815 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-01 22:04:18,823 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-01 22:04:18,839 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-01 22:04:19,001 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-01 22:04:19,813 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-01 22:04:20,158 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-01 22:04:20,218 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-01 22:04:20,316 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 22:04:20,392 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-01 22:04:20,433 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-01 22:04:20,536 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 22:04:20,635 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-01 22:04:20,657 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-01 22:04:20,730 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-01 22:04:20,720 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-01 22:04:20,834 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-01 22:04:20,859 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-01 22:04:21,022 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-01 22:04:23,223 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-01 22:04:25,093 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 22:04:29,600 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-01 22:04:30,573 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-01 22:05:39,835 - octoprint.server.preemptive_cache - INFO - ... done in 76.61s
2018-05-01 22:05:39,839 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-01 22:06:10,524 - octoprint.server.preemptive_cache - INFO - ... done in 30.69s
2018-05-01 22:06:10,527 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-01 22:06:41,588 - octoprint.server.preemptive_cache - INFO - ... done in 31.06s
2018-05-01 22:11:40,323 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 22:11:41,224 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 22:11:51,896 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [NULL @ 0x16ec9e0] Unable to find a suitable output format for '[out]'
[out]: Invalid argument
2018-05-01 22:15:11,184 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [NULL @ 0x154b9e0] Unable to find a suitable output format for '[out]'
[out]: Invalid argument
2018-05-01 22:16:37,925 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [NULL @ 0xe329e0] Unable to find a suitable output format for '[out]'
[out]: Invalid argument
2018-05-01 22:18:46,232 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 22:19:31,058 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [NULL @ 0xddd9e0] Unable to find a suitable output format for '[out]'
[out]: Invalid argument
2018-05-01 22:24:16,613 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: [NULL @ 0x230b9e0] Unable to find a suitable output format for '[out]'
[out]: Invalid argument
2018-05-01 22:33:46,238 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 22:47:25,231 - octoprint.filemanager.analysis - INFO - Starting analysis of local:rpi-zero-frame_PET.gcode
2018-05-01 22:47:25,269 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/rpi-zero-frame_PET.gcode
2018-05-01 22:47:38,892 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing"
2018-05-01 22:47:38,987 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 22:48:46,242 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 22:51:42,701 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-05-01 23:03:46,246 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 23:18:46,250 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 23:21:59,138 - octoprint.util.comm - INFO - Finished in 2060.253 s.
2018-05-01 23:21:59,199 - octoprint.util.comm - INFO - Changing monitoring state from "Printing" to "Operational"
2018-05-01 23:21:59,214 - octoprint.filemanager.analysis - INFO - Starting analysis of local:rpi-zero-frame_PET.gcode
2018-05-01 23:21:59,263 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python2 -m octoprint analysis gcode --speed-x=10200 --speed-y=10200 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/rpi-zero-frame_PET.gcode
2018-05-01 23:25:23,980 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-01 23:26:10,725 - octoprint.filemanager.analysis - INFO - Analysis of entry local:rpi-zero-frame_PET.gcode finished, needed 251.51s
2018-05-01 23:33:46,254 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 23:47:42,333 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-01 23:47:44,147 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 23:48:46,259 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-01 23:49:29,971 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2018-05-01 23:49:30,806 - octoprint.server - INFO - Shutting down...
2018-05-01 23:49:31,354 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-01 23:49:32,001 - octoprint.events - INFO - Event loop shut down
2018-05-01 23:49:32,041 - octoprint.server - INFO - Goodbye!
2018-05-01 23:49:51,333 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 23:49:51,336 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-01 23:49:51,339 - octoprint.startup - INFO - ******************************************************************************
2018-05-01 23:49:51,521 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-01 23:49:52,775 - octoprint.startup - INFO - Blacklist processing done
2018-05-01 23:49:52,999 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 23:50:02,798 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 23:50:03,244 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-01 23:50:03,391 - octoprint.server - INFO - Intermediary server started
2018-05-01 23:50:03,394 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-01 23:50:07,070 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-01 23:50:07,289 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-01 23:50:12,644 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-01 23:50:13,255 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-01 23:50:23,671 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-01 23:50:33,773 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-01 23:50:33,779 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-01 23:50:33,782 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-01 23:50:33,800 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-01 23:50:33,843 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-01 23:50:33,878 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-01 23:50:33,979 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-01 23:50:34,022 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-01 23:50:34,107 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-01 23:50:35,100 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-01 23:50:35,214 - octoprint.server - INFO - Intermediary server shut down
2018-05-01 23:50:35,221 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-01 23:50:35,229 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-01 23:50:35,245 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-01 23:50:35,398 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-01 23:50:36,193 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-01 23:50:36,559 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-01 23:50:36,620 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-01 23:50:36,703 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 23:50:36,763 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-01 23:50:36,830 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-01 23:50:36,921 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-01 23:50:37,032 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-01 23:50:37,049 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-01 23:50:37,112 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-01 23:50:37,118 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-01 23:50:37,181 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-01 23:50:37,192 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-01 23:50:37,337 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-01 23:50:39,431 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-01 23:50:45,311 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-01 23:50:48,632 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-05-01 23:50:49,300 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-05-01 23:51:29,801 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: /home/pi/timelapse.sh: line 2: log.txt: Permission denied
2018-05-01 23:51:57,494 - octoprint.server.preemptive_cache - INFO - ... done in 78.06s
2018-05-01 23:51:57,507 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-01 23:52:31,403 - octoprint.server.preemptive_cache - INFO - ... done in 33.90s
2018-05-01 23:52:31,407 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-01 23:52:40,338 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: Host key verification failed.
2018-05-01 23:53:03,841 - octoprint.server.preemptive_cache - INFO - ... done in 32.43s
2018-05-01 23:53:21,550 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: Host key verification failed.
2018-05-01 23:53:58,651 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: Permission denied, please try again.
Permission denied, please try again.
Permission denied (publickey,password).
2018-05-01 23:55:52,265 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: Permission denied, please try again.
Permission denied, please try again.
Permission denied (publickey,password).
2018-05-01 23:56:20,115 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: Permission denied, please try again.
Permission denied, please try again.
Permission denied (publickey,password).
2018-05-01 23:58:24,793 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:01:39,699 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:05:03,257 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-02 00:06:21,339 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:07:07,810 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:07:33,852 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:15:09,711 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:20:03,261 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-02 00:27:36,881 - octoprint.timelapse - WARNING - Could not render movie, got return code 1: bash: [wm]: command not found
bash: [postprocessed][wm]: command not found
2018-05-02 00:28:28,822 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:35:03,265 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-02 00:35:16,262 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:36:39,458 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:37:03,723 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 00:37:05,407 - octoprint.server - INFO - Shutting down...
2018-05-02 00:37:05,772 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 00:37:20,912 - octoprint.server - WARNING - Event loop was still busy processing after 15.0s, shutting down anyhow
2018-05-02 00:37:20,916 - octoprint.server - INFO - Goodbye!
2018-05-02 00:38:20,422 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 00:38:20,440 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 00:38:20,443 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 00:38:20,616 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 00:38:22,337 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 00:38:22,583 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 00:38:32,741 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 00:38:33,214 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 00:38:33,369 - octoprint.server - INFO - Intermediary server started
2018-05-02 00:38:33,373 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 00:38:37,064 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 00:38:37,328 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 00:38:42,790 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 00:38:43,398 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 00:38:54,698 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 00:39:04,586 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 00:39:04,592 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 00:39:04,595 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 00:39:04,613 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 00:39:04,656 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 00:39:04,690 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 00:39:04,809 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 00:39:04,854 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 00:39:04,939 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 00:39:05,973 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 00:39:06,024 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 00:39:06,031 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 00:39:06,038 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 00:39:06,054 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 00:39:06,221 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 00:39:07,103 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 00:39:07,134 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 00:39:07,210 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 00:39:07,259 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 00:39:07,329 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 00:39:07,427 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 00:39:07,446 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 00:39:07,451 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 00:39:07,808 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 00:39:07,827 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 00:39:07,857 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 00:39:07,881 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 00:39:07,947 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 00:39:08,073 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 00:39:10,231 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 00:39:15,686 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 00:39:17,640 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 00:39:17,821 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 00:40:12,565 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:40:37,030 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 00:40:40,566 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:40:40,860 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 00:41:02,997 - octoprint.server.preemptive_cache - INFO - ... done in 112.77s
2018-05-02 00:41:03,004 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 00:41:55,287 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 00:41:55,441 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 00:42:06,609 - octoprint.server.preemptive_cache - INFO - ... done in 63.61s
2018-05-02 00:42:06,618 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 00:42:16,880 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:42:45,167 - octoprint.server.preemptive_cache - INFO - ... done in 38.55s
2018-05-02 00:47:12,675 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 00:47:13,247 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 00:53:33,227 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-02 00:58:04,222 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 00:59:21,706 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 01:08:33,231 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-02 01:10:16,174 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 01:10:18,044 - octoprint.server - INFO - Shutting down...
2018-05-02 01:10:18,319 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 01:10:19,695 - octoprint.events - INFO - Event loop shut down
2018-05-02 01:10:19,722 - octoprint.server - INFO - Goodbye!
2018-05-02 01:11:10,744 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:11:10,750 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 01:11:10,753 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:11:11,158 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 01:11:12,452 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 01:11:15,796 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:11:25,966 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:11:26,443 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 01:11:26,599 - octoprint.server - INFO - Intermediary server started
2018-05-02 01:11:26,602 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:11:30,344 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:11:30,577 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 01:11:36,112 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 01:11:36,747 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 01:11:47,309 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 01:11:57,289 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 01:11:57,295 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 01:11:57,298 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 01:11:57,335 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 01:11:57,376 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 01:11:57,410 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 01:11:57,512 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 01:11:57,555 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 01:11:57,690 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 01:11:57,905 - octoprint.cli.server - ERROR - Uncaught exception
Traceback (most recent call last):
File "/home/pi/oprint/bin/octoprint", line 11, in <module>
load_entry_point('OctoPrint==1.3.8', 'console_scripts', 'octoprint')()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/__init__.py", line 565, in main
octo(args=args, prog_name="octoprint", auto_envvar_prefix="OCTOPRINT")
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 716, in __call__
return self.main(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 696, in main
rv = self.invoke(ctx)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 534, in invoke
return callback(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/decorators.py", line 17, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 183, in serve_command
ignore_blacklist)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 104, in run_server
octoprint_server.run()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 459, in run
octoprint.timelapse.configure_timelapse()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/timelapse.py", line 317, in configure_timelapse
logger.warn("framerate from config is %s" % config["fps"])
NameError: global name 'logger' is not defined
2018-05-02 01:13:26,921 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:13:26,927 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 01:13:26,930 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:13:27,125 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 01:13:27,150 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 01:13:27,442 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:13:53,013 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:13:53,470 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 01:13:53,629 - octoprint.server - INFO - Intermediary server started
2018-05-02 01:13:53,633 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:13:57,375 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:13:57,600 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 01:14:03,051 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 01:14:03,682 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 01:14:14,210 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 01:14:24,083 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 01:14:24,089 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 01:14:24,091 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 01:14:24,109 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 01:14:24,151 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 01:14:24,187 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 01:14:24,287 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 01:14:24,324 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 01:14:24,330 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 01:14:24,451 - octoprint.cli.server - ERROR - Uncaught exception
Traceback (most recent call last):
File "/home/pi/oprint/bin/octoprint", line 11, in <module>
load_entry_point('OctoPrint==1.3.8', 'console_scripts', 'octoprint')()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/__init__.py", line 565, in main
octo(args=args, prog_name="octoprint", auto_envvar_prefix="OCTOPRINT")
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 716, in __call__
return self.main(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 696, in main
rv = self.invoke(ctx)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 1060, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 889, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/core.py", line 534, in invoke
return callback(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/click/decorators.py", line 17, in new_func
return f(get_current_context(), *args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 183, in serve_command
ignore_blacklist)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/cli/server.py", line 104, in run_server
octoprint_server.run()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 459, in run
octoprint.timelapse.configure_timelapse()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/timelapse.py", line 317, in configure_timelapse
self._logger.warn("framerate from config is %s" % config["fps"])
NameError: global name 'self' is not defined
2018-05-02 01:21:36,205 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:21:36,210 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 01:21:36,213 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:21:36,407 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 01:21:36,424 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 01:21:36,639 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:21:49,767 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:21:50,223 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 01:21:50,399 - octoprint.server - INFO - Intermediary server started
2018-05-02 01:21:50,403 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:21:54,079 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:21:54,304 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 01:21:59,819 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 01:22:00,459 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 01:22:12,131 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 01:22:23,190 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 01:22:23,197 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 01:22:23,200 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 01:22:23,219 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 01:22:23,264 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 01:22:23,301 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 01:22:23,426 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 01:22:23,463 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 01:22:23,469 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 01:22:23,568 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 01:22:24,495 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 01:22:24,553 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 01:22:24,561 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 01:22:24,570 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 01:22:24,587 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 01:22:24,765 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 01:22:25,619 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:22:25,796 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 01:22:25,875 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 01:22:25,984 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:22:26,065 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 01:22:26,115 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 01:22:26,217 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:22:26,317 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 01:22:26,349 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 01:22:26,430 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 01:22:26,433 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 01:22:26,509 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 01:22:26,521 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 01:22:26,688 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:22:27,309 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525224143996 (127.0.0.1) 630.54ms
2018-05-02 01:22:28,781 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 01:22:34,200 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525224146996 (127.0.0.1) 358.80ms
2018-05-02 01:22:35,501 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:22:36,071 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525224149995 (127.0.0.1) 264.25ms
2018-05-02 01:22:36,397 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:22:36,525 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525224152995 (127.0.0.1) 273.58ms
2018-05-02 01:22:37,418 - tornado.access - WARNING - 404 GET /cached.gif?_=1525224155191 (127.0.0.1) 839.14ms
2018-05-02 01:22:37,685 - tornado.access - WARNING - 404 GET /intermediary.gif?_=1525224155996 (127.0.0.1) 208.16ms
2018-05-02 01:22:39,786 - tornado.access - WARNING - 404 GET /cached.gif?_=1525224157996 (127.0.0.1) 753.04ms
2018-05-02 01:22:41,441 - tornado.access - WARNING - 404 GET /cached.gif?_=1525224159996 (127.0.0.1) 419.44ms
2018-05-02 01:22:42,844 - tornado.access - WARNING - 404 GET /cached.gif?_=1525224161440 (127.0.0.1) 380.71ms
2018-05-02 01:22:44,240 - tornado.access - WARNING - 404 GET /cached.gif?_=1525224162841 (127.0.0.1) 372.50ms
2018-05-02 01:24:46,783 - octoprint.server.preemptive_cache - INFO - ... done in 138.00s
2018-05-02 01:24:46,791 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 01:24:46,965 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:47,450 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:47,873 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:48,255 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:50,009 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:50,434 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:50,865 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:51,351 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:53,819 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:54,209 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:54,621 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:55,044 - octoprint.server.views - INFO - Found path / in cache (key: ui:_default:https://prusaprint.lampnet.local/:en), signaling as cached
2018-05-02 01:24:59,239 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 01:25:22,717 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 01:25:38,613 - octoprint.server.preemptive_cache - INFO - ... done in 51.82s
2018-05-02 01:25:38,616 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 01:26:10,591 - octoprint.server.preemptive_cache - INFO - ... done in 31.98s
2018-05-02 01:30:40,493 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 01:30:41,536 - octoprint.server - INFO - Shutting down...
2018-05-02 01:30:41,785 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 01:30:57,270 - octoprint.server - WARNING - Event loop was still busy processing after 15.0s, shutting down anyhow
2018-05-02 01:30:57,274 - octoprint.server - INFO - Goodbye!
2018-05-02 01:31:48,168 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:31:48,174 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 01:31:48,177 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:31:48,351 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 01:31:49,649 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 01:31:49,884 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:32:03,147 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:32:03,612 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 01:32:03,787 - octoprint.server - INFO - Intermediary server started
2018-05-02 01:32:03,790 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:32:07,466 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:32:07,703 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 01:32:13,184 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 01:32:13,818 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 01:32:24,379 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 01:32:34,607 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 01:32:34,614 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 01:32:34,616 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 01:32:34,634 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 01:32:34,678 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 01:32:34,730 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 01:32:34,830 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 01:32:34,875 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 01:32:35,000 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 01:32:35,203 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 01:32:35,208 - octoprint.timelapse - WARNING - 60 is greater than 0
2018-05-02 01:32:35,233 - octoprint.timelapse - WARNING - framerate is 60
2018-05-02 01:32:37,310 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 01:32:37,623 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 01:32:37,635 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 01:32:37,651 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 01:32:37,675 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 01:32:38,040 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 01:32:39,309 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:32:39,592 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 01:32:39,650 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 01:32:39,776 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:32:39,834 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 01:32:39,918 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 01:32:39,986 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:32:40,085 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 01:32:40,148 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 01:32:40,191 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 01:32:40,201 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 01:32:40,261 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 01:32:40,278 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 01:32:40,437 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:32:42,561 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 01:32:48,977 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:32:49,707 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:33:20,194 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 01:33:58,485 - octoprint.server.preemptive_cache - INFO - ... done in 75.92s
2018-05-02 01:33:58,488 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 01:34:31,436 - octoprint.server.preemptive_cache - INFO - ... done in 32.95s
2018-05-02 01:34:31,439 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 01:35:02,233 - octoprint.server.preemptive_cache - INFO - ... done in 30.79s
2018-05-02 01:46:22,081 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 01:46:24,228 - octoprint.server - INFO - Shutting down...
2018-05-02 01:46:24,627 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 01:46:39,927 - octoprint.server - WARNING - Event loop was still busy processing after 15.0s, shutting down anyhow
2018-05-02 01:46:39,930 - octoprint.server - INFO - Goodbye!
2018-05-02 01:47:37,792 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:47:37,797 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 01:47:37,803 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:47:37,978 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 01:47:39,279 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 01:47:39,526 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:47:49,588 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:47:50,064 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 01:47:50,220 - octoprint.server - INFO - Intermediary server started
2018-05-02 01:47:50,224 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:47:53,838 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:47:54,056 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 01:47:59,462 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 01:48:00,083 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 01:48:10,608 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 01:48:20,642 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 01:48:20,648 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 01:48:20,652 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 01:48:20,672 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 01:48:20,736 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 01:48:20,771 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 01:48:20,872 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 01:48:20,916 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 01:48:21,004 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 01:48:21,126 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 01:48:21,130 - octoprint.timelapse - WARNING - 60 is greater than 0
2018-05-02 01:48:21,134 - octoprint.timelapse - WARNING - 319 framerate is 60
2018-05-02 01:48:21,151 - octoprint.timelapse - WARNING - 370 framerate is 60
2018-05-02 01:48:21,159 - octoprint.timelapse - WARNING - 696 framerate is 60
2018-05-02 01:48:22,040 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 01:48:22,164 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 01:48:22,172 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 01:48:22,183 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 01:48:22,199 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 01:48:22,348 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 01:48:23,117 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:48:23,496 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 01:48:23,544 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 01:48:23,622 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:48:23,681 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 01:48:23,773 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 01:48:23,856 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:48:23,944 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 01:48:23,993 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 01:48:24,060 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 01:48:24,056 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 01:48:24,133 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 01:48:24,149 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 01:48:24,285 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:48:26,243 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 01:48:32,505 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:48:33,463 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:50:34,022 - octoprint.server.preemptive_cache - INFO - ... done in 127.78s
2018-05-02 01:50:34,027 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 01:50:37,701 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 01:51:19,162 - octoprint.server.preemptive_cache - INFO - ... done in 45.14s
2018-05-02 01:51:19,166 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 01:51:49,589 - octoprint.server.preemptive_cache - INFO - ... done in 30.42s
2018-05-02 01:51:51,445 - octoprint.timelapse - WARNING - 161 framerate is 25
2018-05-02 01:51:51,451 - octoprint.timelapse - WARNING - 757 framerate is 25
2018-05-02 01:51:51,477 - octoprint.timelapse - WARNING - 855 framerate is 25
2018-05-02 01:51:52,547 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 01:54:31,379 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 01:54:32,397 - octoprint.server - INFO - Shutting down...
2018-05-02 01:54:32,520 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 01:54:34,059 - octoprint.events - INFO - Event loop shut down
2018-05-02 01:54:34,078 - octoprint.server - INFO - Goodbye!
2018-05-02 01:55:28,789 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:55:28,795 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 01:55:28,798 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 01:55:28,973 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 01:55:28,992 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 01:55:29,211 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:55:41,334 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:55:41,817 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 01:55:41,979 - octoprint.server - INFO - Intermediary server started
2018-05-02 01:55:41,982 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 01:55:45,738 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 01:55:45,973 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 01:55:51,590 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 01:55:52,516 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 01:56:06,494 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 01:56:16,752 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 01:56:16,760 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 01:56:16,764 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 01:56:16,783 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 01:56:16,829 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 01:56:16,867 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 01:56:16,975 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 01:56:17,021 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 01:56:17,110 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 01:56:17,236 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 01:56:17,240 - octoprint.timelapse - WARNING - 60 is greater than 0
2018-05-02 01:56:17,244 - octoprint.timelapse - WARNING - 319 framerate is 60
2018-05-02 01:56:17,264 - octoprint.timelapse - WARNING - 370 framerate is 60
2018-05-02 01:56:17,271 - octoprint.timelapse - WARNING - 696 framerate is 60
2018-05-02 01:56:18,179 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 01:56:18,235 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 01:56:18,243 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 01:56:18,252 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 01:56:18,269 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 01:56:18,451 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 01:56:19,248 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:56:19,701 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 01:56:19,752 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 01:56:19,826 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:56:19,880 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 01:56:19,977 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 01:56:20,045 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 01:56:20,186 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 01:56:20,205 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 01:56:20,269 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 01:56:20,273 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 01:56:20,338 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 01:56:20,351 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 01:56:20,533 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 01:56:22,582 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 01:56:28,222 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 01:56:28,728 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:56:30,024 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 01:57:37,124 - octoprint.timelapse - WARNING - 161 framerate is 25
2018-05-02 01:57:37,133 - octoprint.timelapse - WARNING - 757 framerate is 25
2018-05-02 01:57:37,176 - octoprint.timelapse - WARNING - 855 framerate is 25
2018-05-02 01:57:38,327 - octoprint.server.preemptive_cache - INFO - ... done in 75.74s
2018-05-02 01:57:38,334 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 01:57:38,962 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 01:58:09,118 - octoprint.server.preemptive_cache - INFO - ... done in 30.78s
2018-05-02 01:58:09,122 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 01:58:39,421 - octoprint.server.preemptive_cache - INFO - ... done in 30.30s
2018-05-02 02:10:41,830 - octoprint.server.heartbeat - INFO - Server heartbeat <3
2018-05-02 02:12:18,007 - octoprint.timelapse - WARNING - 161 framerate is 25
2018-05-02 02:12:18,013 - octoprint.timelapse - WARNING - 757 framerate is 25
2018-05-02 02:12:18,040 - octoprint.timelapse - WARNING - 855 framerate is 25
2018-05-02 02:12:19,098 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 02:12:51,247 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 02:12:52,892 - octoprint.server - INFO - Shutting down...
2018-05-02 02:12:53,732 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 02:12:54,362 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xb25f5290>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-05-02 02:12:54,388 - octoprint.events - INFO - Event loop shut down
2018-05-02 02:12:54,439 - octoprint.server - INFO - Goodbye!
2018-05-02 02:14:15,155 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 02:14:15,160 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 02:14:15,163 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 02:14:15,342 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 02:14:16,601 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 02:14:16,831 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 02:14:27,020 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 02:14:27,504 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 02:14:27,656 - octoprint.server - INFO - Intermediary server started
2018-05-02 02:14:27,659 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 02:14:31,465 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 02:14:31,693 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 02:14:37,255 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 02:14:37,897 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 02:14:48,734 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 02:14:58,734 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 02:14:58,740 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 02:14:58,743 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 02:14:58,761 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 02:14:58,805 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 02:14:58,840 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 02:14:58,943 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 02:14:58,992 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 02:14:59,085 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 02:14:59,203 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 02:14:59,206 - octoprint.timelapse - WARNING - 60 is greater than 0
2018-05-02 02:14:59,209 - octoprint.timelapse - WARNING - 319 framerate is 60
2018-05-02 02:14:59,227 - octoprint.timelapse - WARNING - 370 framerate is 60
2018-05-02 02:14:59,233 - octoprint.timelapse - WARNING - 696 framerate is 60
2018-05-02 02:15:00,107 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 02:15:00,275 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 02:15:00,282 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 02:15:00,290 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 02:15:00,305 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 02:15:00,461 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 02:15:01,143 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 02:15:01,837 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 02:15:01,895 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 02:15:01,972 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 02:15:02,036 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 02:15:02,092 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 02:15:02,098 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 02:15:02,246 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 02:15:02,345 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 02:15:02,416 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 02:15:02,460 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 02:15:02,516 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 02:15:02,529 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 02:15:02,668 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 02:15:04,301 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 02:15:09,394 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 02:15:10,858 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 02:15:36,353 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 02:16:21,887 - octoprint.server.preemptive_cache - INFO - ... done in 77.59s
2018-05-02 02:16:21,891 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 02:16:36,073 - octoprint.timelapse - WARNING - 161 framerate is 25
2018-05-02 02:16:36,080 - octoprint.timelapse - WARNING - 757 framerate is 25
2018-05-02 02:16:36,153 - octoprint.timelapse - WARNING - 855 framerate is 25
2018-05-02 02:16:38,065 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 02:16:55,662 - octoprint.server.preemptive_cache - INFO - ... done in 33.77s
2018-05-02 02:16:55,665 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 02:17:28,275 - octoprint.server.preemptive_cache - INFO - ... done in 32.61s
2018-05-02 02:19:23,763 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 02:19:25,122 - octoprint.server - INFO - Shutting down...
2018-05-02 02:19:25,168 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 02:19:26,497 - octoprint.events - INFO - Event loop shut down
2018-05-02 02:19:26,528 - octoprint.server - INFO - Goodbye!
2018-05-02 02:20:24,777 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 02:20:24,781 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 02:20:24,784 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 02:20:24,962 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 02:20:24,980 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 02:20:25,220 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 02:20:35,215 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 02:20:35,672 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 02:20:35,831 - octoprint.server - INFO - Intermediary server started
2018-05-02 02:20:35,835 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 02:20:39,450 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 02:20:39,672 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 02:20:45,058 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 02:20:45,663 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 02:20:57,222 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 02:21:07,221 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 02:21:07,228 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 02:21:07,231 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 02:21:07,250 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 02:21:07,294 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 02:21:07,331 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 02:21:07,435 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 02:21:07,479 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 02:21:07,569 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 02:21:07,692 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 02:21:07,696 - octoprint.timelapse - WARNING - 60 is greater than 0
2018-05-02 02:21:07,700 - octoprint.timelapse - WARNING - 319 framerate is 60
2018-05-02 02:21:07,717 - octoprint.timelapse - WARNING - 370 framerate is 60
2018-05-02 02:21:07,724 - octoprint.timelapse - WARNING - 696 framerate is 60
2018-05-02 02:21:08,628 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 02:21:08,819 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 02:21:08,827 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 02:21:08,837 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 02:21:08,853 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 02:21:09,047 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 02:21:09,797 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 02:21:10,278 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 02:21:10,330 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 02:21:10,409 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 02:21:10,470 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 02:21:10,543 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 02:21:10,633 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 02:21:10,731 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 02:21:10,767 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 02:21:10,823 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 02:21:10,838 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 02:21:10,906 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 02:21:10,919 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 02:21:11,119 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 02:21:13,167 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 02:21:19,283 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 02:21:19,499 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 02:21:20,671 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 02:22:28,060 - octoprint.server.preemptive_cache - INFO - ... done in 74.89s
2018-05-02 02:22:28,065 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 02:22:59,886 - octoprint.server.preemptive_cache - INFO - ... done in 31.82s
2018-05-02 02:22:59,890 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 02:23:26,729 - octoprint.timelapse - WARNING - 161 framerate is 25
2018-05-02 02:23:26,737 - octoprint.timelapse - WARNING - 757 framerate is 25
2018-05-02 02:23:26,780 - octoprint.timelapse - WARNING - 855 framerate is 25
2018-05-02 02:23:28,621 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 02:23:32,442 - octoprint.server.preemptive_cache - INFO - ... done in 32.55s
2018-05-02 02:28:14,992 - octoprint.server.util.sockjs - INFO - Client connection closed: ::ffff:192.168.20.182
2018-05-02 02:28:17,263 - octoprint.server - INFO - Shutting down...
2018-05-02 02:28:17,893 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-05-02 02:28:23,037 - octoprint.plugin - ERROR - Error while calling plugin octorant
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/plugin/__init__.py", line 225, in call_plugin
result = getattr(plugin, method)(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 179, in on_event
return self.notify_event("shutdown")
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 243, in notify_event
return self.send_message(eventID, tmpConfig["message"].format(**data), tmpConfig["with_snapshot"])
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/__init__.py", line 330, in send_message
out = discordCall.post()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant/discord.py", line 29, in post
resp = requests.post(self.url,files=self.attachment,data=self.payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 112, in post
return request('post', url, data=data, json=json, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
return session.request(method=method, url=url, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
r = adapter.send(request, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
raise ConnectionError(e, request=request)
ConnectionError: HTTPSConnectionPool(host='discordapp.com', port=443): Max retries exceeded with url: /api/webhooks/437395313146331147/coCHsQdNU3l2w9FWQG-Yk30pv1QE0_A3krmdKKzPIlKITJDxZroO7SKDIsmH-5jNFBEk (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0xa97865b0>: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution',))
2018-05-02 02:28:23,069 - octoprint.events - INFO - Event loop shut down
2018-05-02 02:28:23,073 - octoprint.server - INFO - Goodbye!
2018-05-02 02:29:13,555 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 02:29:13,561 - octoprint.startup - INFO - Starting OctoPrint 1.3.8
2018-05-02 02:29:13,564 - octoprint.startup - INFO - ******************************************************************************
2018-05-02 02:29:13,964 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-05-02 02:29:13,993 - octoprint.startup - INFO - Blacklist processing done
2018-05-02 02:29:14,208 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 02:29:28,764 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 02:29:29,217 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-05-02 02:29:29,396 - octoprint.server - INFO - Intermediary server started
2018-05-02 02:29:29,399 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-05-02 02:29:33,061 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 13 mixin implementations, 8 hook handlers
2018-05-02 02:29:33,282 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-05-02 02:29:38,669 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-05-02 02:29:39,266 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-05-02 02:29:51,034 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python2 -m pip" as command to invoke pip
2018-05-02 02:30:02,268 - octoprint.util.pip - INFO - Version of pip is 9.0.3
2018-05-02 02:30:02,280 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-05-02 02:30:02,284 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-05-02 02:30:02,303 - octoprint.plugin.core - INFO - Initialized 13 plugin implementation(s)
2018-05-02 02:30:02,367 - py.warnings - WARNING - /home/pi/oprint/local/lib/python2.7/site-packages/octoprint/util/__init__.py:621: UnicodeWarning: Unicode unequal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if value_source != value_target:
2018-05-02 02:30:02,403 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/discovery
| Fullscreen Plugin (0.0.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_fullscreen
| ipOnConnect Plugin (0.1.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_ipOnConnect
| Logging (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/logging
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/octopi_support
| OctoRant (1.2.0) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_octorant
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/octoprint/plugins/virtual_printer
2018-05-02 02:30:02,507 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 1
| freq: 1000.0
| ram: 388030464
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: Zero W
| revision: 9000c1
| version: 0.15.0PE
| python:
| pip: 9.0.3
| version: 2.7.13
| virtualenv: /home/pi/oprint
2018-05-02 02:30:02,552 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-05-02 02:30:02,641 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-05-02 02:30:02,766 - octoprint.timelapse - WARNING - framerate from config is 60
2018-05-02 02:30:02,769 - octoprint.timelapse - WARNING - 60 is greater than 0
2018-05-02 02:30:02,773 - octoprint.timelapse - WARNING - 319 framerate is 60
2018-05-02 02:30:02,788 - octoprint.timelapse - WARNING - 370 framerate is 60
2018-05-02 02:30:02,796 - octoprint.timelapse - WARNING - 696 framerate is 60
2018-05-02 02:30:03,668 - octoprint.server - INFO - Shutting down intermediary server...
2018-05-02 02:30:03,857 - octoprint.server - INFO - Intermediary server shut down
2018-05-02 02:30:03,865 - octoprint.events - INFO - Processing startup event, this is our first event
2018-05-02 02:30:03,875 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-05-02 02:30:03,891 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-05-02 02:30:04,061 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-05-02 02:30:04,809 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-05-02 02:30:04,832 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Connecting"
2018-05-02 02:30:04,875 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 02:30:04,931 - octoprint.util.comm - INFO - Changing monitoring state from "Connecting" to "Operational"
2018-05-02 02:30:04,991 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _http._tcp
2018-05-02 02:30:05,052 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-05-02 02:30:05,179 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for _octoprint._tcp
2018-05-02 02:30:05,198 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 02:30:05,194 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1.0.2; Sprinter/grbl mashup for gen6"
2018-05-02 02:30:05,272 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance "PrusaPrint 😉" for SSDP
2018-05-02 02:30:05,314 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-05-02 02:30:05,437 - octoprint.plugins.ipOnConnect - INFO - ipOnConnectPlugin: 192.168.20.64
2018-05-02 02:30:05,449 - octoprint.plugins.octorant - INFO - Octorant is started !
2018-05-02 02:30:05,635 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-05-02 02:30:07,672 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://prusaprint.lampnet.local/'}
2018-05-02 02:30:14,046 - octoprint.server.util.sockjs - INFO - New connection from client: ::ffff:192.168.20.182
2018-05-02 02:30:15,085 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 02:30:15,255 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-05-02 02:30:44,764 - octoprint.timelapse - WARNING - 161 framerate is 60
2018-05-02 02:30:44,771 - octoprint.timelapse - WARNING - 757 framerate is 60
2018-05-02 02:30:44,811 - octoprint.timelapse - WARNING - 855 framerate is 60
2018-05-02 02:30:46,658 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 02:31:26,606 - octoprint.server.preemptive_cache - INFO - ... done in 78.93s
2018-05-02 02:31:26,610 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'https://192.168.20.64/'}
2018-05-02 02:31:57,308 - octoprint.server.preemptive_cache - INFO - ... done in 30.70s
2018-05-02 02:31:57,313 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://prusaprint.lampnet.local/'}
2018-05-02 02:32:37,732 - octoprint.timelapse - WARNING - 161 framerate is 60
2018-05-02 02:32:37,740 - octoprint.timelapse - WARNING - 757 framerate is 60
2018-05-02 02:32:37,782 - octoprint.timelapse - WARNING - 855 framerate is 60
2018-05-02 02:32:38,366 - octoprint.server.preemptive_cache - INFO - ... done in 41.05s
2018-05-02 02:32:39,022 - octoprint.timelapse - WARNING - Could not render movie, got return code 1:
2018-05-02 02:34:17,605 - octoprint.timelapse - WARNING - 161 framerate is 60
2018-05-02 02:34:17,610 - octoprint.timelapse - WARNING - 757 framerate is 60
2018-05-02 02:34:17,645 - octoprint.timelapse - WARNING - 855 framerate is 60
|
ConnectionError
|
def __init__(self, fileManager, analysisQueue, printerProfileManager):
from collections import deque
self._logger = logging.getLogger(__name__)
self._dict = (
frozendict
if settings().getBoolean(["devel", "useFrozenDictForPrinterState"])
else dict
)
self._analysisQueue = analysisQueue
self._fileManager = fileManager
self._printerProfileManager = printerProfileManager
# state
# TODO do we really need to hold the temperature here?
self._temp = None
self._bedTemp = None
self._targetTemp = None
self._targetBedTemp = None
self._temps = TemperatureHistory(
cutoff=settings().getInt(["temperature", "cutoff"]) * 60
)
self._tempBacklog = []
self._messages = deque([], 300)
self._messageBacklog = []
self._log = deque([], 300)
self._logBacklog = []
self._state = None
self._currentZ = None
self._printAfterSelect = False
self._posAfterSelect = None
# sd handling
self._sdPrinting = False
self._sdStreaming = False
self._sdFilelistAvailable = threading.Event()
self._streamingFinishedCallback = None
self._streamingFailedCallback = None
# job handling & estimation
self._selectedFileMutex = threading.RLock()
self._selectedFile = None
self._estimator_factory = PrintTimeEstimator
self._estimator = None
analysis_queue_hooks = plugin_manager().get_hooks(
"octoprint.printer.estimation.factory"
)
for name, hook in analysis_queue_hooks.items():
try:
estimator = hook()
if estimator is not None:
self._logger.info(
"Using print time estimator provided by {}".format(name)
)
self._estimator_factory = estimator
except:
self._logger.exception(
"Error while processing analysis queues from {}".format(name)
)
# comm
self._comm = None
# callbacks
self._callbacks = []
# progress plugins
self._lastProgressReport = None
self._progressPlugins = plugin_manager().get_implementations(ProgressPlugin)
self._stateMonitor = StateMonitor(
interval=0.5,
on_update=self._sendCurrentDataCallbacks,
on_add_temperature=self._sendAddTemperatureCallbacks,
on_add_log=self._sendAddLogCallbacks,
on_add_message=self._sendAddMessageCallbacks,
on_get_progress=self._updateProgressDataCallback,
)
self._stateMonitor.reset(
state=self._dict(text=self.get_state_string(), flags=self._getStateFlags()),
job_data=self._dict(
file=self._dict(name=None, path=None, size=None, origin=None, date=None),
estimatedPrintTime=None,
lastPrintTime=None,
filament=self._dict(length=None, volume=None),
user=None,
),
progress=self._dict(
completion=None,
filepos=None,
printTime=None,
printTimeLeft=None,
printTimeOrigin=None,
),
current_z=None,
offsets=self._dict(),
)
eventManager().subscribe(
Events.METADATA_ANALYSIS_FINISHED, self._on_event_MetadataAnalysisFinished
)
eventManager().subscribe(
Events.METADATA_STATISTICS_UPDATED, self._on_event_MetadataStatisticsUpdated
)
|
def __init__(self, fileManager, analysisQueue, printerProfileManager):
from collections import deque
self._logger = logging.getLogger(__name__)
self._dict = (
frozendict
if settings().getBoolean(["devel", "useFrozenDictForPrinterState"])
else dict
)
self._analysisQueue = analysisQueue
self._fileManager = fileManager
self._printerProfileManager = printerProfileManager
# state
# TODO do we really need to hold the temperature here?
self._temp = None
self._bedTemp = None
self._targetTemp = None
self._targetBedTemp = None
self._temps = TemperatureHistory(
cutoff=settings().getInt(["temperature", "cutoff"]) * 60
)
self._tempBacklog = []
self._messages = deque([], 300)
self._messageBacklog = []
self._log = deque([], 300)
self._logBacklog = []
self._state = None
self._currentZ = None
self._printAfterSelect = False
self._posAfterSelect = None
# sd handling
self._sdPrinting = False
self._sdStreaming = False
self._sdFilelistAvailable = threading.Event()
self._streamingFinishedCallback = None
self._streamingFailedCallback = None
# job handling & estimation
self._selectedFileMutex = threading.RLock()
self._selectedFile = None
self._estimator_factory = PrintTimeEstimator
analysis_queue_hooks = plugin_manager().get_hooks(
"octoprint.printer.estimation.factory"
)
for name, hook in analysis_queue_hooks.items():
try:
estimator = hook()
if estimator is not None:
self._logger.info(
"Using print time estimator provided by {}".format(name)
)
self._estimator_factory = estimator
except:
self._logger.exception(
"Error while processing analysis queues from {}".format(name)
)
# comm
self._comm = None
# callbacks
self._callbacks = []
# progress plugins
self._lastProgressReport = None
self._progressPlugins = plugin_manager().get_implementations(ProgressPlugin)
self._stateMonitor = StateMonitor(
interval=0.5,
on_update=self._sendCurrentDataCallbacks,
on_add_temperature=self._sendAddTemperatureCallbacks,
on_add_log=self._sendAddLogCallbacks,
on_add_message=self._sendAddMessageCallbacks,
on_get_progress=self._updateProgressDataCallback,
)
self._stateMonitor.reset(
state=self._dict(text=self.get_state_string(), flags=self._getStateFlags()),
job_data=self._dict(
file=self._dict(name=None, path=None, size=None, origin=None, date=None),
estimatedPrintTime=None,
lastPrintTime=None,
filament=self._dict(length=None, volume=None),
user=None,
),
progress=self._dict(
completion=None,
filepos=None,
printTime=None,
printTimeLeft=None,
printTimeOrigin=None,
),
current_z=None,
offsets=self._dict(),
)
eventManager().subscribe(
Events.METADATA_ANALYSIS_FINISHED, self._on_event_MetadataAnalysisFinished
)
eventManager().subscribe(
Events.METADATA_STATISTICS_UPDATED, self._on_event_MetadataStatisticsUpdated
)
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def _create_estimator(self, job_type=None):
if job_type is None:
with self._selectedFileMutex:
if self._selectedFile is None:
return
if self._selectedFile["sd"]:
job_type = "sdcard"
else:
job_type = "local"
self._estimator = self._estimator_factory(job_type)
|
def _create_estimator(self, job_type):
self._estimator = self._estimator_factory(job_type)
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def start_print(self, pos=None, user=None, *args, **kwargs):
"""
Starts the currently loaded print job.
Only starts if the printer is connected and operational, not currently printing and a printjob is loaded
"""
if self._comm is None or not self._comm.isOperational() or self._comm.isPrinting():
return
with self._selectedFileMutex:
if self._selectedFile is None:
return
self._fileManager.delete_recovery_data()
self._lastProgressReport = None
self._updateProgressData()
self._setCurrentZ(None)
self._comm.startPrint(
pos=pos, tags=kwargs.get("tags", set()) | {"trigger:printer.start_print"}
)
|
def start_print(self, pos=None, user=None, *args, **kwargs):
"""
Starts the currently loaded print job.
Only starts if the printer is connected and operational, not currently printing and a printjob is loaded
"""
if self._comm is None or not self._comm.isOperational() or self._comm.isPrinting():
return
with self._selectedFileMutex:
if self._selectedFile is None:
return
if self._selectedFile["sd"]:
job_type = "sdcard"
else:
job_type = "local"
self._create_estimator(job_type)
self._fileManager.delete_recovery_data()
self._lastProgressReport = None
self._updateProgressData()
self._setCurrentZ(None)
self._comm.startPrint(
pos=pos, tags=kwargs.get("tags", set()) | {"trigger:printer.start_print"}
)
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def _updateProgressDataCallback(self):
if self._comm is None:
progress = None
filepos = None
printTime = None
cleanedPrintTime = None
else:
progress = self._comm.getPrintProgress()
filepos = self._comm.getPrintFilepos()
printTime = self._comm.getPrintTime()
cleanedPrintTime = self._comm.getCleanedPrintTime()
printTimeLeft = printTimeLeftOrigin = None
estimator = self._estimator
if progress is not None:
progress_int = int(progress * 100)
if self._lastProgressReport != progress_int:
self._lastProgressReport = progress_int
self._reportPrintProgressToPlugins(progress_int)
if progress == 0:
printTimeLeft = None
printTimeLeftOrigin = None
elif progress == 1.0:
printTimeLeft = 0
printTimeLeftOrigin = None
elif estimator is not None:
statisticalTotalPrintTime = None
statisticalTotalPrintTimeType = None
with self._selectedFileMutex:
if (
self._selectedFile
and "estimatedPrintTime" in self._selectedFile
and self._selectedFile["estimatedPrintTime"]
):
statisticalTotalPrintTime = self._selectedFile["estimatedPrintTime"]
statisticalTotalPrintTimeType = self._selectedFile.get(
"estimatedPrintTimeType", None
)
printTimeLeft, printTimeLeftOrigin = estimator.estimate(
progress,
printTime,
cleanedPrintTime,
statisticalTotalPrintTime,
statisticalTotalPrintTimeType,
)
return self._dict(
completion=progress * 100 if progress is not None else None,
filepos=filepos,
printTime=int(printTime) if printTime is not None else None,
printTimeLeft=int(printTimeLeft) if printTimeLeft is not None else None,
printTimeLeftOrigin=printTimeLeftOrigin,
)
|
def _updateProgressDataCallback(self):
if self._comm is None:
progress = None
filepos = None
printTime = None
cleanedPrintTime = None
else:
progress = self._comm.getPrintProgress()
filepos = self._comm.getPrintFilepos()
printTime = self._comm.getPrintTime()
cleanedPrintTime = self._comm.getCleanedPrintTime()
printTimeLeft = printTimeLeftOrigin = None
if progress is not None:
progress_int = int(progress * 100)
if self._lastProgressReport != progress_int:
self._lastProgressReport = progress_int
self._reportPrintProgressToPlugins(progress_int)
if progress == 0:
printTimeLeft = None
printTimeLeftOrigin = None
elif progress == 1.0:
printTimeLeft = 0
printTimeLeftOrigin = None
else:
statisticalTotalPrintTime = None
statisticalTotalPrintTimeType = None
with self._selectedFileMutex:
if (
self._selectedFile
and "estimatedPrintTime" in self._selectedFile
and self._selectedFile["estimatedPrintTime"]
):
statisticalTotalPrintTime = self._selectedFile["estimatedPrintTime"]
statisticalTotalPrintTimeType = self._selectedFile.get(
"estimatedPrintTimeType", None
)
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(
progress,
printTime,
cleanedPrintTime,
statisticalTotalPrintTime,
statisticalTotalPrintTimeType,
)
return self._dict(
completion=progress * 100 if progress is not None else None,
filepos=filepos,
printTime=int(printTime) if printTime is not None else None,
printTimeLeft=int(printTimeLeft) if printTimeLeft is not None else None,
printTimeLeftOrigin=printTimeLeftOrigin,
)
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def on_comm_file_selected(self, full_path, size, sd, user=None):
if full_path is not None:
payload = self._payload_for_print_job_event(
location=FileDestinations.SDCARD if sd else FileDestinations.LOCAL,
print_job_file=full_path,
)
eventManager().fire(Events.FILE_SELECTED, payload)
else:
eventManager().fire(Events.FILE_DESELECTED)
self._create_estimator()
self._setJobData(full_path, size, sd, user=user)
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
if self._printAfterSelect:
self._printAfterSelect = False
self.start_print(pos=self._posAfterSelect, user=user)
|
def on_comm_file_selected(self, full_path, size, sd, user=None):
if full_path is not None:
payload = self._payload_for_print_job_event(
location=FileDestinations.SDCARD if sd else FileDestinations.LOCAL,
print_job_file=full_path,
)
eventManager().fire(Events.FILE_SELECTED, payload)
else:
eventManager().fire(Events.FILE_DESELECTED)
self._setJobData(full_path, size, sd, user=user)
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
if self._printAfterSelect:
self._printAfterSelect = False
self.start_print(pos=self._posAfterSelect, user=user)
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def on_comm_print_job_started(self, suppress_script=False):
self._stateMonitor.trigger_progress_update()
payload = self._payload_for_print_job_event()
if payload:
eventManager().fire(Events.PRINT_STARTED, payload)
if not suppress_script:
self.script(
"beforePrintStarted",
context=dict(event=payload),
part_of_job=True,
must_be_set=False,
)
|
def on_comm_print_job_started(self, suppress_script=False):
payload = self._payload_for_print_job_event()
if payload:
eventManager().fire(Events.PRINT_STARTED, payload)
if not suppress_script:
self.script(
"beforePrintStarted",
context=dict(event=payload),
part_of_job=True,
must_be_set=False,
)
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def _work(self):
try:
while True:
self._change_event.wait()
now = time.time()
delta = now - self._last_update
additional_wait_time = self._interval - delta
if additional_wait_time > 0:
time.sleep(additional_wait_time)
with self._state_lock:
data = self.get_current_data()
self._update_callback(data)
self._last_update = time.time()
self._change_event.clear()
except:
logging.getLogger(__name__).exception(
"Looks like something crashed inside the state update worker. Please report this on the OctoPrint issue tracker (make sure to include logs!)"
)
|
def _work(self):
while True:
self._change_event.wait()
now = time.time()
delta = now - self._last_update
additional_wait_time = self._interval - delta
if additional_wait_time > 0:
time.sleep(additional_wait_time)
with self._state_lock:
data = self.get_current_data()
self._update_callback(data)
self._last_update = time.time()
self._change_event.clear()
|
https://github.com/OctoPrint/OctoPrint/issues/2715
|
2018-07-05 05:17:16,231 - octoprint.util.comm - INFO - Externally triggered heatup detected
2018-07-05 05:18:34,517 - octoprint.util.comm - INFO - Printer seems to support the busy protocol, telling it to set the busy interval to our "communicationBusy" timeout - 1s = 2s
2018-07-05 05:19:27,589 - octoprint.util.comm - INFO - Timeout while in an active heatup, considering heatup to be over.
2018-07-05 05:19:30,594 - octoprint.util.comm - INFO - Communication timeout while idle, trying to trigger response from printer.
2018-07-05 05:19:32,426 - octoprint.util.comm - INFO - Changing monitoring state from "Operational" to "Printing from SD"
2018-07-05 05:19:32,512 - octoprint.plugins.Octoslack - ERROR - Error processing event: PrintStarted, Error: 'Printer' object has no attribute '_estimator'
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 591, in handle_event
self.process_slack_event(event, event_settings, channel_override, payload)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_Octoslack/__init__.py", line 648, in process_slack_event
printer_data = self._printer.get_current_data()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/server/__init__.py", line 384, in wrapper
return f(*args, **kwargs)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 565, in get_current_data
return util.thaw_frozendict(self._stateMonitor.get_current_data())
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1326, in get_current_data
self._progress = self._get_current_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 1255, in _get_current_progress
return self._on_get_progress()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint/printer/standard.py", line 773, in _updateProgressDataCallback
printTimeLeft, printTimeLeftOrigin = self._estimator.estimate(progress,
AttributeError: 'Printer' object has no attribute '_estimator'
2018-07-05 05:20:41,680 - octoprint.util.comm - INFO - Communication timeout while printing, trying to trigger response from printer.
2018-07-05 05:20:41,718 - octoprint.util.comm - INFO - Changing monitoring state from "Printing from SD" to "Cancelling"
2018-07-05 05:20:41,880 - octoprint.util.comm - INFO - Changing monitoring state from "Cancelling" to "Operational"
2018-07-05 05:21:35,678 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
|
AttributeError
|
def jobState():
currentData = printer.get_current_data()
return jsonify(
{
"job": currentData["job"],
"progress": currentData["progress"],
"state": currentData["state"]["text"],
}
)
|
def jobState():
currentData = printer.get_current_data()
return jsonify(
{
"job": currentData["job"],
"progress": currentData["progress"],
"state": currentData["state"]["text"],
"printingUser": currentData["printingUser"],
}
)
|
https://github.com/OctoPrint/OctoPrint/issues/2617
|
Apr 30 08:31:25 raspberrypi2 octoprint[23585]: 2018-04-30 08:31:25,061 - tornado.access - ERROR - 500 GET /api/job (172.20.0.33) 24.02ms
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: 2018-04-30 08:31:28,054 - octoprint - ERROR - Exception on /api/job [GET]
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: Traceback (most recent call last):
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: File "/usr/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: response = self.full_dispatch_request()
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: File "/usr/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: rv = self.handle_user_exception(e)
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: File "/usr/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: reraise(exc_type, exc_value, tb)
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: File "/usr/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: rv = self.dispatch_request()
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: File "/usr/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: return self.view_functions[rule.endpoint](**req.view_args)
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: File "/usr/lib/python2.7/site-packages/octoprint/server/api/job.py", line 73, in jobState
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: "printingUser": currentData["printingUser"],
Apr 30 08:31:28 raspberrypi2 octoprint[23585]: KeyError: 'printingUser'
|
KeyError
|
def start_print(self, pos=None, user=None, *args, **kwargs):
"""
Starts the currently loaded print job.
Only starts if the printer is connected and operational, not currently printing and a printjob is loaded
"""
if self._comm is None or not self._comm.isOperational() or self._comm.isPrinting():
return
with self._selectedFileMutex:
if self._selectedFile is None:
return
# we are happy if the average of the estimates stays within 60s of the prior one
threshold = settings().getFloat(["estimation", "printTime", "stableThreshold"])
rolling_window = None
countdown = None
with self._selectedFileMutex:
if self._selectedFile["sd"]:
# we are interesting in a rolling window of roughly the last 15s, so the number of entries has to be derived
# by that divided by the sd status polling interval
rolling_window = 15 / settings().get(["serial", "timeout", "sdStatus"])
# we are happy when one rolling window has been stable
countdown = rolling_window
self._timeEstimationData = TimeEstimationHelper(
rolling_window=rolling_window, threshold=threshold, countdown=countdown
)
self._fileManager.delete_recovery_data()
self._lastProgressReport = None
self._updateProgressData()
self._setCurrentZ(None)
self._comm.startPrint(
pos=pos, tags=kwargs.get("tags", set()) | {"trigger:printer.start_print"}
)
|
def start_print(self, pos=None, user=None, *args, **kwargs):
"""
Starts the currently loaded print job.
Only starts if the printer is connected and operational, not currently printing and a printjob is loaded
"""
if self._comm is None or not self._comm.isOperational() or self._comm.isPrinting():
return
with self._selectedFileMutex:
if self._selectedFile is None:
return
# we are happy if the average of the estimates stays within 60s of the prior one
threshold = settings().getFloat(["estimation", "printTime", "stableThreshold"])
rolling_window = None
countdown = None
with self._selectedFileMutex:
if self._selectedFile["sd"]:
# we are interesting in a rolling window of roughly the last 15s, so the number of entries has to be derived
# by that divided by the sd status polling interval
rolling_window = 15 / settings().get(["serial", "timeout", "sdStatus"])
# we are happy when one rolling window has been stable
countdown = rolling_window
self._timeEstimationData = TimeEstimationHelper(
rolling_window=rolling_window, threshold=threshold, countdown=countdown
)
self._fileManager.delete_recovery_data()
self._lastProgressReport = None
self._updateProgressData()
self._setCurrentZ(None)
self._setPrintingUser(user)
self._comm.startPrint(
pos=pos, tags=kwargs.get("tags", set()) | {"trigger:printer.start_print"}
)
|
https://github.com/OctoPrint/OctoPrint/issues/2610
|
2018-04-25 15:38:03,495 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,496 - octoprint.startup - INFO - Starting OctoPrint 1.3.9.dev131+gbe4b98b9
2018-04-25 15:38:03,497 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2018-04-25 15:38:03,497 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,521 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-25 15:38:03,523 - octoprint.startup - INFO - Blacklist processing done
2018-04-25 15:38:03,543 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:03,958 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,300 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2018-04-25 15:38:04,304 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,346 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-25 15:38:04,357 - octoprint.server - INFO - Intermediary server started
2018-04-25 15:38:04,357 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:04,362 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,620 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/hash/.octoprint/uploads...
2018-04-25 15:38:04,934 - octoprint.filemanager.storage - INFO - ... file metadata for /home/hash/.octoprint/uploads initialized successfully.
2018-04-25 15:38:04,976 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-25 15:38:05,625 - octoprint.util.pip - INFO - Using "/home/hash/devel/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2018-04-25 15:38:06,269 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - pip installs to /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-25 15:38:06,272 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s)
2018-04-25 15:38:06,280 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/discovery
| Logging (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/logging
| !Opitemp Plugin (1.0.1) = /home/hash/devel/OctoPrint-OpiTemp/octoprint_opitemp
| Plugin Manager (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/softwareupdate
| !TimelapseStatsOverlay (0.1.1) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_TimelapseStatsOverlay-0.1.1-py2.7.egg/octoprint_timelapsestatsoverlay
| !Virtual LCD (0.1.0) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_Vlcd-0.1.0-py2.7.egg/octoprint_vlcd
| Virtual Printer (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/virtual_printer
2018-04-25 15:38:06,287 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 2
| freq: 2000.0
| ram: 1052196864
| os:
| id: linux
| platform: linux2
| python:
| pip: 10.0.1
| version: 2.7.13
| virtualenv: /home/hash/devel/OctoPrint/venv
2018-04-25 15:38:06,291 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/webassets...
2018-04-25 15:38:06,302 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/.webassets-cache...
2018-04-25 15:38:06,364 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-25 15:38:06,864 - octoprint.server - INFO - Intermediary server shut down
2018-04-25 15:38:06,866 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-25 15:38:06,867 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-25 15:38:06,874 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-25 15:38:06,916 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:06,949 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2018-04-25 15:38:06,981 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on portatil for SSDP
2018-04-25 15:38:06,983 - octoprint.server - INFO - Listening on http://[::]:5000
2018-04-25 15:38:06,985 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2018-04-25 15:38:07,028 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-25 15:38:07,116 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:07,329 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:07,391 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.12:5000/'}
2018-04-25 15:38:07,478 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:11,307 - octoprint.server.preemptive_cache - INFO - ... done in 3.92s
2018-04-25 15:38:11,882 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:13,112 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2
2018-04-25 15:38:13,893 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:17,705 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-25 15:38:17,709 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2018-04-25 15:38:18,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,717 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2018-04-25 15:38:18,722 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,728 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2018-04-25 15:38:26,667 - octoprint - ERROR - Exception on /api/job [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/job.py", line 42, in controlJob
printer.start_print(tags=tags, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 503, in start_print
self._setPrintingUser(user)
AttributeError: 'Printer' object has no attribute '_setPrintingUser'
2018-04-25 15:38:26,671 - tornado.access - ERROR - 500 POST /api/job (192.168.1.2) 9.74ms
2018-04-25 15:40:23,406 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Micro_Catapult_INC.gcode
2018-04-25 15:40:23,407 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/hash/devel/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=16000 --speed-y=16000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/hash/.octoprint/uploads/Micro_Catapult_INC.gcode
2018-04-25 15:40:23,429 - octoprint - ERROR - Exception on /api/files/local [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 361, in uploadGcodeFile
filename = fileProcessingFinished(added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 332, in fileProcessingFinished
selectAndOrPrint(filename, absFilename, destination)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 345, in selectAndOrPrint
printer.select_file(absFilename, destination == FileDestinations.SDCARD, printAfterSelect, user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 448, in select_file
tags=kwargs.get("tags", set()) | {"trigger:printer.select_file"})
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/util/comm.py", line 1094, in selectFile
self._callback.on_comm_file_selected(filename, self._currentFile.getFilesize(), False, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 1155, in on_comm_file_selected
self.start_print(pos=self._posAfterSelect, user=self._printingUser)
AttributeError: 'Printer' object has no attribute '_printingUser'
2018-04-25 15:40:23,437 - tornado.access - ERROR - 500 POST /api/files/local?print=true (192.168.1.2) 105.88ms
2018-04-25 15:40:32,554 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Micro_Catapult_INC.gcode finished, needed 9.15s
2018-04-25 15:41:03,810 - octoprint.server - INFO - Shutting down...
2018-04-25 15:41:03,983 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-25 15:41:03,989 - octoprint.events - INFO - Event loop shut down
2018-04-25 15:41:03,991 - octoprint.server - INFO - Goodbye!
|
AttributeError
|
def on_comm_file_selected(self, full_path, size, sd, user=None):
if full_path is not None:
payload = self._payload_for_print_job_event(
location=FileDestinations.SDCARD if sd else FileDestinations.LOCAL,
print_job_file=full_path,
)
eventManager().fire(Events.FILE_SELECTED, payload)
else:
eventManager().fire(Events.FILE_DESELECTED)
self._setJobData(full_path, size, sd, user=user)
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
if self._printAfterSelect:
self._printAfterSelect = False
self.start_print(pos=self._posAfterSelect, user=user)
|
def on_comm_file_selected(self, full_path, size, sd, user=None):
if full_path is not None:
payload = self._payload_for_print_job_event(
location=FileDestinations.SDCARD if sd else FileDestinations.LOCAL,
print_job_file=full_path,
)
eventManager().fire(Events.FILE_SELECTED, payload)
else:
eventManager().fire(Events.FILE_DESELECTED)
self._setJobData(full_path, size, sd, user=user)
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
if self._printAfterSelect:
self._printAfterSelect = False
self.start_print(pos=self._posAfterSelect, user=self._printingUser)
|
https://github.com/OctoPrint/OctoPrint/issues/2610
|
2018-04-25 15:38:03,495 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,496 - octoprint.startup - INFO - Starting OctoPrint 1.3.9.dev131+gbe4b98b9
2018-04-25 15:38:03,497 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2018-04-25 15:38:03,497 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,521 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-25 15:38:03,523 - octoprint.startup - INFO - Blacklist processing done
2018-04-25 15:38:03,543 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:03,958 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,300 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2018-04-25 15:38:04,304 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,346 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-25 15:38:04,357 - octoprint.server - INFO - Intermediary server started
2018-04-25 15:38:04,357 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:04,362 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,620 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/hash/.octoprint/uploads...
2018-04-25 15:38:04,934 - octoprint.filemanager.storage - INFO - ... file metadata for /home/hash/.octoprint/uploads initialized successfully.
2018-04-25 15:38:04,976 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-25 15:38:05,625 - octoprint.util.pip - INFO - Using "/home/hash/devel/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2018-04-25 15:38:06,269 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - pip installs to /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-25 15:38:06,272 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s)
2018-04-25 15:38:06,280 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/discovery
| Logging (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/logging
| !Opitemp Plugin (1.0.1) = /home/hash/devel/OctoPrint-OpiTemp/octoprint_opitemp
| Plugin Manager (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/softwareupdate
| !TimelapseStatsOverlay (0.1.1) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_TimelapseStatsOverlay-0.1.1-py2.7.egg/octoprint_timelapsestatsoverlay
| !Virtual LCD (0.1.0) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_Vlcd-0.1.0-py2.7.egg/octoprint_vlcd
| Virtual Printer (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/virtual_printer
2018-04-25 15:38:06,287 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 2
| freq: 2000.0
| ram: 1052196864
| os:
| id: linux
| platform: linux2
| python:
| pip: 10.0.1
| version: 2.7.13
| virtualenv: /home/hash/devel/OctoPrint/venv
2018-04-25 15:38:06,291 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/webassets...
2018-04-25 15:38:06,302 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/.webassets-cache...
2018-04-25 15:38:06,364 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-25 15:38:06,864 - octoprint.server - INFO - Intermediary server shut down
2018-04-25 15:38:06,866 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-25 15:38:06,867 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-25 15:38:06,874 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-25 15:38:06,916 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:06,949 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2018-04-25 15:38:06,981 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on portatil for SSDP
2018-04-25 15:38:06,983 - octoprint.server - INFO - Listening on http://[::]:5000
2018-04-25 15:38:06,985 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2018-04-25 15:38:07,028 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-25 15:38:07,116 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:07,329 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:07,391 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.12:5000/'}
2018-04-25 15:38:07,478 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:11,307 - octoprint.server.preemptive_cache - INFO - ... done in 3.92s
2018-04-25 15:38:11,882 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:13,112 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2
2018-04-25 15:38:13,893 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:17,705 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-25 15:38:17,709 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2018-04-25 15:38:18,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,717 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2018-04-25 15:38:18,722 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,728 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2018-04-25 15:38:26,667 - octoprint - ERROR - Exception on /api/job [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/job.py", line 42, in controlJob
printer.start_print(tags=tags, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 503, in start_print
self._setPrintingUser(user)
AttributeError: 'Printer' object has no attribute '_setPrintingUser'
2018-04-25 15:38:26,671 - tornado.access - ERROR - 500 POST /api/job (192.168.1.2) 9.74ms
2018-04-25 15:40:23,406 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Micro_Catapult_INC.gcode
2018-04-25 15:40:23,407 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/hash/devel/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=16000 --speed-y=16000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/hash/.octoprint/uploads/Micro_Catapult_INC.gcode
2018-04-25 15:40:23,429 - octoprint - ERROR - Exception on /api/files/local [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 361, in uploadGcodeFile
filename = fileProcessingFinished(added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 332, in fileProcessingFinished
selectAndOrPrint(filename, absFilename, destination)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 345, in selectAndOrPrint
printer.select_file(absFilename, destination == FileDestinations.SDCARD, printAfterSelect, user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 448, in select_file
tags=kwargs.get("tags", set()) | {"trigger:printer.select_file"})
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/util/comm.py", line 1094, in selectFile
self._callback.on_comm_file_selected(filename, self._currentFile.getFilesize(), False, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 1155, in on_comm_file_selected
self.start_print(pos=self._posAfterSelect, user=self._printingUser)
AttributeError: 'Printer' object has no attribute '_printingUser'
2018-04-25 15:40:23,437 - tornado.access - ERROR - 500 POST /api/files/local?print=true (192.168.1.2) 105.88ms
2018-04-25 15:40:32,554 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Micro_Catapult_INC.gcode finished, needed 9.15s
2018-04-25 15:41:03,810 - octoprint.server - INFO - Shutting down...
2018-04-25 15:41:03,983 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-25 15:41:03,989 - octoprint.events - INFO - Event loop shut down
2018-04-25 15:41:03,991 - octoprint.server - INFO - Goodbye!
|
AttributeError
|
def on_comm_print_job_done(self):
self._fileManager.delete_recovery_data()
payload = self._payload_for_print_job_event()
if payload:
payload["time"] = self._comm.getPrintTime()
self._updateProgressData(
completion=1.0,
filepos=payload["size"],
printTime=payload["time"],
printTimeLeft=0,
)
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
eventManager().fire(Events.PRINT_DONE, payload)
self.script("afterPrintDone", context=dict(event=payload), must_be_set=False)
def log_print():
self._fileManager.log_print(
payload["origin"],
payload["path"],
time.time(),
payload["time"],
True,
self._printerProfileManager.get_current_or_default()["id"],
)
thread = threading.Thread(target=log_print)
thread.daemon = True
thread.start()
else:
self._updateProgressData()
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
|
def on_comm_print_job_done(self):
self._fileManager.delete_recovery_data()
self._setPrintingUser(None)
payload = self._payload_for_print_job_event()
if payload:
payload["time"] = self._comm.getPrintTime()
self._updateProgressData(
completion=1.0,
filepos=payload["size"],
printTime=payload["time"],
printTimeLeft=0,
)
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
eventManager().fire(Events.PRINT_DONE, payload)
self.script("afterPrintDone", context=dict(event=payload), must_be_set=False)
def log_print():
self._fileManager.log_print(
payload["origin"],
payload["path"],
time.time(),
payload["time"],
True,
self._printerProfileManager.get_current_or_default()["id"],
)
thread = threading.Thread(target=log_print)
thread.daemon = True
thread.start()
else:
self._updateProgressData()
self._stateMonitor.set_state(
self._dict(text=self.get_state_string(), flags=self._getStateFlags())
)
|
https://github.com/OctoPrint/OctoPrint/issues/2610
|
2018-04-25 15:38:03,495 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,496 - octoprint.startup - INFO - Starting OctoPrint 1.3.9.dev131+gbe4b98b9
2018-04-25 15:38:03,497 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2018-04-25 15:38:03,497 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,521 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-25 15:38:03,523 - octoprint.startup - INFO - Blacklist processing done
2018-04-25 15:38:03,543 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:03,958 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,300 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2018-04-25 15:38:04,304 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,346 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-25 15:38:04,357 - octoprint.server - INFO - Intermediary server started
2018-04-25 15:38:04,357 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:04,362 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,620 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/hash/.octoprint/uploads...
2018-04-25 15:38:04,934 - octoprint.filemanager.storage - INFO - ... file metadata for /home/hash/.octoprint/uploads initialized successfully.
2018-04-25 15:38:04,976 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-25 15:38:05,625 - octoprint.util.pip - INFO - Using "/home/hash/devel/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2018-04-25 15:38:06,269 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - pip installs to /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-25 15:38:06,272 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s)
2018-04-25 15:38:06,280 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/discovery
| Logging (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/logging
| !Opitemp Plugin (1.0.1) = /home/hash/devel/OctoPrint-OpiTemp/octoprint_opitemp
| Plugin Manager (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/softwareupdate
| !TimelapseStatsOverlay (0.1.1) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_TimelapseStatsOverlay-0.1.1-py2.7.egg/octoprint_timelapsestatsoverlay
| !Virtual LCD (0.1.0) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_Vlcd-0.1.0-py2.7.egg/octoprint_vlcd
| Virtual Printer (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/virtual_printer
2018-04-25 15:38:06,287 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 2
| freq: 2000.0
| ram: 1052196864
| os:
| id: linux
| platform: linux2
| python:
| pip: 10.0.1
| version: 2.7.13
| virtualenv: /home/hash/devel/OctoPrint/venv
2018-04-25 15:38:06,291 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/webassets...
2018-04-25 15:38:06,302 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/.webassets-cache...
2018-04-25 15:38:06,364 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-25 15:38:06,864 - octoprint.server - INFO - Intermediary server shut down
2018-04-25 15:38:06,866 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-25 15:38:06,867 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-25 15:38:06,874 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-25 15:38:06,916 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:06,949 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2018-04-25 15:38:06,981 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on portatil for SSDP
2018-04-25 15:38:06,983 - octoprint.server - INFO - Listening on http://[::]:5000
2018-04-25 15:38:06,985 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2018-04-25 15:38:07,028 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-25 15:38:07,116 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:07,329 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:07,391 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.12:5000/'}
2018-04-25 15:38:07,478 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:11,307 - octoprint.server.preemptive_cache - INFO - ... done in 3.92s
2018-04-25 15:38:11,882 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:13,112 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2
2018-04-25 15:38:13,893 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:17,705 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-25 15:38:17,709 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2018-04-25 15:38:18,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,717 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2018-04-25 15:38:18,722 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,728 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2018-04-25 15:38:26,667 - octoprint - ERROR - Exception on /api/job [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/job.py", line 42, in controlJob
printer.start_print(tags=tags, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 503, in start_print
self._setPrintingUser(user)
AttributeError: 'Printer' object has no attribute '_setPrintingUser'
2018-04-25 15:38:26,671 - tornado.access - ERROR - 500 POST /api/job (192.168.1.2) 9.74ms
2018-04-25 15:40:23,406 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Micro_Catapult_INC.gcode
2018-04-25 15:40:23,407 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/hash/devel/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=16000 --speed-y=16000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/hash/.octoprint/uploads/Micro_Catapult_INC.gcode
2018-04-25 15:40:23,429 - octoprint - ERROR - Exception on /api/files/local [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 361, in uploadGcodeFile
filename = fileProcessingFinished(added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 332, in fileProcessingFinished
selectAndOrPrint(filename, absFilename, destination)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 345, in selectAndOrPrint
printer.select_file(absFilename, destination == FileDestinations.SDCARD, printAfterSelect, user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 448, in select_file
tags=kwargs.get("tags", set()) | {"trigger:printer.select_file"})
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/util/comm.py", line 1094, in selectFile
self._callback.on_comm_file_selected(filename, self._currentFile.getFilesize(), False, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 1155, in on_comm_file_selected
self.start_print(pos=self._posAfterSelect, user=self._printingUser)
AttributeError: 'Printer' object has no attribute '_printingUser'
2018-04-25 15:40:23,437 - tornado.access - ERROR - 500 POST /api/files/local?print=true (192.168.1.2) 105.88ms
2018-04-25 15:40:32,554 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Micro_Catapult_INC.gcode finished, needed 9.15s
2018-04-25 15:41:03,810 - octoprint.server - INFO - Shutting down...
2018-04-25 15:41:03,983 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-25 15:41:03,989 - octoprint.events - INFO - Event loop shut down
2018-04-25 15:41:03,991 - octoprint.server - INFO - Goodbye!
|
AttributeError
|
def on_comm_print_job_failed(self):
payload = self._payload_for_print_job_event()
if payload:
eventManager().fire(Events.PRINT_FAILED, payload)
|
def on_comm_print_job_failed(self):
self._setPrintingUser(None)
payload = self._payload_for_print_job_event()
if payload:
eventManager().fire(Events.PRINT_FAILED, payload)
|
https://github.com/OctoPrint/OctoPrint/issues/2610
|
2018-04-25 15:38:03,495 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,496 - octoprint.startup - INFO - Starting OctoPrint 1.3.9.dev131+gbe4b98b9
2018-04-25 15:38:03,497 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2018-04-25 15:38:03,497 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,521 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-25 15:38:03,523 - octoprint.startup - INFO - Blacklist processing done
2018-04-25 15:38:03,543 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:03,958 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,300 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2018-04-25 15:38:04,304 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,346 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-25 15:38:04,357 - octoprint.server - INFO - Intermediary server started
2018-04-25 15:38:04,357 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:04,362 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,620 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/hash/.octoprint/uploads...
2018-04-25 15:38:04,934 - octoprint.filemanager.storage - INFO - ... file metadata for /home/hash/.octoprint/uploads initialized successfully.
2018-04-25 15:38:04,976 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-25 15:38:05,625 - octoprint.util.pip - INFO - Using "/home/hash/devel/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2018-04-25 15:38:06,269 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - pip installs to /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-25 15:38:06,272 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s)
2018-04-25 15:38:06,280 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/discovery
| Logging (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/logging
| !Opitemp Plugin (1.0.1) = /home/hash/devel/OctoPrint-OpiTemp/octoprint_opitemp
| Plugin Manager (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/softwareupdate
| !TimelapseStatsOverlay (0.1.1) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_TimelapseStatsOverlay-0.1.1-py2.7.egg/octoprint_timelapsestatsoverlay
| !Virtual LCD (0.1.0) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_Vlcd-0.1.0-py2.7.egg/octoprint_vlcd
| Virtual Printer (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/virtual_printer
2018-04-25 15:38:06,287 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 2
| freq: 2000.0
| ram: 1052196864
| os:
| id: linux
| platform: linux2
| python:
| pip: 10.0.1
| version: 2.7.13
| virtualenv: /home/hash/devel/OctoPrint/venv
2018-04-25 15:38:06,291 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/webassets...
2018-04-25 15:38:06,302 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/.webassets-cache...
2018-04-25 15:38:06,364 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-25 15:38:06,864 - octoprint.server - INFO - Intermediary server shut down
2018-04-25 15:38:06,866 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-25 15:38:06,867 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-25 15:38:06,874 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-25 15:38:06,916 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:06,949 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2018-04-25 15:38:06,981 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on portatil for SSDP
2018-04-25 15:38:06,983 - octoprint.server - INFO - Listening on http://[::]:5000
2018-04-25 15:38:06,985 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2018-04-25 15:38:07,028 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-25 15:38:07,116 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:07,329 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:07,391 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.12:5000/'}
2018-04-25 15:38:07,478 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:11,307 - octoprint.server.preemptive_cache - INFO - ... done in 3.92s
2018-04-25 15:38:11,882 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:13,112 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2
2018-04-25 15:38:13,893 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:17,705 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-25 15:38:17,709 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2018-04-25 15:38:18,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,717 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2018-04-25 15:38:18,722 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,728 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2018-04-25 15:38:26,667 - octoprint - ERROR - Exception on /api/job [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/job.py", line 42, in controlJob
printer.start_print(tags=tags, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 503, in start_print
self._setPrintingUser(user)
AttributeError: 'Printer' object has no attribute '_setPrintingUser'
2018-04-25 15:38:26,671 - tornado.access - ERROR - 500 POST /api/job (192.168.1.2) 9.74ms
2018-04-25 15:40:23,406 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Micro_Catapult_INC.gcode
2018-04-25 15:40:23,407 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/hash/devel/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=16000 --speed-y=16000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/hash/.octoprint/uploads/Micro_Catapult_INC.gcode
2018-04-25 15:40:23,429 - octoprint - ERROR - Exception on /api/files/local [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 361, in uploadGcodeFile
filename = fileProcessingFinished(added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 332, in fileProcessingFinished
selectAndOrPrint(filename, absFilename, destination)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 345, in selectAndOrPrint
printer.select_file(absFilename, destination == FileDestinations.SDCARD, printAfterSelect, user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 448, in select_file
tags=kwargs.get("tags", set()) | {"trigger:printer.select_file"})
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/util/comm.py", line 1094, in selectFile
self._callback.on_comm_file_selected(filename, self._currentFile.getFilesize(), False, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 1155, in on_comm_file_selected
self.start_print(pos=self._posAfterSelect, user=self._printingUser)
AttributeError: 'Printer' object has no attribute '_printingUser'
2018-04-25 15:40:23,437 - tornado.access - ERROR - 500 POST /api/files/local?print=true (192.168.1.2) 105.88ms
2018-04-25 15:40:32,554 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Micro_Catapult_INC.gcode finished, needed 9.15s
2018-04-25 15:41:03,810 - octoprint.server - INFO - Shutting down...
2018-04-25 15:41:03,983 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-25 15:41:03,989 - octoprint.events - INFO - Event loop shut down
2018-04-25 15:41:03,991 - octoprint.server - INFO - Goodbye!
|
AttributeError
|
def on_comm_print_job_cancelled(self):
self._setCurrentZ(None)
self._updateProgressData()
payload = self._payload_for_print_job_event(
position=self._comm.cancel_position.as_dict()
if self._comm and self._comm.cancel_position
else None
)
if payload:
payload["time"] = self._comm.getPrintTime()
eventManager().fire(Events.PRINT_CANCELLED, payload)
self.script(
"afterPrintCancelled", context=dict(event=payload), must_be_set=False
)
def finalize():
self._fileManager.log_print(
payload["origin"],
payload["path"],
time.time(),
payload["time"],
False,
self._printerProfileManager.get_current_or_default()["id"],
)
eventManager().fire(Events.PRINT_FAILED, payload)
thread = threading.Thread(target=finalize)
thread.daemon = True
thread.start()
|
def on_comm_print_job_cancelled(self):
self._setCurrentZ(None)
self._updateProgressData()
self._setPrintingUser(None)
payload = self._payload_for_print_job_event(
position=self._comm.cancel_position.as_dict()
if self._comm and self._comm.cancel_position
else None
)
if payload:
payload["time"] = self._comm.getPrintTime()
eventManager().fire(Events.PRINT_CANCELLED, payload)
self.script(
"afterPrintCancelled", context=dict(event=payload), must_be_set=False
)
def finalize():
self._fileManager.log_print(
payload["origin"],
payload["path"],
time.time(),
payload["time"],
False,
self._printerProfileManager.get_current_or_default()["id"],
)
eventManager().fire(Events.PRINT_FAILED, payload)
thread = threading.Thread(target=finalize)
thread.daemon = True
thread.start()
|
https://github.com/OctoPrint/OctoPrint/issues/2610
|
2018-04-25 15:38:03,495 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,496 - octoprint.startup - INFO - Starting OctoPrint 1.3.9.dev131+gbe4b98b9
2018-04-25 15:38:03,497 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2018-04-25 15:38:03,497 - octoprint.startup - INFO - ******************************************************************************
2018-04-25 15:38:03,521 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-04-25 15:38:03,523 - octoprint.startup - INFO - Blacklist processing done
2018-04-25 15:38:03,543 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:03,958 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,300 - octoprint.plugins.discovery - INFO - pybonjour is not installed, Zeroconf Discovery won't be available
2018-04-25 15:38:04,304 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,346 - octoprint.server.heartbeat - INFO - Starting server heartbeat, 900.0s interval
2018-04-25 15:38:04,357 - octoprint.server - INFO - Intermediary server started
2018-04-25 15:38:04,357 - octoprint.plugin.core - INFO - Loading plugins from /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins, /home/hash/.octoprint/plugins and installed plugin packages...
2018-04-25 15:38:04,362 - octoprint.plugin.core - WARNING - Plugin "OctoPi Support Plugin" did not pass check
2018-04-25 15:38:04,620 - octoprint.plugin.core - INFO - Found 12 plugin(s) providing 9 mixin implementations, 5 hook handlers
2018-04-25 15:38:04,634 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/hash/.octoprint/uploads...
2018-04-25 15:38:04,934 - octoprint.filemanager.storage - INFO - ... file metadata for /home/hash/.octoprint/uploads initialized successfully.
2018-04-25 15:38:04,976 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-04-25 15:38:05,625 - octoprint.util.pip - INFO - Using "/home/hash/devel/OctoPrint/venv/bin/python -m pip" as command to invoke pip
2018-04-25 15:38:06,269 - octoprint.util.pip - INFO - Version of pip is 10.0.1
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - pip installs to /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages (writable -> yes), --user flag needed -> no, virtual env -> yes
2018-04-25 15:38:06,270 - octoprint.util.pip - INFO - ==> pip ok -> yes
2018-04-25 15:38:06,272 - octoprint.plugin.core - INFO - Initialized 9 plugin implementation(s)
2018-04-25 15:38:06,280 - octoprint.plugin.core - INFO - 12 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/discovery
| Logging (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/logging
| !Opitemp Plugin (1.0.1) = /home/hash/devel/OctoPrint-OpiTemp/octoprint_opitemp
| Plugin Manager (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/pluginmanager
| Printer Safety Check (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/printer_safety_check
| Software Update (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/softwareupdate
| !TimelapseStatsOverlay (0.1.1) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_TimelapseStatsOverlay-0.1.1-py2.7.egg/octoprint_timelapsestatsoverlay
| !Virtual LCD (0.1.0) = /home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint_Vlcd-0.1.0-py2.7.egg/octoprint_vlcd
| Virtual Printer (bundled) = /home/hash/devel/OctoPrint/venv/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/plugins/virtual_printer
2018-04-25 15:38:06,287 - octoprint.environment - INFO - Detected environment is Python 2.7.13 under Linux (linux2). Details:
| hardware:
| cores: 2
| freq: 2000.0
| ram: 1052196864
| os:
| id: linux
| platform: linux2
| python:
| pip: 10.0.1
| version: 2.7.13
| virtualenv: /home/hash/devel/OctoPrint/venv
2018-04-25 15:38:06,291 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/webassets...
2018-04-25 15:38:06,302 - octoprint.server - INFO - Reset webasset folder /home/hash/.octoprint/generated/.webassets-cache...
2018-04-25 15:38:06,364 - octoprint.server - INFO - Shutting down intermediary server...
2018-04-25 15:38:06,864 - octoprint.server - INFO - Intermediary server shut down
2018-04-25 15:38:06,866 - octoprint.events - INFO - Processing startup event, this is our first event
2018-04-25 15:38:06,867 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-04-25 15:38:06,874 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-04-25 15:38:06,916 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:06,949 - octoprint.plugins.cura - INFO - Path to CuraEngine has not been configured or does not exist (currently set to None), Cura will not be selectable for slicing
2018-04-25 15:38:06,981 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on portatil for SSDP
2018-04-25 15:38:06,983 - octoprint.server - INFO - Listening on http://[::]:5000
2018-04-25 15:38:06,985 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2018-04-25 15:38:07,028 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-04-25 15:38:07,116 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:07,329 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-04-25 15:38:07,391 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.1.12:5000/'}
2018-04-25 15:38:07,478 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-04-25 15:38:11,307 - octoprint.server.preemptive_cache - INFO - ... done in 3.92s
2018-04-25 15:38:11,882 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:13,112 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.1.2
2018-04-25 15:38:13,893 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.1.2
2018-04-25 15:38:17,705 - octoprint.util.comm - INFO - Changing monitoring state from "Offline" to "Opening serial port"
2018-04-25 15:38:17,709 - octoprint.util.comm - INFO - Changing monitoring state from "Opening serial port" to "Detecting baudrate"
2018-04-25 15:38:18,714 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,717 - octoprint.util.comm - INFO - Changing monitoring state from "Detecting baudrate" to "Operational"
2018-04-25 15:38:18,722 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-04-25 15:38:18,728 - octoprint.util.comm - INFO - Printer reports firmware name "Virtual Marlin 1.0"
2018-04-25 15:38:26,667 - octoprint - ERROR - Exception on /api/job [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/job.py", line 42, in controlJob
printer.start_print(tags=tags, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 503, in start_print
self._setPrintingUser(user)
AttributeError: 'Printer' object has no attribute '_setPrintingUser'
2018-04-25 15:38:26,671 - tornado.access - ERROR - 500 POST /api/job (192.168.1.2) 9.74ms
2018-04-25 15:40:23,406 - octoprint.filemanager.analysis - INFO - Starting analysis of local:Micro_Catapult_INC.gcode
2018-04-25 15:40:23,407 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/hash/devel/OctoPrint/venv/bin/python -m octoprint analysis gcode --speed-x=16000 --speed-y=16000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/hash/.octoprint/uploads/Micro_Catapult_INC.gcode
2018-04-25 15:40:23,429 - octoprint - ERROR - Exception on /api/files/local [POST]
Traceback (most recent call last):
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/util/flask.py", line 1140, in decorated_view
return flask_login.login_required(func)(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/flask_login.py", line 758, in decorated_view
return func(*args, **kwargs)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 361, in uploadGcodeFile
filename = fileProcessingFinished(added_file, fileManager.path_on_disk(FileDestinations.LOCAL, added_file), target)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 332, in fileProcessingFinished
selectAndOrPrint(filename, absFilename, destination)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/server/api/files.py", line 345, in selectAndOrPrint
printer.select_file(absFilename, destination == FileDestinations.SDCARD, printAfterSelect, user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 448, in select_file
tags=kwargs.get("tags", set()) | {"trigger:printer.select_file"})
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/util/comm.py", line 1094, in selectFile
self._callback.on_comm_file_selected(filename, self._currentFile.getFilesize(), False, user=user)
File "/home/hash/devel/OctoPrint/venv/local/lib/python2.7/site-packages/OctoPrint-1.3.9.dev131+gbe4b98b9-py2.7.egg/octoprint/printer/standard.py", line 1155, in on_comm_file_selected
self.start_print(pos=self._posAfterSelect, user=self._printingUser)
AttributeError: 'Printer' object has no attribute '_printingUser'
2018-04-25 15:40:23,437 - tornado.access - ERROR - 500 POST /api/files/local?print=true (192.168.1.2) 105.88ms
2018-04-25 15:40:32,554 - octoprint.filemanager.analysis - INFO - Analysis of entry local:Micro_Catapult_INC.gcode finished, needed 9.15s
2018-04-25 15:41:03,810 - octoprint.server - INFO - Shutting down...
2018-04-25 15:41:03,983 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-04-25 15:41:03,989 - octoprint.events - INFO - Event loop shut down
2018-04-25 15:41:03,991 - octoprint.server - INFO - Goodbye!
|
AttributeError
|
def run(self):
if not self._allow_root:
self._check_for_root()
if self._settings is None:
self._settings = settings()
if self._plugin_manager is None:
self._plugin_manager = octoprint.plugin.plugin_manager()
global app
global babel
global printer
global printerProfileManager
global fileManager
global slicingManager
global analysisQueue
global userManager
global eventManager
global loginManager
global pluginManager
global appSessionManager
global pluginLifecycleManager
global preemptiveCache
global connectivityChecker
global debug
global safe_mode
from tornado.ioloop import IOLoop
from tornado.web import Application
debug = self._debug
safe_mode = self._safe_mode
self._logger = logging.getLogger(__name__)
pluginManager = self._plugin_manager
# monkey patch a bunch of stuff
util.tornado.fix_ioloop_scheduling()
util.flask.enable_additional_translations(
additional_folders=[self._settings.getBaseFolder("translations")]
)
# setup app
self._setup_app(app)
# setup i18n
self._setup_i18n(app)
if self._settings.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
# start the intermediary server
self._start_intermediary_server()
### IMPORTANT!
###
### Best do not start any subprocesses until the intermediary server shuts down again or they MIGHT inherit the
### open port and prevent us from firing up Tornado later.
###
### The intermediary server's socket should have the CLOSE_EXEC flag (or its equivalent) set where possible, but
### we can only do that if fcntl is availabel or we are on Windows, so better safe than sorry.
###
### See also issues #2035 and #2090
# then initialize the plugin manager
pluginManager.reload_plugins(startup=True, initialize_implementations=False)
printerProfileManager = PrinterProfileManager()
eventManager = self._event_manager
analysisQueue = octoprint.filemanager.analysis.AnalysisQueue()
slicingManager = octoprint.slicing.SlicingManager(
self._settings.getBaseFolder("slicingProfiles"), printerProfileManager
)
storage_managers = dict()
storage_managers[octoprint.filemanager.FileDestinations.LOCAL] = (
octoprint.filemanager.storage.LocalFileStorage(
self._settings.getBaseFolder("uploads")
)
)
fileManager = octoprint.filemanager.FileManager(
analysisQueue,
slicingManager,
printerProfileManager,
initial_storage_managers=storage_managers,
)
appSessionManager = util.flask.AppSessionManager()
pluginLifecycleManager = LifecycleManager(pluginManager)
preemptiveCache = PreemptiveCache(
os.path.join(
self._settings.getBaseFolder("data"), "preemptive_cache_config.yaml"
)
)
connectivityChecker = self._connectivity_checker
def on_settings_update(*args, **kwargs):
# make sure our connectivity checker runs with the latest settings
connectivityEnabled = self._settings.getBoolean(
["server", "onlineCheck", "enabled"]
)
connectivityInterval = self._settings.getInt(
["server", "onlineCheck", "interval"]
)
connectivityHost = self._settings.get(["server", "onlineCheck", "host"])
connectivityPort = self._settings.getInt(["server", "onlineCheck", "port"])
if (
connectivityChecker.enabled != connectivityEnabled
or connectivityChecker.interval != connectivityInterval
or connectivityChecker.host != connectivityHost
or connectivityChecker.port != connectivityPort
):
connectivityChecker.enabled = connectivityEnabled
connectivityChecker.interval = connectivityInterval
connectivityChecker.host = connectivityHost
connectivityChecker.port = connectivityPort
connectivityChecker.check_immediately()
eventManager.subscribe(events.Events.SETTINGS_UPDATED, on_settings_update)
# setup access control
userManagerName = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(userManagerName)
userManager = clazz()
except:
self._logger.exception(
"Could not instantiate user manager {}, falling back to FilebasedUserManager!".format(
userManagerName
)
)
userManager = octoprint.users.FilebasedUserManager()
finally:
userManager.enabled = self._settings.getBoolean(["accessControl", "enabled"])
components = dict(
plugin_manager=pluginManager,
printer_profile_manager=printerProfileManager,
event_bus=eventManager,
analysis_queue=analysisQueue,
slicing_manager=slicingManager,
file_manager=fileManager,
app_session_manager=appSessionManager,
plugin_lifecycle_manager=pluginLifecycleManager,
preemptive_cache=preemptiveCache,
connectivity_checker=connectivityChecker,
environment_detector=self._environment_detector,
)
# create user manager instance
user_manager_factories = pluginManager.get_hooks("octoprint.users.factory")
for name, factory in user_manager_factories.items():
try:
userManager = factory(components, self._settings)
if userManager is not None:
self._logger.debug(
"Created user manager instance from factory {}".format(name)
)
break
except:
self._logger.exception(
"Error while creating user manager instance from factory {}".format(
name
)
)
else:
name = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(name)
userManager = clazz()
except:
self._logger.exception(
"Could not instantiate user manager {}, falling back to FilebasedUserManager!".format(
name
)
)
userManager = octoprint.users.FilebasedUserManager()
finally:
userManager.enabled = self._settings.getBoolean(
["accessControl", "enabled"]
)
components.update(dict(user_manager=userManager))
# create printer instance
printer_factories = pluginManager.get_hooks("octoprint.printer.factory")
for name, factory in printer_factories.items():
try:
printer = factory(components)
if printer is not None:
self._logger.debug(
"Created printer instance from factory {}".format(name)
)
break
except:
self._logger.exception(
"Error while creating printer instance from factory {}".format(name)
)
else:
printer = Printer(fileManager, analysisQueue, printerProfileManager)
components.update(dict(printer=printer))
def octoprint_plugin_inject_factory(name, implementation):
"""Factory for injections for all OctoPrintPlugins"""
if not isinstance(implementation, octoprint.plugin.OctoPrintPlugin):
return None
props = dict()
props.update(components)
props.update(
dict(data_folder=os.path.join(self._settings.getBaseFolder("data"), name))
)
return props
def settings_plugin_inject_factory(name, implementation):
"""Factory for additional injections/initializations depending on plugin type"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
default_settings_overlay = dict(plugins=dict())
default_settings_overlay["plugins"][name] = (
implementation.get_settings_defaults()
)
self._settings.add_overlay(default_settings_overlay, at_end=True)
plugin_settings = octoprint.plugin.plugin_settings_for_settings_plugin(
name, implementation
)
if plugin_settings is None:
return
return dict(settings=plugin_settings)
def settings_plugin_config_migration_and_cleanup(identifier, implementation):
"""Take care of migrating and cleaning up any old settings"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
settings_version = implementation.get_settings_version()
settings_migrator = implementation.on_settings_migrate
if settings_version is not None and settings_migrator is not None:
stored_version = implementation._settings.get_int(
[octoprint.plugin.SettingsPlugin.config_version_key]
)
if stored_version is None or stored_version < settings_version:
settings_migrator(settings_version, stored_version)
implementation._settings.set_int(
[octoprint.plugin.SettingsPlugin.config_version_key],
settings_version,
force=True,
)
implementation.on_settings_cleanup()
implementation._settings.save()
implementation.on_settings_initialized()
pluginManager.implementation_inject_factories = [
octoprint_plugin_inject_factory,
settings_plugin_inject_factory,
]
pluginManager.initialize_implementations()
settingsPlugins = pluginManager.get_implementations(octoprint.plugin.SettingsPlugin)
for implementation in settingsPlugins:
try:
settings_plugin_config_migration_and_cleanup(
implementation._identifier, implementation
)
except:
self._logger.exception(
"Error while trying to migrate settings for plugin {}, ignoring it".format(
implementation._identifier
)
)
pluginManager.implementation_post_inits = [
settings_plugin_config_migration_and_cleanup
]
pluginManager.log_all_plugins()
# log environment data now
self._environment_detector.log_detected_environment()
# initialize file manager and register it for changes in the registered plugins
fileManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: fileManager.reload_plugins()
)
# initialize slicing manager and register it for changes in the registered plugins
slicingManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: slicingManager.reload_slicers()
)
# setup jinja2
self._setup_jinja2()
# make sure plugin lifecycle events relevant for jinja2 are taken care of
def template_enabled(name, plugin):
if plugin.implementation is None or not isinstance(
plugin.implementation, octoprint.plugin.TemplatePlugin
):
return
self._register_additional_template_plugin(plugin.implementation)
def template_disabled(name, plugin):
if plugin.implementation is None or not isinstance(
plugin.implementation, octoprint.plugin.TemplatePlugin
):
return
self._unregister_additional_template_plugin(plugin.implementation)
pluginLifecycleManager.add_callback("enabled", template_enabled)
pluginLifecycleManager.add_callback("disabled", template_disabled)
# setup assets
self._setup_assets()
# configure timelapse
octoprint.timelapse.configure_timelapse()
# setup command triggers
events.CommandTrigger(printer)
if self._debug:
events.DebugEventListener()
loginManager = LoginManager()
loginManager.session_protection = "strong"
loginManager.user_callback = load_user
if not userManager.enabled:
loginManager.anonymous_user = users.DummyUser
principals.identity_loaders.appendleft(users.dummy_identity_loader)
loginManager.init_app(app, add_context_processor=False)
# register API blueprint
self._setup_blueprints()
## Tornado initialization starts here
if self._host is None:
self._host = self._settings.get(["server", "host"])
if self._port is None:
self._port = self._settings.getInt(["server", "port"])
ioloop = IOLoop()
ioloop.install()
self._router = SockJSRouter(
self._create_socket_connection,
"/sockjs",
session_kls=util.sockjs.ThreadSafeSession,
)
upload_suffixes = dict(
name=self._settings.get(["server", "uploads", "nameSuffix"]),
path=self._settings.get(["server", "uploads", "pathSuffix"]),
)
def mime_type_guesser(path):
from octoprint.filemanager import get_mime_type
return get_mime_type(path)
def download_name_generator(path):
metadata = fileManager.get_metadata("local", path)
if metadata and "display" in metadata:
return metadata["display"]
download_handler_kwargs = dict(as_attachment=True, allow_client_caching=False)
additional_mime_types = dict(mime_type_guesser=mime_type_guesser)
admin_validator = dict(
access_validation=util.tornado.access_validation_factory(
app, loginManager, util.flask.admin_validator
)
)
user_validator = dict(
access_validation=util.tornado.access_validation_factory(
app, loginManager, util.flask.user_validator
)
)
no_hidden_files_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path), status_code=404
)
)
def joined_dict(*dicts):
if not len(dicts):
return dict()
joined = dict()
for d in dicts:
joined.update(d)
return joined
util.tornado.RequestlessExceptionLoggingMixin.LOG_REQUEST = debug
server_routes = self._router.urls + [
# various downloads
# .mpg and .mp4 timelapses:
(
r"/downloads/timelapse/([^/]*\.mp[g4])",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("timelapse")),
download_handler_kwargs,
no_hidden_files_validator,
),
),
(
r"/downloads/files/local/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("uploads"),
as_attachment=True,
name_generator=download_name_generator,
),
download_handler_kwargs,
no_hidden_files_validator,
additional_mime_types,
),
),
(
r"/downloads/logs/([^/]*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("logs")),
download_handler_kwargs,
admin_validator,
),
),
# camera snapshot
(
r"/downloads/camera/current",
util.tornado.UrlProxyHandler,
joined_dict(
dict(
url=self._settings.get(["webcam", "snapshot"]), as_attachment=True
),
user_validator,
),
),
# generated webassets
(
r"/static/webassets/(.*)",
util.tornado.LargeResponseHandler,
dict(
path=os.path.join(
self._settings.getBaseFolder("generated"), "webassets"
)
),
),
# online indicators - text file with "online" as content and a transparent gif
(r"/online.txt", util.tornado.StaticDataHandler, dict(data="online\n")),
(
r"/online.gif",
util.tornado.StaticDataHandler,
dict(
data=bytes(
base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
),
content_type="image/gif",
),
),
]
# fetch additional routes from plugins
for name, hook in pluginManager.get_hooks("octoprint.server.http.routes").items():
try:
result = hook(list(server_routes))
except:
self._logger.exception(
"There was an error while retrieving additional server routes from plugin hook {name}".format(
**locals()
)
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if not isinstance(entry[0], basestring):
continue
if not isinstance(entry[2], dict):
continue
route, handler, kwargs = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding additional route {route} handled by handler {handler} and with additional arguments {kwargs!r}".format(
**locals()
)
)
server_routes.append((route, handler, kwargs))
headers = {"X-Robots-Tag": "noindex, nofollow, noimageindex"}
removed_headers = ["Server"]
server_routes.append(
(
r".*",
util.tornado.UploadStorageFallbackHandler,
dict(
fallback=util.tornado.WsgiInputContainer(
app.wsgi_app, headers=headers, removed_headers=removed_headers
),
file_prefix="octoprint-file-upload-",
file_suffix=".tmp",
suffixes=upload_suffixes,
),
)
)
transforms = [
util.tornado.GlobalHeaderTransform.for_headers(
"OctoPrintGlobalHeaderTransform",
headers=headers,
removed_headers=removed_headers,
)
]
self._tornado_app = Application(handlers=server_routes, transforms=transforms)
max_body_sizes = [
(
"POST",
r"/api/files/([^/]*)",
self._settings.getInt(["server", "uploads", "maxSize"]),
),
("POST", r"/api/languages", 5 * 1024 * 1024),
]
# allow plugins to extend allowed maximum body sizes
for name, hook in pluginManager.get_hooks("octoprint.server.http.bodysize").items():
try:
result = hook(list(max_body_sizes))
except:
self._logger.exception(
"There was an error while retrieving additional upload sizes from plugin hook {name}".format(
**locals()
)
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if (
not entry[0]
in util.tornado.UploadStorageFallbackHandler.BODY_METHODS
):
continue
if not isinstance(entry[2], int):
continue
method, route, size = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding maximum body size of {size}B for {method} requests to {route})".format(
**locals()
)
)
max_body_sizes.append((method, route, size))
self._stop_intermediary_server()
# initialize and bind the server
self._server = util.tornado.CustomHTTPServer(
self._tornado_app,
max_body_sizes=max_body_sizes,
default_max_body_size=self._settings.getInt(["server", "maxSize"]),
)
self._server.listen(self._port, address=self._host)
### From now on it's ok to launch subprocesses again
eventManager.fire(events.Events.STARTUP)
# analysis backlog
fileManager.process_backlog()
# auto connect
if self._settings.getBoolean(["serial", "autoconnect"]):
try:
(port, baudrate) = (
self._settings.get(["serial", "port"]),
self._settings.getInt(["serial", "baudrate"]),
)
printer_profile = printerProfileManager.get_default()
connectionOptions = printer.__class__.get_connection_options()
if port in connectionOptions["ports"] or port == "AUTO":
printer.connect(
port=port,
baudrate=baudrate,
profile=printer_profile["id"]
if "id" in printer_profile
else "_default",
)
except:
self._logger.exception(
"Something went wrong while attempting to automatically connect to the printer"
)
# start up watchdogs
if self._settings.getBoolean(["feature", "pollWatched"]):
# use less performant polling observer if explicitely configured
observer = PollingObserver()
else:
# use os default
observer = Observer()
observer.schedule(
util.watchdog.GcodeWatchdogHandler(fileManager, printer),
self._settings.getBaseFolder("watched"),
)
observer.start()
# run our startup plugins
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_startup",
args=(self._host, self._port),
sorting_context="StartupPlugin.on_startup",
)
def call_on_startup(name, plugin):
implementation = plugin.get_implementation(octoprint.plugin.StartupPlugin)
if implementation is None:
return
implementation.on_startup(self._host, self._port)
pluginLifecycleManager.add_callback("enabled", call_on_startup)
# prepare our after startup function
def on_after_startup():
self._logger.info("Listening on http://%s:%d" % (self._host, self._port))
if safe_mode and self._settings.getBoolean(["server", "startOnceInSafeMode"]):
self._logger.info(
"Server started successfully in safe mode as requested from config, removing flag"
)
self._settings.setBoolean(["server", "startOnceInSafeMode"], False)
self._settings.save()
# now this is somewhat ugly, but the issue is the following: startup plugins might want to do things for
# which they need the server to be already alive (e.g. for being able to resolve urls, such as favicons
# or service xmls or the like). While they are working though the ioloop would block. Therefore we'll
# create a single use thread in which to perform our after-startup-tasks, start that and hand back
# control to the ioloop
def work():
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_after_startup",
sorting_context="StartupPlugin.on_after_startup",
)
def call_on_after_startup(name, plugin):
implementation = plugin.get_implementation(
octoprint.plugin.StartupPlugin
)
if implementation is None:
return
implementation.on_after_startup()
pluginLifecycleManager.add_callback("enabled", call_on_after_startup)
# when we are through with that we also run our preemptive cache
if settings().getBoolean(["devel", "cache", "preemptive"]):
self._execute_preemptive_flask_caching(preemptiveCache)
import threading
threading.Thread(target=work).start()
ioloop.add_callback(on_after_startup)
# prepare our shutdown function
def on_shutdown():
# will be called on clean system exit and shutdown the watchdog observer and call the on_shutdown methods
# on all registered ShutdownPlugins
self._logger.info("Shutting down...")
observer.stop()
observer.join()
eventManager.fire(events.Events.SHUTDOWN)
octoprint.plugin.call_plugin(
octoprint.plugin.ShutdownPlugin,
"on_shutdown",
sorting_context="ShutdownPlugin.on_shutdown",
)
# wait for shutdown event to be processed, but maximally for 15s
event_timeout = 15.0
if eventManager.join(timeout=event_timeout):
self._logger.warn(
"Event loop was still busy processing after {}s, shutting down anyhow".format(
event_timeout
)
)
if self._octoprint_daemon is not None:
self._logger.info("Cleaning up daemon pidfile")
self._octoprint_daemon.terminated()
self._logger.info("Goodbye!")
atexit.register(on_shutdown)
def sigterm_handler(*args, **kwargs):
# will stop tornado on SIGTERM, making the program exit cleanly
def shutdown_tornado():
self._logger.debug("Shutting down tornado's IOLoop...")
ioloop.stop()
self._logger.debug("SIGTERM received...")
ioloop.add_callback_from_signal(shutdown_tornado)
signal.signal(signal.SIGTERM, sigterm_handler)
try:
# this is the main loop - as long as tornado is running, OctoPrint is running
ioloop.start()
self._logger.debug("Tornado's IOLoop stopped")
except (KeyboardInterrupt, SystemExit):
pass
except:
self._logger.fatal(
"Now that is embarrassing... Something really really went wrong here. Please report this including the stacktrace below in OctoPrint's bugtracker. Thanks!"
)
self._logger.exception("Stacktrace follows:")
|
def run(self):
if not self._allow_root:
self._check_for_root()
if self._settings is None:
self._settings = settings()
if self._plugin_manager is None:
self._plugin_manager = octoprint.plugin.plugin_manager()
global app
global babel
global printer
global printerProfileManager
global fileManager
global slicingManager
global analysisQueue
global userManager
global eventManager
global loginManager
global pluginManager
global appSessionManager
global pluginLifecycleManager
global preemptiveCache
global connectivityChecker
global debug
global safe_mode
from tornado.ioloop import IOLoop
from tornado.web import Application
debug = self._debug
safe_mode = self._safe_mode
self._logger = logging.getLogger(__name__)
pluginManager = self._plugin_manager
# monkey patch a bunch of stuff
util.tornado.fix_ioloop_scheduling()
util.flask.enable_additional_translations(
additional_folders=[self._settings.getBaseFolder("translations")]
)
# setup app
self._setup_app(app)
# setup i18n
self._setup_i18n(app)
if self._settings.getBoolean(["serial", "log"]):
# enable debug logging to serial.log
logging.getLogger("SERIAL").setLevel(logging.DEBUG)
# start the intermediary server
self._start_intermediary_server()
### IMPORTANT!
###
### Best do not start any subprocesses until the intermediary server shuts down again or they MIGHT inherit the
### open port and prevent us from firing up Tornado later.
###
### The intermediary server's socket should have the CLOSE_EXEC flag (or its equivalent) set where possible, but
### we can only do that if fcntl is availabel or we are on Windows, so better safe than sorry.
###
### See also issues #2035 and #2090
# then initialize the plugin manager
pluginManager.reload_plugins(startup=True, initialize_implementations=False)
printerProfileManager = PrinterProfileManager()
eventManager = self._event_manager
analysisQueue = octoprint.filemanager.analysis.AnalysisQueue()
slicingManager = octoprint.slicing.SlicingManager(
self._settings.getBaseFolder("slicingProfiles"), printerProfileManager
)
storage_managers = dict()
storage_managers[octoprint.filemanager.FileDestinations.LOCAL] = (
octoprint.filemanager.storage.LocalFileStorage(
self._settings.getBaseFolder("uploads")
)
)
fileManager = octoprint.filemanager.FileManager(
analysisQueue,
slicingManager,
printerProfileManager,
initial_storage_managers=storage_managers,
)
appSessionManager = util.flask.AppSessionManager()
pluginLifecycleManager = LifecycleManager(pluginManager)
preemptiveCache = PreemptiveCache(
os.path.join(
self._settings.getBaseFolder("data"), "preemptive_cache_config.yaml"
)
)
connectivityChecker = self._connectivity_checker
def on_settings_update(*args, **kwargs):
# make sure our connectivity checker runs with the latest settings
connectivityEnabled = self._settings.getBoolean(
["server", "onlineCheck", "enabled"]
)
connectivityInterval = self._settings.getInt(
["server", "onlineCheck", "interval"]
)
connectivityHost = self._settings.get(["server", "onlineCheck", "host"])
connectivityPort = self._settings.getInt(["server", "onlineCheck", "port"])
if (
connectivityChecker.enabled != connectivityEnabled
or connectivityChecker.interval != connectivityInterval
or connectivityChecker.host != connectivityHost
or connectivityChecker.port != connectivityPort
):
connectivityChecker.enabled = connectivityEnabled
connectivityChecker.interval = connectivityInterval
connectivityChecker.host = connectivityHost
connectivityChecker.port = connectivityPort
connectivityChecker.check_immediately()
eventManager.subscribe(events.Events.SETTINGS_UPDATED, on_settings_update)
# setup access control
userManagerName = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(userManagerName)
userManager = clazz()
except:
self._logger.exception(
"Could not instantiate user manager {}, falling back to FilebasedUserManager!".format(
userManagerName
)
)
userManager = octoprint.users.FilebasedUserManager()
finally:
userManager.enabled = self._settings.getBoolean(["accessControl", "enabled"])
components = dict(
plugin_manager=pluginManager,
printer_profile_manager=printerProfileManager,
event_bus=eventManager,
analysis_queue=analysisQueue,
slicing_manager=slicingManager,
file_manager=fileManager,
app_session_manager=appSessionManager,
plugin_lifecycle_manager=pluginLifecycleManager,
preemptive_cache=preemptiveCache,
connectivity_checker=connectivityChecker,
environment_detector=self._environment_detector,
)
# create user manager instance
user_manager_factories = pluginManager.get_hooks("octoprint.users.factory")
for name, factory in user_manager_factories.items():
try:
userManager = factory(components, self._settings)
if userManager is not None:
self._logger.debug(
"Created user manager instance from factory {}".format(name)
)
break
except:
self._logger.exception(
"Error while creating user manager instance from factory {}".format(
name
)
)
else:
name = self._settings.get(["accessControl", "userManager"])
try:
clazz = octoprint.util.get_class(name)
userManager = clazz()
except:
self._logger.exception(
"Could not instantiate user manager {}, falling back to FilebasedUserManager!".format(
name
)
)
userManager = octoprint.users.FilebasedUserManager()
finally:
userManager.enabled = self._settings.getBoolean(
["accessControl", "enabled"]
)
components.update(dict(user_manager=userManager))
# create printer instance
printer_factories = pluginManager.get_hooks("octoprint.printer.factory")
for name, factory in printer_factories.items():
try:
printer = factory(components)
if printer is not None:
self._logger.debug(
"Created printer instance from factory {}".format(name)
)
break
except:
self._logger.exception(
"Error while creating printer instance from factory {}".format(name)
)
else:
printer = Printer(fileManager, analysisQueue, printerProfileManager)
components.update(dict(printer=printer))
def octoprint_plugin_inject_factory(name, implementation):
"""Factory for injections for all OctoPrintPlugins"""
if not isinstance(implementation, octoprint.plugin.OctoPrintPlugin):
return None
props = dict()
props.update(components)
props.update(
dict(data_folder=os.path.join(self._settings.getBaseFolder("data"), name))
)
return props
def settings_plugin_inject_factory(name, implementation):
"""Factory for additional injections/initializations depending on plugin type"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
default_settings_overlay = dict(plugins=dict())
default_settings_overlay["plugins"][name] = (
implementation.get_settings_defaults()
)
self._settings.add_overlay(default_settings_overlay, at_end=True)
plugin_settings = octoprint.plugin.plugin_settings_for_settings_plugin(
name, implementation
)
if plugin_settings is None:
return
return dict(settings=plugin_settings)
def settings_plugin_config_migration_and_cleanup(identifier, implementation):
"""Take care of migrating and cleaning up any old settings"""
if not isinstance(implementation, octoprint.plugin.SettingsPlugin):
return
settings_version = implementation.get_settings_version()
settings_migrator = implementation.on_settings_migrate
if settings_version is not None and settings_migrator is not None:
stored_version = implementation._settings.get_int(
[octoprint.plugin.SettingsPlugin.config_version_key]
)
if stored_version is None or stored_version < settings_version:
settings_migrator(settings_version, stored_version)
implementation._settings.set_int(
[octoprint.plugin.SettingsPlugin.config_version_key],
settings_version,
force=True,
)
implementation.on_settings_cleanup()
implementation._settings.save()
implementation.on_settings_initialized()
pluginManager.implementation_inject_factories = [
octoprint_plugin_inject_factory,
settings_plugin_inject_factory,
]
pluginManager.initialize_implementations()
settingsPlugins = pluginManager.get_implementations(octoprint.plugin.SettingsPlugin)
for implementation in settingsPlugins:
try:
settings_plugin_config_migration_and_cleanup(
implementation._identifier, implementation
)
except:
self._logger.exception(
"Error while trying to migrate settings for plugin {}, ignoring it".format(
implementation._identifier
)
)
pluginManager.implementation_post_inits = [
settings_plugin_config_migration_and_cleanup
]
pluginManager.log_all_plugins()
# log environment data now
self._environment_detector.log_detected_environment()
# initialize file manager and register it for changes in the registered plugins
fileManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: fileManager.reload_plugins()
)
# initialize slicing manager and register it for changes in the registered plugins
slicingManager.initialize()
pluginLifecycleManager.add_callback(
["enabled", "disabled"], lambda name, plugin: slicingManager.reload_slicers()
)
# setup jinja2
self._setup_jinja2()
# make sure plugin lifecycle events relevant for jinja2 are taken care of
def template_enabled(name, plugin):
if plugin.implementation is None or not isinstance(
plugin.implementation, octoprint.plugin.TemplatePlugin
):
return
self._register_additional_template_plugin(plugin.implementation)
def template_disabled(name, plugin):
if plugin.implementation is None or not isinstance(
plugin.implementation, octoprint.plugin.TemplatePlugin
):
return
self._unregister_additional_template_plugin(plugin.implementation)
pluginLifecycleManager.add_callback("enabled", template_enabled)
pluginLifecycleManager.add_callback("disabled", template_disabled)
# setup assets
self._setup_assets()
# configure timelapse
octoprint.timelapse.configure_timelapse()
# setup command triggers
events.CommandTrigger(printer)
if self._debug:
events.DebugEventListener()
loginManager = LoginManager()
loginManager.session_protection = "strong"
loginManager.user_callback = load_user
if not userManager.enabled:
loginManager.anonymous_user = users.DummyUser
principals.identity_loaders.appendleft(users.dummy_identity_loader)
loginManager.init_app(app, add_context_processor=False)
# register API blueprint
self._setup_blueprints()
## Tornado initialization starts here
if self._host is None:
self._host = self._settings.get(["server", "host"])
if self._port is None:
self._port = self._settings.getInt(["server", "port"])
ioloop = IOLoop()
ioloop.install()
self._router = SockJSRouter(
self._create_socket_connection,
"/sockjs",
session_kls=util.sockjs.ThreadSafeSession,
)
upload_suffixes = dict(
name=self._settings.get(["server", "uploads", "nameSuffix"]),
path=self._settings.get(["server", "uploads", "pathSuffix"]),
)
def mime_type_guesser(path):
from octoprint.filemanager import get_mime_type
return get_mime_type(path)
def download_name_generator(path):
metadata = fileManager.get_metadata("local", path)
if metadata and "display" in metadata:
return metadata["display"]
download_handler_kwargs = dict(as_attachment=True, allow_client_caching=False)
additional_mime_types = dict(mime_type_guesser=mime_type_guesser)
admin_validator = dict(
access_validation=util.tornado.access_validation_factory(
app, loginManager, util.flask.admin_validator
)
)
user_validator = dict(
access_validation=util.tornado.access_validation_factory(
app, loginManager, util.flask.user_validator
)
)
no_hidden_files_validator = dict(
path_validation=util.tornado.path_validation_factory(
lambda path: not octoprint.util.is_hidden_path(path), status_code=404
)
)
def joined_dict(*dicts):
if not len(dicts):
return dict()
joined = dict()
for d in dicts:
joined.update(d)
return joined
util.tornado.RequestlessExceptionLoggingMixin.LOG_REQUEST = debug
server_routes = self._router.urls + [
# various downloads
# .mpg and .mp4 timelapses:
(
r"/downloads/timelapse/([^/]*\.mp[g4])",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("timelapse")),
download_handler_kwargs,
no_hidden_files_validator,
),
),
(
r"/downloads/files/local/(.*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(
path=self._settings.getBaseFolder("uploads"),
as_attachment=True,
name_generator=download_name_generator,
),
download_handler_kwargs,
no_hidden_files_validator,
additional_mime_types,
),
),
(
r"/downloads/logs/([^/]*)",
util.tornado.LargeResponseHandler,
joined_dict(
dict(path=self._settings.getBaseFolder("logs")),
download_handler_kwargs,
admin_validator,
),
),
# camera snapshot
(
r"/downloads/camera/current",
util.tornado.UrlProxyHandler,
joined_dict(
dict(
url=self._settings.get(["webcam", "snapshot"]), as_attachment=True
),
user_validator,
),
),
# generated webassets
(
r"/static/webassets/(.*)",
util.tornado.LargeResponseHandler,
dict(
path=os.path.join(
self._settings.getBaseFolder("generated"), "webassets"
)
),
),
# online indicators - text file with "online" as content and a transparent gif
(r"/online.txt", util.tornado.StaticDataHandler, dict(data="online\n")),
(
r"/online.gif",
util.tornado.StaticDataHandler,
dict(
data=bytes(
base64.b64decode(
"R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"
)
),
content_type="image/gif",
),
),
]
# fetch additional routes from plugins
for name, hook in pluginManager.get_hooks("octoprint.server.http.routes").items():
try:
result = hook(list(server_routes))
except:
self._logger.exception(
"There was an error while retrieving additional server routes from plugin hook {name}".format(
**locals()
)
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if not isinstance(entry[0], basestring):
continue
if not isinstance(entry[2], dict):
continue
route, handler, kwargs = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding additional route {route} handled by handler {handler} and with additional arguments {kwargs!r}".format(
**locals()
)
)
server_routes.append((route, handler, kwargs))
headers = {"X-Robots-Tag": "noindex, nofollow, noimageindex"}
removed_headers = ["Server"]
server_routes.append(
(
r".*",
util.tornado.UploadStorageFallbackHandler,
dict(
fallback=util.tornado.WsgiInputContainer(
app.wsgi_app, headers=headers, removed_headers=removed_headers
),
file_prefix="octoprint-file-upload-",
file_suffix=".tmp",
suffixes=upload_suffixes,
),
)
)
transforms = [
util.tornado.GlobalHeaderTransform.for_headers(
"OctoPrintGlobalHeaderTransform",
headers=headers,
removed_headers=removed_headers,
)
]
self._tornado_app = Application(handlers=server_routes, transforms=transforms)
max_body_sizes = [
(
"POST",
r"/api/files/([^/]*)",
self._settings.getInt(["server", "uploads", "maxSize"]),
),
("POST", r"/api/languages", 5 * 1024 * 1024),
]
# allow plugins to extend allowed maximum body sizes
for name, hook in pluginManager.get_hooks("octoprint.server.http.bodysize").items():
try:
result = hook(list(max_body_sizes))
except:
self._logger.exception(
"There was an error while retrieving additional upload sizes from plugin hook {name}".format(
**locals()
)
)
else:
if isinstance(result, (list, tuple)):
for entry in result:
if not isinstance(entry, tuple) or not len(entry) == 3:
continue
if (
not entry[0]
in util.tornado.UploadStorageFallbackHandler.BODY_METHODS
):
continue
if not isinstance(entry[2], int):
continue
method, route, size = entry
route = r"/plugin/{name}/{route}".format(
name=name,
route=route if not route.startswith("/") else route[1:],
)
self._logger.debug(
"Adding maximum body size of {size}B for {method} requests to {route})".format(
**locals()
)
)
max_body_sizes.append((method, route, size))
self._stop_intermediary_server()
# initialize and bind the server
self._server = util.tornado.CustomHTTPServer(
self._tornado_app,
max_body_sizes=max_body_sizes,
default_max_body_size=self._settings.getInt(["server", "maxSize"]),
)
self._server.listen(self._port, address=self._host)
### From now on it's ok to launch subprocesses again
eventManager.fire(events.Events.STARTUP)
# analysis backlog
fileManager.process_backlog()
# auto connect
if self._settings.getBoolean(["serial", "autoconnect"]):
try:
(port, baudrate) = (
self._settings.get(["serial", "port"]),
self._settings.getInt(["serial", "baudrate"]),
)
printer_profile = printerProfileManager.get_default()
connectionOptions = printer.__class__.get_connection_options()
if port in connectionOptions["ports"]:
printer.connect(
port=port,
baudrate=baudrate,
profile=printer_profile["id"]
if "id" in printer_profile
else "_default",
)
except:
self._logger.exception(
"Something went wrong while attempting to automatically connect to the printer"
)
# start up watchdogs
if self._settings.getBoolean(["feature", "pollWatched"]):
# use less performant polling observer if explicitely configured
observer = PollingObserver()
else:
# use os default
observer = Observer()
observer.schedule(
util.watchdog.GcodeWatchdogHandler(fileManager, printer),
self._settings.getBaseFolder("watched"),
)
observer.start()
# run our startup plugins
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_startup",
args=(self._host, self._port),
sorting_context="StartupPlugin.on_startup",
)
def call_on_startup(name, plugin):
implementation = plugin.get_implementation(octoprint.plugin.StartupPlugin)
if implementation is None:
return
implementation.on_startup(self._host, self._port)
pluginLifecycleManager.add_callback("enabled", call_on_startup)
# prepare our after startup function
def on_after_startup():
self._logger.info("Listening on http://%s:%d" % (self._host, self._port))
if safe_mode and self._settings.getBoolean(["server", "startOnceInSafeMode"]):
self._logger.info(
"Server started successfully in safe mode as requested from config, removing flag"
)
self._settings.setBoolean(["server", "startOnceInSafeMode"], False)
self._settings.save()
# now this is somewhat ugly, but the issue is the following: startup plugins might want to do things for
# which they need the server to be already alive (e.g. for being able to resolve urls, such as favicons
# or service xmls or the like). While they are working though the ioloop would block. Therefore we'll
# create a single use thread in which to perform our after-startup-tasks, start that and hand back
# control to the ioloop
def work():
octoprint.plugin.call_plugin(
octoprint.plugin.StartupPlugin,
"on_after_startup",
sorting_context="StartupPlugin.on_after_startup",
)
def call_on_after_startup(name, plugin):
implementation = plugin.get_implementation(
octoprint.plugin.StartupPlugin
)
if implementation is None:
return
implementation.on_after_startup()
pluginLifecycleManager.add_callback("enabled", call_on_after_startup)
# when we are through with that we also run our preemptive cache
if settings().getBoolean(["devel", "cache", "preemptive"]):
self._execute_preemptive_flask_caching(preemptiveCache)
import threading
threading.Thread(target=work).start()
ioloop.add_callback(on_after_startup)
# prepare our shutdown function
def on_shutdown():
# will be called on clean system exit and shutdown the watchdog observer and call the on_shutdown methods
# on all registered ShutdownPlugins
self._logger.info("Shutting down...")
observer.stop()
observer.join()
eventManager.fire(events.Events.SHUTDOWN)
octoprint.plugin.call_plugin(
octoprint.plugin.ShutdownPlugin,
"on_shutdown",
sorting_context="ShutdownPlugin.on_shutdown",
)
# wait for shutdown event to be processed, but maximally for 15s
event_timeout = 15.0
if eventManager.join(timeout=event_timeout):
self._logger.warn(
"Event loop was still busy processing after {}s, shutting down anyhow".format(
event_timeout
)
)
if self._octoprint_daemon is not None:
self._logger.info("Cleaning up daemon pidfile")
self._octoprint_daemon.terminated()
self._logger.info("Goodbye!")
atexit.register(on_shutdown)
def sigterm_handler(*args, **kwargs):
# will stop tornado on SIGTERM, making the program exit cleanly
def shutdown_tornado():
self._logger.debug("Shutting down tornado's IOLoop...")
ioloop.stop()
self._logger.debug("SIGTERM received...")
ioloop.add_callback_from_signal(shutdown_tornado)
signal.signal(signal.SIGTERM, sigterm_handler)
try:
# this is the main loop - as long as tornado is running, OctoPrint is running
ioloop.start()
self._logger.debug("Tornado's IOLoop stopped")
except (KeyboardInterrupt, SystemExit):
pass
except:
self._logger.fatal(
"Now that is embarrassing... Something really really went wrong here. Please report this including the stacktrace below in OctoPrint's bugtracker. Thanks!"
)
self._logger.exception("Stacktrace follows:")
|
https://github.com/OctoPrint/OctoPrint/issues/2311
|
2017-12-21 10:05:21,925 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2017-12-21 10:05:21,926 - octoprint.server - INFO - OctoPrint 1.3.6
2017-12-21 10:05:21,927 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2017-12-21 10:05:21,936 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2017-12-21 10:05:21,936 - octoprint.server - INFO - ------------------------------------------------------------------------------
2017-12-21 10:05:21,920 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2017-12-21 10:05:21,943 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2017-12-21 10:05:21,963 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2017-12-21 10:05:22,140 - octoprint.server - INFO - Shutting down intermediary server...
2017-12-21 10:05:22,333 - octoprint.server - INFO - Intermediary server shut down
2017-12-21 10:05:22,335 - octoprint.events - INFO - Processing startup event, this is our first event
2017-12-21 10:05:22,336 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2017-12-21 10:05:22,337 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2017-12-21 10:05:22,374 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2017-12-21 10:05:22,390 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi-tiacxy for _http._tcp
2017-12-21 10:05:22,401 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi-tiacxy for _octoprint._tcp
2017-12-21 10:05:22,404 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi-tiacxy for SSDP
2017-12-21 10:05:22,405 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2017-12-21 10:05:22,495 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.235/'}
2017-12-21 10:05:24,660 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 2.2s
2017-12-21 10:05:24,686 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2017-12-21 10:05:27,415 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 2.5s
2017-12-21 10:05:27,760 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2017-12-21 10:05:28,008 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.47s
2017-12-21 10:05:29,723 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2017-12-21 10:05:30,238 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 2.0s
2017-12-21 10:05:31,360 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.93s
2017-12-21 10:05:32,874 - octoprint.server.preemptive_cache - INFO - ... done in 10.38s
2017-12-21 10:05:35,735 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes
2017-12-21 10:05:35,811 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2017-12-21 10:10:26,253 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.181
2017-12-21 10:10:28,242 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.181
2017-12-21 10:11:15,414 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2017-12-21 10:11:16,326 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2017-12-21 10:11:18,892 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2017-12-21 10:11:26,815 - octoprint.server.api.system - INFO - Performing command for core:restart: sudo service octoprint restart
2017-12-21 10:11:26,963 - octoprint.server - INFO - Shutting down...
2017-12-21 10:11:27,331 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2017-12-21 10:11:27,334 - octoprint.events - INFO - Event loop shut down
2017-12-21 10:11:27,344 - octoprint.server - INFO - Goodbye!
2017-12-21 10:11:30,003 - octoprint.startup - INFO - ******************************************************************************
2017-12-21 10:11:30,004 - octoprint.startup - INFO - Starting OctoPrint 1.3.6
2017-12-21 10:11:30,004 - octoprint.startup - INFO - ******************************************************************************
2017-12-21 10:11:30,611 - octoprint.startup - INFO - Blacklist processing done
2017-12-21 10:11:30,687 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2017-12-21 10:11:32,089 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 8 mixin implementations, 4 hook handlers
2017-12-21 10:11:32,232 - octoprint.server - INFO - Intermediary server started
2017-12-21 10:11:32,233 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2017-12-21 10:11:32,506 - octoprint.plugin.core - INFO - Found 8 plugin(s) providing 8 mixin implementations, 4 hook handlers
2017-12-21 10:11:32,538 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2017-12-21 10:11:33,039 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2017-12-21 10:11:33,083 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2017-12-21 10:11:35,437 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2017-12-21 10:11:37,756 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2017-12-21 10:11:37,765 - octoprint.plugin.core - INFO - Initialized 8 plugin implementation(s)
2017-12-21 10:11:37,771 - octoprint.plugin.core - INFO - 8 plugin(s) registered with the system:
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2017-12-21 10:11:39,350 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2017-12-21 10:11:39,358 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2017-12-21 10:11:39,380 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2017-12-21 10:11:39,521 - octoprint.server - INFO - Shutting down intermediary server...
2017-12-21 10:11:40,022 - octoprint.server - INFO - Intermediary server shut down
2017-12-21 10:11:40,025 - octoprint.events - INFO - Processing startup event, this is our first event
2017-12-21 10:11:40,026 - octoprint.events - INFO - Adding 0 events to queue that were held back before startup event
2017-12-21 10:11:40,028 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2017-12-21 10:11:40,163 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2017-12-21 10:11:40,199 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi-tiacxy for _http._tcp
2017-12-21 10:11:40,210 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi-tiacxy for _octoprint._tcp
2017-12-21 10:11:40,213 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi-tiacxy for SSDP
2017-12-21 10:11:40,215 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2017-12-21 10:11:40,246 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2017-12-21 10:11:40,324 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2017-12-21 10:11:40,459 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://192.168.0.235/'}
2017-12-21 10:11:40,546 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.181
2017-12-21 10:11:56,161 - octoprint.server.preemptive_cache - INFO - ... done in 15.70s
2017-12-21 10:11:57,472 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.181
2017-12-21 10:11:59,746 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.181
2017-12-21 10:12:24,239 - octoprint.server.util.sockjs - INFO - Client connection closed: 192.168.0.181
2017-12-21 10:12:24,469 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.181
2017-12-21 10:16:27,788 - tornado.access - WARNING - 409 POST /api/printer/command (127.0.0.1) 10.68ms
2017-12-21 10:16:28,067 - octoprint.server.util.sockjs - INFO - New connection from client: 192.168.0.181
2017-12-21 10:16:28,430 - tornado.access - WARNING - 409 GET /api/printer (127.0.0.1) 18.57ms
2017-12-21 10:16:28,457 - tornado.access - WARNING - 404 POST /api/plugin/psucontrol (127.0.0.1) 22.49ms
2017-12-21 10:16:29,239 - tornado.access - WARNING - 409 GET /api/printer (127.0.0.1) 15.83ms
2017-12-21 10:16:33,272 - tornado.access - WARNING - 409 GET /api/printer (127.0.0.1) 8.54ms
2017-12-21 10:16:33,298 - tornado.access - WARNING - 409 GET /api/printer (127.0.0.1) 9.98ms
2017-12-21 10:16:33,725 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2017-12-21 10:16:34,644 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2017-12-21 10:16:37,207 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2017-12-21 10:16:37,277 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin 1.1.4 (Github)"
2017-12-21 10:16:37,281 - octoprint.util.comm - INFO - Firmware states that it supports temperature autoreporting
|
SerialException
|
def init_pluginsystem(
settings, safe_mode=False, ignore_blacklist=True, connectivity_checker=None
):
"""Initializes the plugin manager based on the settings."""
import os
logger = log.getLogger(__name__ + ".startup")
plugin_folders = [
(
os.path.abspath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "plugins")
),
True,
),
settings.getBaseFolder("plugins"),
]
plugin_entry_points = ["octoprint.plugin"]
plugin_disabled_list = settings.get(["plugins", "_disabled"])
plugin_blacklist = []
if not ignore_blacklist and settings.getBoolean(
["server", "pluginBlacklist", "enabled"]
):
plugin_blacklist = get_plugin_blacklist(
settings, connectivity_checker=connectivity_checker
)
plugin_validators = []
if safe_mode:
def validator(phase, plugin_info):
if phase in ("before_import", "before_load", "before_enable"):
setattr(plugin_info, "safe_mode_victim", not plugin_info.bundled)
if not plugin_info.bundled:
return False
return True
plugin_validators.append(validator)
from octoprint.plugin import plugin_manager
pm = plugin_manager(
init=True,
plugin_folders=plugin_folders,
plugin_entry_points=plugin_entry_points,
plugin_disabled_list=plugin_disabled_list,
plugin_blacklist=plugin_blacklist,
plugin_validators=plugin_validators,
)
settings_overlays = dict()
disabled_from_overlays = dict()
def handle_plugin_loaded(name, plugin):
if plugin.instance and hasattr(plugin.instance, "__plugin_settings_overlay__"):
plugin.needs_restart = True
# plugin has a settings overlay, inject it
overlay_definition = getattr(plugin.instance, "__plugin_settings_overlay__")
if isinstance(overlay_definition, (tuple, list)):
overlay_definition, order = overlay_definition
else:
order = None
overlay = settings.load_overlay(overlay_definition)
if "plugins" in overlay and "_disabled" in overlay["plugins"]:
disabled_plugins = overlay["plugins"]["_disabled"]
del overlay["plugins"]["_disabled"]
disabled_from_overlays[name] = (disabled_plugins, order)
settings_overlays[name] = overlay
logger.debug("Found settings overlay on plugin {}".format(name))
def handle_plugins_loaded(
startup=False, initialize_implementations=True, force_reload=None
):
if not startup:
return
sorted_disabled_from_overlays = sorted(
[
(key, value[0], value[1])
for key, value in disabled_from_overlays.items()
],
key=lambda x: (x[2] is None, x[2], x[0]),
)
disabled_list = pm.plugin_disabled_list
already_processed = []
for name, addons, _ in sorted_disabled_from_overlays:
if not name in disabled_list and not name.endswith("disabled"):
for addon in addons:
if addon in disabled_list:
continue
if addon in already_processed:
logger.info(
"Plugin {} wants to disable plugin {}, but that was already processed".format(
name, addon
)
)
if not addon in already_processed and not addon in disabled_list:
disabled_list.append(addon)
logger.info(
"Disabling plugin {} as defined by plugin {}".format(
addon, name
)
)
already_processed.append(name)
def handle_plugin_enabled(name, plugin):
if name in settings_overlays:
settings.add_overlay(settings_overlays[name])
logger.info("Added settings overlay from plugin {}".format(name))
pm.on_plugin_loaded = handle_plugin_loaded
pm.on_plugins_loaded = handle_plugins_loaded
pm.on_plugin_enabled = handle_plugin_enabled
pm.reload_plugins(startup=True, initialize_implementations=False)
return pm
|
def init_pluginsystem(
settings, safe_mode=False, ignore_blacklist=True, connectivity_checker=None
):
"""Initializes the plugin manager based on the settings."""
import os
logger = log.getLogger(__name__ + ".startup")
plugin_folders = [
(
os.path.abspath(
os.path.join(os.path.dirname(os.path.realpath(__file__)), "plugins")
),
True,
),
settings.getBaseFolder("plugins"),
]
plugin_entry_points = ["octoprint.plugin"]
plugin_disabled_list = settings.get(["plugins", "_disabled"])
plugin_blacklist = []
if not ignore_blacklist and settings.getBoolean(
["server", "pluginBlacklist", "enabled"]
):
plugin_blacklist = get_plugin_blacklist(
settings, connectivity_checker=connectivity_checker
)
plugin_validators = []
if safe_mode:
def validator(phase, plugin_info):
if phase == "after_load":
setattr(plugin_info, "safe_mode_victim", not plugin_info.bundled)
setattr(plugin_info, "safe_mode_enabled", False)
elif phase == "before_enable":
if not plugin_info.bundled:
setattr(plugin_info, "safe_mode_enabled", True)
return False
return True
plugin_validators.append(validator)
from octoprint.plugin import plugin_manager
pm = plugin_manager(
init=True,
plugin_folders=plugin_folders,
plugin_entry_points=plugin_entry_points,
plugin_disabled_list=plugin_disabled_list,
plugin_blacklist=plugin_blacklist,
plugin_validators=plugin_validators,
)
settings_overlays = dict()
disabled_from_overlays = dict()
def handle_plugin_loaded(name, plugin):
if plugin.instance and hasattr(plugin.instance, "__plugin_settings_overlay__"):
plugin.needs_restart = True
# plugin has a settings overlay, inject it
overlay_definition = getattr(plugin.instance, "__plugin_settings_overlay__")
if isinstance(overlay_definition, (tuple, list)):
overlay_definition, order = overlay_definition
else:
order = None
overlay = settings.load_overlay(overlay_definition)
if "plugins" in overlay and "_disabled" in overlay["plugins"]:
disabled_plugins = overlay["plugins"]["_disabled"]
del overlay["plugins"]["_disabled"]
disabled_from_overlays[name] = (disabled_plugins, order)
settings_overlays[name] = overlay
logger.debug("Found settings overlay on plugin {}".format(name))
def handle_plugins_loaded(
startup=False, initialize_implementations=True, force_reload=None
):
if not startup:
return
sorted_disabled_from_overlays = sorted(
[
(key, value[0], value[1])
for key, value in disabled_from_overlays.items()
],
key=lambda x: (x[2] is None, x[2], x[0]),
)
disabled_list = pm.plugin_disabled_list
already_processed = []
for name, addons, _ in sorted_disabled_from_overlays:
if not name in disabled_list and not name.endswith("disabled"):
for addon in addons:
if addon in disabled_list:
continue
if addon in already_processed:
logger.info(
"Plugin {} wants to disable plugin {}, but that was already processed".format(
name, addon
)
)
if not addon in already_processed and not addon in disabled_list:
disabled_list.append(addon)
logger.info(
"Disabling plugin {} as defined by plugin {}".format(
addon, name
)
)
already_processed.append(name)
def handle_plugin_enabled(name, plugin):
if name in settings_overlays:
settings.add_overlay(settings_overlays[name])
logger.info("Added settings overlay from plugin {}".format(name))
pm.on_plugin_loaded = handle_plugin_loaded
pm.on_plugins_loaded = handle_plugins_loaded
pm.on_plugin_enabled = handle_plugin_enabled
pm.reload_plugins(startup=True, initialize_implementations=False)
return pm
|
https://github.com/OctoPrint/OctoPrint/issues/2442
|
2018-02-21 11:19:44,501 - octoprint.server - INFO - --- Log roll over detected ---------------------------------------------------
2018-02-21 11:19:44,502 - octoprint.server - INFO - OctoPrint 1.3.6
2018-02-21 11:19:44,504 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint
| Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2018-02-21 11:19:44,524 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-02-21 11:19:44,525 - octoprint.server - INFO - ------------------------------------------------------------------------------
2018-02-21 11:19:44,496 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute
result = self.prepare()
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare
self._fallback(self.request, b"")
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__
response.extend(app_response)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next
data = self.file.read(self.buffer_size)
ValueError: I/O operation on closed file
2018-02-21 11:19:44,528 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 41.75ms
2018-02-21 11:19:44,824 - tornado.application - ERROR - Uncaught exception GET /robots.txt (127.0.0.1)
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/tornado-4.0.2-py2.7-linux-armv7l.egg/tornado/web.py", line 1309, in _execute
result = self.prepare()
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 232, in prepare
self._fallback(self.request, b"")
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/util/tornado.py", line 589, in __call__
response.extend(app_response)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Werkzeug-0.8.3-py2.7.egg/werkzeug/wsgi.py", line 569, in next
data = self.file.read(self.buffer_size)
ValueError: I/O operation on closed file
2018-02-21 11:19:44,825 - tornado.access - ERROR - 500 GET /robots.txt (127.0.0.1) 7.28ms
2018-02-21 11:19:45,362 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-21 11:19:45,544 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.45ms
2018-02-21 11:19:45,789 - tornado.access - WARNING - 401 POST /api/plugin/psucontrol (127.0.0.1) 176.64ms
2018-02-21 11:19:53,996 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 12.18ms
2018-02-21 11:20:01,868 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.36s
2018-02-21 11:20:02,499 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.44s
2018-02-21 11:20:02,913 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.3s
2018-02-21 11:20:03,272 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.29s
2018-02-21 11:20:03,715 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.29s
2018-02-21 11:20:05,441 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-02-21 11:20:07,493 - octoprint.plugins.psucontrol - INFO - Switching PSU On
2018-02-21 11:20:11,254 - octoprint.plugins.psucontrol - INFO - Switching PSU Off
2018-02-21 11:21:46,142 - octoprint.server.api.system - INFO - Performing command for core:reboot: sudo shutdown -r now
2018-02-21 11:21:46,376 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-21 11:21:46,443 - octoprint.server - INFO - Shutting down...
2018-02-21 11:21:46,740 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-02-21 11:21:48,000 - octoprint.events - INFO - Event loop shut down
2018-02-21 11:21:48,017 - octoprint.server - INFO - Goodbye!
2018-02-21 11:22:52,997 - octoprint.startup - INFO - ******************************************************************************
2018-02-21 11:22:53,013 - octoprint.startup - INFO - Starting OctoPrint 1.3.6
2018-02-21 11:22:53,014 - octoprint.startup - INFO - ******************************************************************************
2018-02-21 11:22:53,319 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-02-21 11:22:53,741 - octoprint.startup - INFO - Blacklist processing done
2018-02-21 11:22:54,906 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-21 11:23:03,290 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers
2018-02-21 11:23:03,504 - octoprint.server - INFO - Intermediary server started
2018-02-21 11:23:03,505 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-21 11:23:03,817 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers
2018-02-21 11:23:03,853 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-02-21 11:23:04,477 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-02-21 11:23:04,626 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-02-21 11:23:08,071 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-21 11:23:10,763 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2018-02-21 11:23:10,766 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s)
2018-02-21 11:23:10,775 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint
| Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2018-02-21 11:23:13,253 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-02-21 11:23:13,263 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-02-21 11:23:13,288 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-02-21 11:23:13,502 - octoprint.server - INFO - Shutting down intermediary server...
2018-02-21 11:23:13,602 - octoprint.server - INFO - Intermediary server shut down
2018-02-21 11:23:13,605 - octoprint.events - INFO - Processing startup event, this is our first event
2018-02-21 11:23:13,606 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-02-21 11:23:13,611 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-02-21 11:23:13,755 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-02-21 11:23:14,289 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-02-21 11:23:14,375 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-21 11:23:14,391 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-02-21 11:23:14,406 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-02-21 11:23:14,409 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-02-21 11:23:14,413 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-02-21 11:23:14,567 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-21 11:23:14,937 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-02-21 11:23:15,217 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-02-21 11:23:16,099 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'}
2018-02-21 11:23:16,200 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-02-21 11:23:16,332 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-21 11:23:16,506 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6"
2018-02-21 11:24:00,897 - octoprint.server.preemptive_cache - INFO - ... done in 44.80s
2018-02-21 11:24:00,898 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'}
2018-02-21 11:24:00,951 - octoprint.server.preemptive_cache - INFO - ... done in 0.05s
2018-02-21 11:24:08,176 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1
2018-02-21 11:25:25,603 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-21 11:27:02,728 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-21 11:27:03,626 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-21 11:50:49,800 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode
2018-02-21 11:50:49,810 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode
2018-02-21 11:50:58,842 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-21 11:53:58,892 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-21 17:01:25,391 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26
2018-02-21 17:01:25,838 - octoprint.timelapse - INFO - Deleted old unrendered timelapse PTFE_tube_cutter_4_mm_20180208125043
2018-02-21 17:01:26,171 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 18.09ms
2018-02-21 17:02:02,575 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:02:02,606 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 42.35ms
2018-02-21 17:02:12,967 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:02:12,972 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 14.08ms
2018-02-21 17:02:18,833 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:02:18,841 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 16.84ms
2018-02-21 17:02:36,560 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:02:36,563 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.79ms
2018-02-21 17:02:40,381 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26
2018-02-21 17:02:41,785 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26
2018-02-21 17:02:41,989 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.19ms
2018-02-21 17:02:52,043 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:02:52,047 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 13.56ms
2018-02-21 17:02:55,337 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:02:55,341 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 11.58ms
2018-02-21 17:03:01,399 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26
2018-02-21 17:03:15,041 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26
2018-02-21 17:03:15,594 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 15.29ms
2018-02-21 17:03:28,555 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:03:28,564 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 18.39ms
2018-02-21 17:03:42,132 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.20.30.26
2018-02-21 17:03:50,670 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26
2018-02-21 17:03:51,412 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 16.56ms
2018-02-21 17:04:00,105 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 11.30ms
2018-02-21 17:04:29,137 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-21 17:04:29,140 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 10.93ms
2018-02-21 17:05:05,521 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 26.56ms
2018-02-21 17:05:27,892 - tornado.access - WARNING - 401 POST /api/job (127.0.0.1) 17.71ms
2018-02-21 17:05:31,155 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.47ms
2018-02-21 17:05:31,166 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.19ms
2018-02-21 17:05:31,176 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 7.67ms
2018-02-21 17:05:31,283 - tornado.access - WARNING - 404 GET /api/printerprofiles/ (127.0.0.1) 8.86ms
2018-02-21 17:05:38,602 - octoprint.server.util.sockjs - INFO - New connection from client: 10.20.30.26
2018-02-21 17:05:50,359 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode
2018-02-21 17:05:50,361 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.0 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode
2018-02-21 16:17:26,710 - octoprint.startup - INFO - ******************************************************************************
2018-02-21 16:17:26,724 - octoprint.startup - INFO - Starting OctoPrint 1.3.6
2018-02-21 16:17:26,724 - octoprint.startup - INFO - ******************************************************************************
2018-02-21 16:17:26,995 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-02-21 16:17:27,523 - octoprint.startup - INFO - Blacklist processing done
2018-02-22 12:19:23,347 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-22 12:19:31,837 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers
2018-02-22 12:19:32,053 - octoprint.server - INFO - Intermediary server started
2018-02-22 12:19:32,053 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-22 12:19:32,358 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers
2018-02-22 12:19:32,394 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-02-22 12:19:33,044 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-02-22 12:19:33,183 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-02-22 12:19:47,148 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:19:49,676 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2018-02-22 12:19:49,680 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s)
2018-02-22 12:19:49,688 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint
| Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2018-02-22 12:19:52,789 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-02-22 12:19:52,934 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-02-22 12:19:52,986 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-02-22 12:19:53,220 - octoprint.server - INFO - Shutting down intermediary server...
2018-02-22 12:19:53,682 - octoprint.server - INFO - Intermediary server shut down
2018-02-22 12:19:53,684 - octoprint.events - INFO - Processing startup event, this is our first event
2018-02-22 12:19:53,684 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-02-22 12:19:53,687 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-02-22 12:19:53,890 - octoprint.filemanager.analysis - INFO - Starting analysis of local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode
2018-02-22 12:19:53,897 - octoprint.filemanager.analysis - INFO - Invoking analysis command: /home/pi/oprint/bin/python -m octoprint analysis gcode --speed-x=6000 --speed-y=6000 --max-t=10 --throttle=0.01 --throttle-lines=100 /home/pi/.octoprint/uploads/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode
2018-02-22 12:19:53,903 - octoprint.filemanager - INFO - Added 1 items from storage type "local" to analysis queue
2018-02-22 12:19:54,236 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from https://plugins.octoprint.org/plugins.json
2018-02-22 12:19:54,303 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:19:54,367 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-02-22 12:19:54,399 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-02-22 12:19:54,413 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-02-22 12:19:54,452 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-02-22 12:19:54,512 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:19:54,596 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.74s
2018-02-22 12:19:54,823 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-02-22 12:19:55,410 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'}
2018-02-22 12:19:55,438 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-02-22 12:19:55,483 - octoprint.plugins.announcements - INFO - Loaded channel _important from https://octoprint.org/feeds/important.xml in 0.77s
2018-02-22 12:19:55,728 - octoprint.plugins.pluginmanager - INFO - Loaded plugin notices data from https://plugins.octoprint.org/notices.json
2018-02-22 12:19:56,184 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.62s
2018-02-22 12:19:56,284 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:19:56,513 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6"
2018-02-22 12:19:56,721 - octoprint.plugins.announcements - INFO - Loaded channel _releases from https://octoprint.org/feeds/releases.xml in 0.55s
2018-02-22 12:19:57,389 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.73s
2018-02-22 12:19:57,720 - octoprint.plugins.announcements - INFO - Loaded channel _blog from https://octoprint.org/feeds/octoblog.xml in 0.58s
2018-02-22 12:19:58,065 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.43s
2018-02-22 12:19:58,498 - octoprint.plugins.announcements - INFO - Loaded channel _plugins from https://plugins.octoprint.org/feed.xml in 0.46s
2018-02-22 12:19:58,982 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.61s
2018-02-22 12:19:59,372 - octoprint.plugins.announcements - INFO - Loaded channel _octopi from https://octoprint.org/feeds/octopi.xml in 0.5s
2018-02-22 12:20:00,880 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:20:01,143 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:20:01,461 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:20:01,476 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:20:08,946 - octoprint.util.pip - INFO - pip installs to /home/pi/oprint/lib/python2.7/site-packages/, --user flag needed => no, virtual env => yes
2018-02-22 12:20:09,361 - octoprint.plugins.softwareupdate - INFO - Saved version cache to disk
2018-02-22 12:20:36,052 - octoprint.server.preemptive_cache - INFO - ... done in 40.64s
2018-02-22 12:20:36,053 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'}
2018-02-22 12:20:45,872 - octoprint.server.preemptive_cache - INFO - ... done in 9.82s
2018-02-22 12:20:50,462 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:20:51,376 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 736.15ms
2018-02-22 12:20:55,656 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1
2018-02-22 12:21:19,859 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 13.40ms
2018-02-22 12:21:20,024 - octoprint.filemanager.analysis - INFO - Analysis of entry local:kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse.gcode finished, needed 86.13s
2018-02-22 12:21:29,058 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:21:29,093 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 590.04ms
2018-02-22 12:21:36,037 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.46ms
2018-02-22 12:21:40,870 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:21:40,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 20.80ms
2018-02-22 12:21:42,503 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:21:44,479 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:21:44,897 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 238.37ms
2018-02-22 12:21:51,598 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 17.43ms
2018-02-22 12:21:53,483 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 8.87ms
2018-02-22 12:22:00,848 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:22:00,854 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 24.12ms
2018-02-22 12:22:25,467 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:22:27,781 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:22:27,936 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.63ms
2018-02-22 12:22:39,526 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:22:39,532 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 21.74ms
2018-02-22 12:22:41,778 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:23:13,467 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:23:14,013 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 362.23ms
2018-02-22 12:23:25,098 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:23:25,105 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 23.52ms
2018-02-22 12:24:21,378 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:24:21,578 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 12.74ms
2018-02-22 12:24:30,840 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:24:30,847 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.00ms
2018-02-22 12:25:10,217 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:25:10,224 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 25.33ms
2018-02-22 12:25:44,625 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:25:50,427 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:25:50,825 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 239.85ms
2018-02-22 12:25:55,668 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:26:12,760 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:26:13,299 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 353.82ms
2018-02-22 12:26:26,659 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:26:26,663 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.15ms
2018-02-22 12:27:11,527 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 10.55ms
2018-02-22 12:27:11,539 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:27:13,298 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:27:13,450 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 13.50ms
2018-02-22 12:27:48,030 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 21.76ms
2018-02-22 12:28:11,148 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 19.53ms
2018-02-22 12:28:17,768 - tornado.access - WARNING - 404 GET /favicon.ico (127.0.0.1) 4.99ms
2018-02-22 12:28:17,773 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:28:19,199 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:28:19,678 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 240.09ms
2018-02-22 12:28:31,946 - tornado.access - WARNING - 401 POST /api/login (127.0.0.1) 20.36ms
2018-02-22 12:28:37,489 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:28:37,495 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 22.66ms
2018-02-22 12:28:40,008 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:28:40,985 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:28:41,387 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 234.17ms
2018-02-22 12:30:15,832 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:30:15,842 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:30:15,902 - octoprint.server - INFO - Shutting down...
2018-02-22 12:30:16,353 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-02-22 12:30:16,356 - octoprint.events - INFO - Event loop shut down
2018-02-22 12:30:16,365 - octoprint.server - INFO - Goodbye!
2018-02-22 12:31:23,841 - octoprint.startup - INFO - ******************************************************************************
2018-02-22 12:31:23,876 - octoprint.startup - INFO - Starting OctoPrint 1.3.6
2018-02-22 12:31:23,876 - octoprint.startup - INFO - ******************************************************************************
2018-02-22 12:31:24,264 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-02-22 12:31:24,658 - octoprint.startup - INFO - Blacklist processing done
2018-02-22 12:31:25,549 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-22 12:31:34,338 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers
2018-02-22 12:31:34,559 - octoprint.server - INFO - Intermediary server started
2018-02-22 12:31:34,560 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-22 12:31:34,871 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 10 mixin implementations, 9 hook handlers
2018-02-22 12:31:34,908 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-02-22 12:31:35,573 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-02-22 12:31:35,716 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-02-22 12:31:39,542 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:31:42,079 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2018-02-22 12:31:42,083 - octoprint.plugin.core - INFO - Initialized 10 plugin implementation(s)
2018-02-22 12:31:42,091 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint
| Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2018-02-22 12:31:44,355 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-02-22 12:31:44,375 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-02-22 12:31:44,426 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-02-22 12:31:44,666 - octoprint.server - INFO - Shutting down intermediary server...
2018-02-22 12:31:45,140 - octoprint.server - INFO - Intermediary server shut down
2018-02-22 12:31:45,142 - octoprint.events - INFO - Processing startup event, this is our first event
2018-02-22 12:31:45,143 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-02-22 12:31:45,165 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-02-22 12:31:45,222 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-02-22 12:31:45,512 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-02-22 12:31:45,519 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-02-22 12:31:45,886 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:31:45,892 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-02-22 12:31:45,904 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-02-22 12:31:45,907 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-02-22 12:31:45,915 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-02-22 12:31:45,998 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-02-22 12:31:46,168 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:31:46,221 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'}
2018-02-22 12:31:46,284 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-02-22 12:31:47,850 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:31:48,285 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6"
2018-02-22 12:32:25,981 - octoprint.server.preemptive_cache - INFO - ... done in 39.76s
2018-02-22 12:32:25,984 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'}
2018-02-22 12:32:26,050 - octoprint.server.preemptive_cache - INFO - ... done in 0.07s
2018-02-22 12:32:27,947 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 12:32:28,388 - tornado.access - WARNING - 401 POST /api/plugin/automaticshutdown (127.0.0.1) 312.61ms
2018-02-22 12:32:32,059 - octoprint.server.util.sockjs - INFO - New connection from client: 127.0.0.1
2018-02-22 12:35:17,835 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:35:17,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 61.49ms
2018-02-22 12:35:33,872 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 12:35:33,876 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 12.38ms
2018-02-22 12:48:21,948 - octoprint.server.util.sockjs - INFO - Client connection closed: 10.10.3.180
2018-02-22 12:48:22,003 - octoprint.server - INFO - Shutting down...
2018-02-22 12:48:22,510 - octoprint.events - INFO - Processing shutdown event, this will be our last event
2018-02-22 12:48:22,513 - octoprint.events - INFO - Event loop shut down
2018-02-22 12:48:22,522 - octoprint.server - INFO - Goodbye!
2018-02-22 12:49:25,751 - octoprint.startup - INFO - ******************************************************************************
2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting OctoPrint 1.3.6
2018-02-22 12:49:25,774 - octoprint.startup - INFO - Starting in SAFE MODE. Third party plugins will be disabled!
2018-02-22 12:49:25,775 - octoprint.startup - INFO - ******************************************************************************
2018-02-22 12:49:26,100 - octoprint.util.connectivity_checker - INFO - Connectivity changed from offline to online
2018-02-22 12:49:26,534 - octoprint.startup - INFO - Blacklist processing done
2018-02-22 12:49:27,608 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-22 12:49:40,267 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers
2018-02-22 12:49:40,512 - octoprint.server - INFO - Intermediary server started
2018-02-22 12:49:40,513 - octoprint.plugin.core - INFO - Loading plugins from /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins, /home/pi/.octoprint/plugins and installed plugin packages...
2018-02-22 12:49:40,845 - octoprint.plugin.core - INFO - Found 13 plugin(s) providing 7 mixin implementations, 4 hook handlers
2018-02-22 12:49:40,882 - octoprint.filemanager.storage - INFO - Initializing the file metadata for /home/pi/.octoprint/uploads...
2018-02-22 12:49:41,553 - octoprint.filemanager.storage - INFO - ... file metadata for /home/pi/.octoprint/uploads initialized successfully.
2018-02-22 12:49:41,697 - octoprint.plugins.softwareupdate - INFO - Loaded version cache from disk
2018-02-22 12:49:45,067 - octoprint.util.pip - INFO - Using "/home/pi/oprint/bin/python -m pip" as command to invoke pip
2018-02-22 12:49:47,651 - octoprint.util.pip - INFO - Version of pip is 9.0.1
2018-02-22 12:49:47,654 - octoprint.plugin.core - INFO - Initialized 7 plugin implementation(s)
2018-02-22 12:49:47,661 - octoprint.plugin.core - INFO - 13 plugin(s) registered with the system:
| !Action Commands (0.1) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_actioncommands
| Announcement Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/announcements
| !Astroprint (1.0.2) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint
| !Automatic Shutdown (0.1.4) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_automaticshutdown
| Core Wizard (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/corewizard
| !CuraEngine (<= 15.04) (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/cura
| Discovery (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/discovery
| OctoPi Support Plugin (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/octopi_support
| Plugin Manager (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/pluginmanager
| !PSU Control (0.1.7) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_psucontrol
| Software Update (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/softwareupdate
| !TouchUI (0.3.11) = /home/pi/oprint/local/lib/python2.7/site-packages/octoprint_touchui
| Virtual Printer (bundled) = /home/pi/oprint/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/plugins/virtual_printer
2018-02-22 12:49:50,168 - octoprint.environment - INFO - Detected environment is Python 2.7.9 under Linux (linux2). Details:
| hardware:
| cores: 4
| freq: 1200.0
| ram: 901689344
| os:
| id: linux
| platform: linux2
| plugins:
| octopi_support:
| model: 3B
| revision: a02082
| version: 0.14.0
| python:
| pip: 9.0.1
| version: 2.7.9
| virtualenv: /home/pi/oprint
2018-02-22 12:49:50,178 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/webassets...
2018-02-22 12:49:50,201 - octoprint.server - INFO - Reset webasset folder /home/pi/.octoprint/generated/.webassets-cache...
2018-02-22 12:49:50,456 - octoprint.server - INFO - Shutting down intermediary server...
2018-02-22 12:49:50,584 - octoprint.server - INFO - Intermediary server shut down
2018-02-22 12:49:50,586 - octoprint.events - INFO - Processing startup event, this is our first event
2018-02-22 12:49:50,587 - octoprint.events - INFO - Adding 1 events to queue that were held back before startup event
2018-02-22 12:49:50,591 - octoprint.filemanager - INFO - Adding backlog items from all storage types to analysis queue...
2018-02-22 12:49:50,767 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-02-22 12:49:50,775 - octoprint.filemanager - INFO - Added 0 items from storage type "local" to analysis queue
2018-02-22 12:49:50,899 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-02-22 12:49:51,327 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:49:51,341 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _http._tcp
2018-02-22 12:49:51,353 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for _octoprint._tcp
2018-02-22 12:49:51,357 - octoprint.plugins.discovery - INFO - Registered OctoPrint instance on octopi for SSDP
2018-02-22 12:49:51,364 - octoprint.server - INFO - Listening on http://127.0.0.1:5000
2018-02-22 12:49:51,366 - octoprint.server - INFO - Server started successfully in safe mode as requested from config, removing flag
2018-02-22 12:49:51,565 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:49:51,860 - octoprint.plugins.pluginmanager - INFO - Loaded plugin repository data from disk, was still valid
2018-02-22 12:49:52,126 - octoprint.plugins.pluginmanager - INFO - Loaded notice data from disk, was still valid
2018-02-22 12:49:52,214 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://10.10.1.26/'}
2018-02-22 12:49:52,619 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 23.57ms
2018-02-22 12:49:53,541 - octoprint.util.comm - INFO - M110 detected, setting current line number to 0
2018-02-22 12:49:53,634 - octoprint.util.comm - INFO - Printer reports firmware name "Marlin V1; Sprinter/grbl mashup for gen6"
2018-02-22 12:49:55,630 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 5.47ms
2018-02-22 12:49:59,166 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 28.02ms
2018-02-22 12:50:01,998 - octoprint.server.preemptive_cache - INFO - ... done in 9.78s
2018-02-22 12:50:01,999 - octoprint.server.preemptive_cache - INFO - Preemptively caching / (ui _default) for {'query_string': 'l10n=en', 'path': '/', 'base_url': 'http://localhost:5000/'}
2018-02-22 12:50:02,238 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 27.35ms
2018-02-22 12:50:05,264 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.07ms
2018-02-22 12:50:05,881 - octoprint.server.preemptive_cache - INFO - ... done in 3.88s
2018-02-22 12:50:08,282 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms
2018-02-22 12:50:11,306 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.65ms
2018-02-22 12:50:14,329 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms
2018-02-22 12:50:17,354 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.76ms
2018-02-22 12:50:20,377 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.48ms
2018-02-22 12:50:23,400 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.58ms
2018-02-22 12:50:28,880 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.18ms
2018-02-22 12:50:31,906 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.68ms
2018-02-22 12:50:34,932 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.31ms
2018-02-22 12:50:37,958 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.07ms
2018-02-22 12:50:40,988 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.32ms
2018-02-22 12:50:44,023 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 13.02ms
2018-02-22 12:50:47,046 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.29ms
2018-02-22 12:50:50,069 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.77ms
2018-02-22 12:50:53,094 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.59ms
2018-02-22 12:50:56,118 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.39ms
2018-02-22 12:50:59,142 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.82ms
2018-02-22 12:51:02,165 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.41ms
2018-02-22 12:51:05,191 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 11.13ms
2018-02-22 12:51:08,215 - tornado.access - WARNING - 404 GET /plugin/touchui/ping (127.0.0.1) 10.66ms
2018-02-22 13:00:38,525 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 7.30ms
2018-02-22 13:00:38,881 - tornado.access - WARNING - 404 GET /static/webassets/packed_plugins.js?238952f3 (127.0.0.1) 2.33ms
2018-02-22 13:00:39,098 - octoprint.server.util.sockjs - INFO - New connection from client: 10.10.3.180
2018-02-22 13:00:48,733 - octoprint - ERROR - Exception on /api/login [POST]
Traceback (most recent call last):
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1817, in wsgi_app
response = self.full_dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1477, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1381, in handle_user_exception
reraise(exc_type, exc_value, tb)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1475, in full_dispatch_request
rv = self.dispatch_request()
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask-0.10.1-py2.7.egg/flask/app.py", line 1461, in dispatch_request
return self.view_functions[rule.endpoint](**req.view_args)
File "/home/pi/oprint/local/lib/python2.7/site-packages/OctoPrint-1.3.6-py2.7.egg/octoprint/server/api/__init__.py", line 215, in login
login_user(user, remember=remember)
File "/home/pi/oprint/local/lib/python2.7/site-packages/Flask_Login-0.2.11-py2.7.egg/flask_login.py", line 687, in login_user
user_logged_in.send(current_app._get_current_object(), user=_get_user())
File "build/bdist.linux-armv7l/egg/blinker/base.py", line 267, in send
for receiver in self.receivers_for(sender)]
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 82, in logInHandler
self.onLogin()
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 100, in onLogin
self.send_event("userLogged", True)
File "/home/pi/oprint/local/lib/python2.7/site-packages/octoprint_astroprint/__init__.py", line 141, in send_event
self._plugin_manager.send_plugin_message(self._plugin_name, event)
AttributeError: 'AstroprintPlugin' object has no attribute '_plugin_manager'
2018-02-22 13:00:48,766 - tornado.access - ERROR - 500 POST /api/login (127.0.0.1) 49.80ms
2018-02-22 13:05:11,713 - tornado.access - WARNING - 401 DELETE /api/timelapse/Dispenser_MONI_smaller_v5_Body9_Dispenser_20180208143341.mpg (127.0.0.1) 21.27ms
2018-02-22 13:05:11,740 - tornado.access - WARNING - 401 DELETE /api/timelapse/kasse_Temp_Sensor_Kasse_med_nose_v10_Bund_kasse_20180221115058.mpg (127.0.0.1) 21.89ms
2018-02-22 13:05:11,763 - tornado.access - WARNING - 401 DELETE /api/timelapse/Lorte-shield_Food_weight_v17_Body1_Lorte-shield_20180207153549.mpg (127.0.0.1) 18.16ms
2018-02-22 13:05:11,776 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208102704.mpg (127.0.0.1) 10.11ms
2018-02-22 13:05:11,789 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208105437.mpg (127.0.0.1) 10.19ms
2018-02-22 13:05:11,805 - tornado.access - WARNING - 401 DELETE /api/timelapse/PTFE_tube_cutter_4_mm_20180208114144.mpg (127.0.0.1) 13.56ms
2018-02-22 13:05:11,820 - tornado.access - WARNING - 401 DELETE /api/timelapse/Shaker_tube_holder_v7_Shaker_tube_holder_v7_Bund_1_Body1_Bund_20180206124721.mpg (127.0.0.1) 11.40ms
2018-02-22 13:05:11,833 - tornado.access - WARNING - 401 DELETE /api/timelapse/Yderramme_20180207112551.mpg (127.0.0.1) 10.26ms
|
ValueError
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.